* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Saubere Standard-Schriftart */
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typografie */
h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 1rem;
    text-align: center;
    color: #000;
}

p {
    margin-bottom: 1rem;
    text-align: center;
}

.quote {
    font-style: italic;
    color: #6b6868;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Container für zentrierten Inhalt */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ==========================================
    2. HEADER & NAVIGATION
    ========================================== */
.header-content {
    background-color: #d1e3ed; /* Hellblau aus header_footer.css */
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.header-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.header-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #444;
}

.header-logo img {
    width: 150px;
    border-radius: 8px; /* Leicht abgerundet */
}

/* ==========================================
    3. HAUPTBEREICH (MAIN CONTENT)
    ========================================== */
.section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

/* ==========================================
   GALERIEN (Basis-Styling)
   ========================================== */
.gallery {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    object-fit: cover; /* Schneidet Bilder perfekt zu, ohne sie zu verzerren */
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.02); /* Leichter Zoom-Effekt beim Drüberfahren */
}

/* Die oberen 2 Bilder: Komplett rund */
.gallery-2 img {
    aspect-ratio: 1 / 1; /* Erzwingt ein perfektes Quadrat */
    border-radius: 50%;  /* Macht das Quadrat zu einem perfekten Kreis */
}

/* Die unteren 4 Bilder: Oben eckig, unten rund */
.gallery-4 img {
    aspect-ratio: 1 / 1; /* Auch hier quadratisch als Basis */
    /* border-radius Werte: Oben-Links | Oben-Rechts | Unten-Rechts | Unten-Links */
    border-radius: 0 50% 50% 50%; 
}

/* Reviews (Kundenstimmen) */
.reviews-wrapper {
    background-color: rgba(69,101,245,0.05); /* Sehr sanftes Blau für den Hintergrund */
    padding: 50px 0;
    margin: 40px 0;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review-col h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.review-col .quote {
    margin-bottom: 0;
}

/* Footer & Abschluss */
.closing p {
    margin-bottom: 0.5rem;
}

.closing-logo {
    margin: 30px auto;
    width: 200px;
}

footer {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #666;
}

/* ==========================================
    4. RESPONSIVE DESIGN (TABLETS & DESKTOP)
    ========================================== */
@media (min-width: 768px) {
    /* Header nebeneinander auf großen Screens */
    .header-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 50px;
    }

    .header-text h1, .header-text p {
        text-align: left;
    }

    /* Galerien aufsplitten */
    .gallery-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Reviews nebeneinander */
    .reviews {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .review-col {
        flex: 1;
        padding: 0 20px;
    }
}