
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;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 40px;
}

.package {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    flex: 1 1 30%;
    box-sizing: border-box;
}

.thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.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: 800px; /* Begrenzung der maximalen Höhe, damit es proportional bleibt */
    border-radius: 10px;
}

.package h3 {
    font-size: 24px;
    color: #6c4f70;
    margin: 10px 0;
    text-align: left;
}

.package p {
    font-size: 18px;
    color: #757081;
    text-align: left;
}

.special {
    text-align: left;
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.details {
    text-align: left;
    margin-top: 40px;
}

.details h3 {
    font-size: 24px;
    color: #6c4f70;
    margin: 10px 0;
}

.details p {
    font-size: 18px;
    color: #757081;
    margin-bottom: 10px;
}

.konfigurator {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.konfigurator h3 {
    font-size: 24px;
    color: #6c4f70;
    margin-bottom: 10px;
}

.konfigurator p {
    font-size: 18px;
    color: #757081;
    margin-bottom: 10px;
}

.konfigurator-details {
    text-align: left;
    margin-top: 40px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .packages {
        flex-direction: column;
        align-items: center;
    }
    .thumbnail {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }
    .thumbnail-fullwidth {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
    }
    .package {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
