/* --- RESET & BASIC STYLES --- */
:root {
    --bg-main: #f9f9f9;
    --bg-card: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --header-height: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-main);
    color: var(--text-color);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

.theme-btn, #lang-switch {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
}

/* --- FIXED HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
    z-index: 1001;
}

.header-logo img {
    height: 90px;
    width: auto;
    display: block;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
    background-color: #ffffff;
    padding: 8px;     
}

.site-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

#lang-switch {
    background: none;
    border: 1px solid var(--border-color);
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
}

/* --- BURGER BUTTON (IMMER SICHTBAR) --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    /* 1. Bildhöhe auf Mobilgeräten */
    .hero-section {
        height: 40vh;
    }

    /* 2. Telefon & E-Mail ausblenden */
    .site-title p {
        display: none;
    }

    /* 3. EN-Button nach ganz links schieben */
    .site-title {
        gap: 0;
    }

    /* 4. Logo verkleinern */
    .header-logo img {
        height: 55px; /* Geändert von 90px auf 55px */
        padding: 4px;
    }
}

/* --- OVERLAY NAVIGATION --- */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background-color:#c66b5d;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
}

.main-nav.active {
    right: 0;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* --- HERO --- */
.hero-section {
    width: 100%;
    height: 85vh;
    margin-top: 0 !important;
    padding: 0;
    overflow: hidden;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.4);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }
}

/* --- WELCOME SECTION --- */
#welcome {
    background-color: #ffffff; 
    width: 100%;
    padding: 60px 0;
    box-shadow: 0px 10px 30px -2px #a7353545;
}

.welcome-text {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 5%; /* Seitlicher Innenabstand, damit der Text nicht am Rand klebt */
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* --- PILATES SECTION --- */
#pilates {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

#pilates h1 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--text-color, #333);
    text-align: center;
}

.pilates-content {
    width: 100%;
    color: var(--text-color, #333);
}

/* --- Video Facade (Gefloated für Textfluss) --- */
#pilates .video-facade {
    float: left;
    width: 320px;
    aspect-ratio: 16 / 9;
    margin-right: 25px;
    margin-bottom: 15px;
    position: relative;
    background-color: #000;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.facade-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facade-overlay {
    position: absolute;
    inset: 0;
    background: #00000066;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 15px;
    transition: background 0.3s ease;
}

.video-facade:hover .facade-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 58px;
    height: 40px;
    background-color: #ff0000;
    border-radius: 10px;
    position: relative;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.play-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
}

.video-facade:hover .play-button {
    transform: scale(1.1);
}

.facade-overlay p {
    font-size: 0.75rem;
    line-height: 1.3;
    max-width: 90%;
    margin: 0;
}

/* --- Text Alignment --- */
#pilates p {
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Clearfix */
.pilates-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobil-Anpassung */
@media (max-width: 650px) {
    #pilates .video-facade {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* =========================================================
   4. INSTRUKTOR SECTION (Text links, Bild rechts)
   ========================================================= */
/* --- INSTRUKTOR SECTION --- */
#instruktor {
    max-width: 800px; /* Leicht angepasst, damit Text & Bild gut harmonieren */
    margin: 40px auto;
    padding: 40px 20px 0 20px;
    box-sizing: border-box;
    width: 100%;
    border-top: 2px solid #DB2E15;
    text-align: center;
}

#instruktor h1 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--text-color, #333);
}

.instruktor-content {
    width: 100%;
    color: var(--text-color, #333);
}

/* Bild-Laufrichtung (Text umfließt das Bild auf der rechten Seite) */
#instruktor .img-wrapper {
    float: left;
    width: 300px;
    margin-right: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

#instruktor .instruktor-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#instruktor p {
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Clearfix: Verhindert, dass nachfolgende Sektionen in den Float hineinrutschen */
.instruktor-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobil-Anpassung: Bild zentrieren und Text darunter anzeigen */
@media (max-width: 650px) {
    #instruktor .img-wrapper {
        float: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px auto;
    }
}


/* --- PILATES BAIERBRUNN SECTION (Volle Breite + Inset-Schatten) --- */
#pilates-img {
    width: 100%;
    margin: 40px 0;
    padding: 0;
}

#pilates-img .image-block {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

#pilates-img .img-wrapper {
    position: relative; /* WICHTIG: Damit ::after exakt auf dem Bild verankert ist */
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
}

#pilates-img .pilates-baierbrunn-img {
    width: 100%;
    height: auto;
    max-height: 550px; /* Je nach Wunsch anpassbar */
    object-fit: cover;
    display: block;
}

/* Der Inset-Schatten NUR für das Baierbrunn Bild */
#pilates-img .img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   5. FOOTER
   ========================================================= */
.site-footer {
    background-color: var(--footer-bg, #111);
    padding: 20px 5%;
    color: var(--panel-color, #080808); 
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5% !important;
    width: 100%;
    box-sizing: border-box;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-col h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--panel-color, #080808);
}

.footer-col p {
    margin: 3px 0;
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.site-footer a {
    color: var(--panel-color, #080808);
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.site-footer a:hover {
    color: var(--header-text, #aaa);
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    box-sizing: border-box;
}

.footer-bottom p {
    margin: 0;
}

/* =========================================================
   6. RESPONSIVE (Mobil-Anpassung)
   ========================================================= */
@media (max-width: 768px) {
    .hero-section {
        height: 40vh;
    }

    #pilates,
    #instruktor {
        flex-direction: column;
        gap: 25px;
        margin: 20px auto;
    }

    #pilates .video-facade,
    #instruktor .image-block {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-col {
        width: 100%;
        align-items: center;
    }
}

/* --- LEISTUNGSANGEBOTE SECTION --- */
#leistungsangebote {
    position: relative;
    padding: 80px 10%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

#leistungsangebote::before {
    content: "";
    position: absolute;
    inset: -10px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.573), rgba(255, 255, 255, 0.573)),
        url('images/pilatesbaierbrunn.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(1.3px); 
    z-index: 1;
}

.leistungsangebote-text {
    position: relative; 
    z-index: 2;
    max-width: 80%; 
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #030303;
    text-align: justify;
}

.leistungsangebote-text h1 {
    color: #0b0b0b;
    margin-top: 0;
    text-align: center;
}

/* --- APPARATE SECTION --- */
#apparate {
    background-color: #ffffff; 
    width: 100%;
    padding: 80px 0 60px 0; 
    box-sizing: border-box;
    overflow: hidden; 
}

.apparate-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 10%;
    box-sizing: border-box;
}

.apparate-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
    margin-bottom: 50px;
    max-width: 80%; 
    margin: 0 auto 40px auto; 
    text-align: center;
}

/* DESKTOP GALERIE */
.apparate-gallery-container {
    position: relative;
    width: 100%;
}

.apparate-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.apparate-gallery .image-block {
    flex: 1;
    /* Begrenzt die Bildgröße, damit sie auf schmalen Screens nicht ausbrechen */
    max-width: 30%; 
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* Äußere Bilder sanft nach oben heben */
.apparate-gallery .image-block:nth-child(1),
.apparate-gallery .image-block:nth-child(3) {
    transform: translateY(-20px);
}

.img-apparate-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pilates-apparate {
    width: 100%;
    height: 350px; /* Kompakte Höhe */
    object-fit: cover;
    display: block;
}

/* Mobile Controls auf Desktop ausblenden */
.apparate-controls {
    display: none;
}


/* MOBILE ANSICHT (Unter 768px) */
@media (max-width: 768px) {
    #apparate {
        padding: 40px 20px; /* Sauberes Padding für Mobile */
    }

    .apparate-gallery {
        display: flex;
        overflow: hidden;
        scroll-behavior: smooth;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
    }

    .apparate-gallery .image-block {
        min-width: 100%;
        max-width: 100%;
        transform: none !important; /* Kein Anheben auf Mobilgeräten */
    }

    .pilates-apparate {
        height: 220px;
    }

    .apparate-controls {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .app-btn {
        background-color: transparent;
        border: 1px solid #ffffff;
        color: #ffffff;
        font-size: 1.8rem;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 4px;
    }

    .app-btn:hover {
        background-color: #ffffff;
        color: #333;
    }
}

/* --- TRAINING SECTION --- */
.img-background {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; 
}

/* Das Hintergrundbild */
.about-profile-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  z-index: 1; 
}

.content-over-image {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  max-width: 800px; 
}

#training {
    padding: 60px 10%;
    max-width: 1100px;
    margin: 0 auto;
}

.training-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

/* --- ERFAHRUNGEN SECTION --- */
#erfahrungen {
    padding: 60px 10%;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-block {
  background-color: #ffffff;
  border-top: 1px solid #e8e4de;
  border-bottom: 1px solid #e8e4de;
}

.testimonials {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial.active {
  display: block;
}

.quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.author {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: #7a6a58;
  margin-bottom: 3rem !important; 
  display: block !important;
}

.testimonial-controls {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-controls .btn {
    background-color: transparent;
    border: 1px solid #7a6a58;
    color: #7a6a58;
    font-size: 1.8rem;
    width: 48px; 
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding-bottom: 4px; 
}

.testimonial-controls .btn:hover {
    background-color: #7a6a58;
    color: #ffffff;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px; 
    margin-top: 1.5rem;
}

.testimonial-dots .dot {
    width: 12px;   
    height: 12px;
    background-color: #e8e4de;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-dots .dot:hover {
    background-color: #b5a999;
}

.testimonial-dots .dot.active {
    background-color: #c66b5d;
    transform: scale(1.2); 
}

/* --- STUDIO SECTION --- */
#studio {
    padding: 60px 5%;
    margin: 0 auto;
    background-color: #ffffff; 
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
}

.contact-hero {
    text-align: center;
    margin-bottom: 40px;
}

/* Flexbox Grid für Nebeneinander-Darstellung */
.contact-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1; /* Nimmt 50% der Breite ein */
}

.contact-info a {
    color: #000000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: none;
    color: #c66b5d;
}

.map-section {
    flex: 1; /* Nimmt 50% der Breite ein */
    width: 100%;
    margin: 0; /* Entfernt vorherigen auto-Margin */
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color, #e0e0e0);
    background-color: var(--bg-card, #ffffff);
    position: relative;
}

/* Styling für den DSGVO-Platzhalter */
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Abfanger für Mobilgeräte */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
    
    #studio {
        padding: 40px 5%;
    }
}

/* --- CONTACT FORM --- */
.contact-form-area {
    padding: 60px 10%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: -10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: #c66b5d;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #333333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button-Styling & Hover */
.contact-form .btn-primary {
    margin-top: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #333333;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-form .btn-primary:hover {
    background-color: #555555;
}

.contact-form .btn-primary:active {
    transform: scale(0.99);
}

/* --- CONTENT SECTIONS --- */
main {
    margin-top: var(--header-height);
}

h1, h2 {
    margin-bottom: 20px;
    font-weight: 400;
    color: #111111;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    border-radius: 4px;
}

.btn-primary {
    background-color: #333333;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #555555;
}

/* Footer */
.site-footer {
    background-color: #c66b5d;
    padding: 40px 10% 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.site-footer a {
    text-decoration: none; 
    color: var(--text-color);
    display: block;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* --- IMPRESSUM SECTION --- */
#impressum {
    width: 100%;
    padding: 60px 10%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.impressum-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card, #ffffff);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.impressum-container h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-color, #333333);
    border-bottom: 2px solid #DB2E15;
    padding-bottom: 10px;
}

.impressum-block {
    margin-bottom: 25px;
}

.impressum-block h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-color, #111111);
}

.impressum-block h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--text-color, #333333);
}

.impressum-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color, #333333);
    margin-bottom: 12px;
}

.impressum-block a {
    color: #DB2E15;
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum-block a:hover {
    text-decoration: underline;
}

.impressum-divider {
    border: none;
    border-top: 1px solid var(--border-color, #e0e0e0);
    margin: 30px 0;
}

/* MOBIL-ANPASSUNG */
@media (max-width: 768px) {
    #impressum {
        padding: 40px 5%;
    }

    .impressum-container {
        padding: 25px 20px;
    }

    .impressum-container h1 {
        font-size: 1.8rem;
    }
}

/* --- DATENSCHUTZ SECTION --- */
#datenschutz {
    width: 100%;
    padding: 60px 10%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}

.datenschutz-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card, #ffffff);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.datenschutz-container h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-color, #333333);
    border-bottom: 2px solid #DB2E15;
    padding-bottom: 10px;
}

.datenschutz-block {
    margin-bottom: 25px;
}

.datenschutz-block h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-color, #111111);
}

.datenschutz-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--text-color, #333333);
}

.datenschutz-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color, #333333);
    margin-bottom: 12px;
}

.datenschutz-block ul {
    margin: 10px 0 15px 20px;
    color: var(--text-color, #333333);
    font-size: 0.95rem;
    line-height: 1.6;
}

.datenschutz-block a {
    color: #DB2E15;
    text-decoration: none;
    transition: color 0.2s ease;
}

.datenschutz-block a:hover {
    text-decoration: underline;
}

.datenschutz-divider {
    border: none;
    border-top: 1px solid var(--border-color, #e0e0e0);
    margin: 30px 0;
}

/* MOBIL-ANPASSUNG */
@media (max-width: 768px) {
    #datenschutz {
        padding: 40px 5%;
    }

    .datenschutz-container {
        padding: 25px 20px;
    }

    .datenschutz-container h1 {
        font-size: 1.8rem;
    }
}