body {
    font-family: 'Lustria', serif;
    margin: 0;
    padding: 0;
    color: #757081;
    background-color: #f9f9f9;

}




.pricing {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #6c4f70;
}

.pricing p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #757081;
}

.studio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.studio img.thumbnail {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}

.studio-text {
    text-align: left;
    max-width: 800px;
}

.thumbnail-fullwidth {
    width: 100%; /* Füllt die Breite des Containers */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    object-fit: contain; /* Verhindert Zuschnitt und passt das Bild an */
    max-height: 400px; /* Begrenzung der maximalen Höhe, damit es proportional bleibt */
    border-radius: 10px;
}


.studio-text h3 {
    font-size: 24px;
    color: #6c4f70;
    margin-bottom: 10px;
}

.studio-text p {
    font-size: 18px;
    color: #757081;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .studio {
        flex-direction: column;
        align-items: center;
    }

    .studio img.thumbnail {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .thumbnail-fullwidth {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }
    .studio-text {
        text-align: center;
    }
}
