:root {
    --rose: #e11d48;
    --rose-dark: #be123c;
    --gray-900: #111827;
    --gray-600: #4b5563;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body { background-color: #f9fafb; color: #374151; line-height: 1.5; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav { 
    position: fixed; width: 100%; top: 0; z-index: 100; 
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); 
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); height: 80px; display: flex; align-items: center; 
}
.nav-content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--rose); text-decoration: none; }
.logo-text span { color: var(--gray-900); }
.nav-links a { text-decoration: none; color: inherit; font-weight: 500; margin-left: 30px; transition: color 0.2s; }
.nav-links a:hover { color: var(--rose); }

/* Hero */
.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('background.png') center/cover no-repeat; 
    display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding-top: 80px; 
}
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; margin-bottom: 20px; }
.hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 40px; }

/* Buttons */
.btn { display: inline-block; padding: 15px 30px; border-radius: 50px; font-weight: bold; text-decoration: none; transition: transform 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--rose); color: white; }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-white { background: white; color: var(--gray-900); margin-left: 10px; }
.btn-nav { padding: 10px 20px; }

/* Icons */
.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Sektionen */
section { padding: 80px 0; }
.bg-white { background: white; }
.bg-rose-soft { background: #fff1f2; }
.grid { display: grid; gap: 30px; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; }

/* Vorteile */
.vorteile-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); text-align: center; }
.icon-box svg { width: 50px; height: 50px; fill: var(--rose); margin-bottom: 20px; }

/* Preise */
.prices { border-radius: 20px; padding: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); max-width: 800px; margin: 0 auto; border: 1px solid #f3f4f6; }
.price-row { display: flex; justify-content: space-between; border-bottom: 1px solid #f3f4f6; padding: 15px 0; font-size: 1.1rem; }
.price-row span:last-child { font-weight: 700; color: var(--rose); }
.no-border { border: none; }
.disclaimer { text-align: center; margin-top: 30px; font-size: 0.9rem; color: var(--gray-600); }

/* About */
.about-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.about-img { flex: 1; min-width: 300px; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.about-text { flex: 1.5; min-width: 300px; }
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }

/* Kontakt */
.contact-section { background: var(--gray-900); color: white; text-align: center; }
.contact-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; margin: 40px auto; }
.contact-btn { padding: 20px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-weight: bold; text-decoration: none; color: white; transition: opacity 0.2s; }
.contact-btn:hover { opacity: 0.9; }
.bg-whatsapp { background: #25d366; }
.bg-phone { background: var(--rose); }

/* Footer */
footer { padding: 40px 0; border-top: 1px solid #374151; font-size: 0.875rem; color: #9ca3af; }
.footer-links { margin-top: 20px; }
.footer-links a { color: white; margin: 0 10px; text-decoration: none; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .contact-btns { grid-template-columns: 1fr; }
    .hero-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }
    .btn-white { margin-left: 0; }
}

/* Ersetze das Icon-Styling in deiner style.css */
.contact-btn::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}

/* WhatsApp Icon direkt im CSS */
.bg-whatsapp::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12.04 2c-5.46 0-9.91 4.45-9.91 9.91 0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21 5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.816 9.816 0 0 0 12.04 2m.01 1.67c2.2 0 4.26.86 5.82 2.42a8.225 8.225 0 0 1 2.41 5.83c0 4.54-3.7 8.23-8.24 8.23-1.48 0-2.93-.39-4.19-1.15l-.3-.17-3.12.82.83-3.04-.2-.32a8.188 8.188 0 0 1-1.26-4.38c.01-4.54 3.7-8.24 8.25-8.24M8.53 7.33c-.16 0-.43.06-.66.31-.22.25-.87.86-.87 2.07 0 1.22.89 2.39 1 2.56.14.17 1.76 2.68 4.25 3.76.59.26 1.05.41 1.41.53.6.19 1.15.16 1.57.1.48-.07 1.48-.61 1.69-1.2.2-.58.2-1.09.14-1.2-.06-.11-.22-.17-.47-.29-.25-.12-1.48-.73-1.71-.81-.23-.08-.4-.12-.56.12-.17.24-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.13-1.06-.39-2.03-1.24-.74-.66-1.24-1.47-1.39-1.72-.14-.25-.01-.39.11-.51.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43s-.56-1.35-.77-1.84c-.2-.48-.42-.42-.56-.43h-.48z'/%3E%3C/svg%3E");
}

/* Telefon Icon direkt im CSS */
.bg-phone::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M6.62 10.79c1.44 2.82 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

/* Logo Styling für das PNG */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px; /* Die angezeigte Höhe in der Navbar */
    width: auto;  /* Breite passt sich proportional an */
    display: block;
    transition: transform 0.2s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05); /* Dezenter Effekt beim Drüberfahren */
}

/* Anpassung für mobile Endgeräte */
@media (max-width: 480px) {
    .logo-img {
        height: 45px; /* Etwas kleiner auf dem Handy */
    }
}

/* --- Mobile Menü Stile --- */

/* Standardmäßig verstecken */
.menu-button {
    display: none;
    width: 35px;
    height: 35px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
    /* Hamburger Icon SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111827'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
}

/* Wenn das Menü offen ist (Klasse wird per JS gesetzt) */
.menu-button.is-open {
    /* Close Icon SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e11d48'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    transform: rotate(90deg);
}

.mobile-only-btn { display: none; }

@media (max-width: 768px) {
    .menu-button { display: block; }
    .desktop-only { display: none; }

    .nav-links {
        display: none; /* Versteckt */
        flex-direction: column;
        position: absolute;
        top: 80px; /* Höhe der Navbar */
        left: 0;
        width: 100%;
        background: white;
        padding: 40px 20px;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        text-align: center;
        gap: 25px;
    }

    .nav-links.is-active {
        display: flex; /* Sichtbar wenn aktiv */
        animation: fadeInDown 0.3s ease-out;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.2rem;
    }

    .mobile-only-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Container für die rechte Seite der Navbar auf Mobile */
.mobile-actions {
    display: none; /* Auf Desktop versteckt */
    align-items: center;
    gap: 20px;
}

/* Das Telefon-Icon als Button (nur Mobile) */
.mobile-call-icon {
    display: block;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    /* Telefon Icon SVG in deiner Markenfarbe (Rose) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e11d48'%3E%3Cpath d='M6.62 10.79c1.44 2.82 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    transition: transform 0.2s ease;
}

.mobile-call-icon:active {
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .mobile-actions {
        display: flex; /* Zeige Gruppe auf Mobile */
    }
    
    .desktop-only {
        display: none; /* Verstecke den Text-Button auf Mobile */
    }
}

/* --- 6. PREISE (Schrift wird kleiner statt gekürzt) --- */
.bg-white { background: white; }

.prices { 
    background: white; 
    border: 1px solid #f3f4f6; 
    border-radius: 20px; 
    padding: 30px; 
    max-width: 800px; 
    margin: 0 auto; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
}

.price-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid #f3f4f6; 
    padding: 18px 0; 
    flex-wrap: nowrap; /* Verhindert den Umbruch in zwei Zeilen */
    gap: 10px;
}

/* Linke Seite: Der Leistungsname */
.price-row span:first-child { 
    font-size: 1.15rem;
    color: var(--gray-900);
    /* Kein "ellipsis" mehr, wir lassen den Text einfach fließen */
    white-space: normal; 
    line-height: 1.3;
}

/* Rechte Seite: Der Preis */
.price-row span:last-child { 
    font-weight: 700; 
    color: var(--rose); 
    white-space: nowrap; /* Preis bleibt immer als eine Einheit stehen */
    flex-shrink: 0;      /* Preis darf nicht kleiner werden oder quetschen */
}

.no-border { border: none; }

/* Spezielle Anpassung für kleine Handys (z.B. iPhone SE) */
@media (max-width: 480px) {
    .prices {
        padding: 20px 15px; /* Etwas weniger Innenabstand für mehr Platz */
    }
    .price-row span:first-child { 
        font-size: 0.9rem; /* Schrift wird kleiner, damit sie passt */
    }
    .price-row span:last-child {
        font-size: 0.95rem;
    }
}

/* --- 7. RECHTLICHES (Impressum & Datenschutz) --- */

/* Abstand nach oben wegen der fixierten Navbar */
.legal-container {
    padding-top: 130px;
    padding-bottom: 80px;
}

/* Karten-Design für die Rechtstexte */
.legal-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    color: #374151;
}

/* Überschriften innerhalb der Rechtstexte */
.legal-card h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--gray-900);
}

/* Trennlinie */
.legal-card hr {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #f3f4f6;
}

/* Links (z.B. Streitschlichtung) */
.rose-link {
    color: var(--rose);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.rose-link:hover {
    color: var(--rose-dark);
}

/* Kleingedrucktes */
.small-print {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Hilfsklassen für CSP-Konformität (Ersatz für style-Attribute) */
.text-left { text-align: left !important; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.lh-1-8 { line-height: 1.8; }

/* Mobile Anpassung für die Rechtsseiten */
@media (max-width: 480px) {
    .legal-card {
        padding: 25px 20px;
    }
    .legal-container {
        padding-top: 110px;
    }
    .legal-card h2 {
        font-size: 1.25rem;
    }
}

/* --- CSP-KONFORME DESIGNS --- */

/* Der Ersatz für das style="padding-top: 130px" im main tag */
.legal-container {
    padding-top: 130px !important;
    padding-bottom: 80px !important;
}

/* Hilfsklassen (Utilities) */
.text-left { text-align: left !important; }
.mt-30 { margin-top: 30px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.lh-1-8 { line-height: 1.8 !important; }

.legal-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #f3f4f6;
    border-radius: 20px;
}

.legal-card hr {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid #f3f4f6;
}

.small-print { font-size: 0.9rem; color: #666; }
.rose-link { color: var(--rose); text-decoration: underline; font-weight: 600; }

/* Hero-H1: Passt sich dynamisch der Breite an */
.hero h1 { 
    /* clamp(Minimum, Skalierung, Maximum) */
    font-size: clamp(1.6rem, 9vw, 3.5rem); 
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    max-width: 100%; /* Begrenzung auf Bildschirmbreite */
    overflow-wrap: break-word; /* Sicherheit gegen Überlaufen langer Wörter */
    hyphens: auto; /* Aktiviert Silbentrennung falls nötig */
}

/* Sektions-Titel (Leistungen, Impressum, Datenschutz) */
.section-title { 
    font-size: clamp(1.5rem, 7vw, 2.5rem); 
    text-align: center; 
    margin-bottom: 40px; 
    max-width: 100%;
    hyphens: auto;
}

/* Spezielle Korrektur für extrem schmale Bildschirme */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem; /* Fester Notfall-Wert für Kleinst-Geräte */
    }
}

/* Sektions-Titel: Zentriert und responsiv */
.section-title { 
    font-size: clamp(1.5rem, 8vw, 2.5rem); /* Dynamische Größe */
    text-align: center;                   /* Mittig ausrichten */
    margin-bottom: 40px; 
    width: 100%;                          /* Volle Breite nutzen */
    max-width: 100%;                      /* Begrenzung auf Screen-Breite */
    hyphens: auto;                        /* Silbentrennung für lange Wörter */
    word-wrap: break-word;                /* Umbruch-Sicherheit */
}


/* =========================================================
   LEGAL TUNING: weniger Abstand + saubere Listen
   (ganz ans Ende der style.css setzen)
   ========================================================= */

/* etwas kompaktere Karte */
.legal-card {
  padding: 32px;
}

/* Überschriften: Abstand nicht doppelt zählen */
.legal-card h2 {
  /* Basis kompakter */
  font-size: 1.35rem;
  margin-top: 0;           /* wichtig: verhindert "40px + mt-30" */
  margin-bottom: 12px;
  color: var(--gray-900);
}

/* Wenn du im HTML mt-30 nutzt: kleiner und kontrolliert */
.legal-card .mt-30 {
  margin-top: 22px !important;
}

/* mb-Klassen auf Rechtsseiten etwas entschärfen */
.legal-card .mb-10 { margin-bottom: 8px !important; }
.legal-card .mb-20 { margin-bottom: 14px !important; }

/* H3 (du nutzt sie in der Datenschutzseite) */
.legal-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--gray-900);
}

/* Absätze: optional leicht „automatische“ Rhythmik */
.legal-card p {
  margin: 0 0 12px;
}

/* Listen: Bullets wieder sauber in der Card ausrichten */
.legal-card ul,
.legal-card ol {
  margin: 0 0 14px;
  padding-left: 1.25rem;        /* sorgt dafür, dass die Punkte nicht links "raus hängen" */
  list-style-position: outside; /* klassisches Layout */
}

.legal-card li {
  margin: 6px 0;
}

/* Mobile: etwas weniger Innenabstand */
@media (max-width: 480px) {
  .legal-card { padding: 22px 18px; }
}

/* --- CSP HELPER KLASSEN (Ersetzen Inline-Styles) --- */

/* Unsichtbarer Anker-Punkt (Offset wegen Navbar) */
.kontakt-anchor {
    position: relative;
    top: -100px; /* Springt etwas höher, damit Überschrift nicht verdeckt wird */
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
}

/* Intro Text Styling */
.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #666;
}

/* Abstand unter den Buttons */
.contact-btns {
    margin-bottom: 50px; 
    /* Rest der Button-Styles bleibt wie vorher */
}

/* Honeypot Feld (Muss unsichtbar sein!) */
.honeypot-field {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

/* --- NEUER KONTAKT BEREICH (Beige) --- */
.footer-contact-wrapper {
    background-color: #f8f5f2; /* Zarter Creme-Ton */
    padding: 80px 20px;
    color: #4b5563; 
}

.footer-contact-wrapper h2 {
    color: #111827; 
}

/* --- DER EIGENTLICHE FOOTER (Dunkelblau) --- */
#main-footer {
    background-color: #0f172a; /* Midnight Blue */
    color: #e2e8f0;            
    padding: 60px 20px;
    margin-top: 0;             
    border-top: 4px solid #d4a373; 
}

#main-footer .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

#main-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

#main-footer a:hover {
    color: #ffffff;
    border-bottom: 1px dotted #d4a373;
}

/* Mobile Anpassung Footer */
@media (max-width: 600px) {
    #main-footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   PREMIUM FORMULAR STYLE
   ========================================= */

/* 1. Die "Karte" - Das Formular schwebt auf dem Beige */
.contact-form {
    background-color: #ffffff;
    padding: 40px;              /* Viel Platz innen */
    border-radius: 12px;        /* Weiche Ecken */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Sanfter Schatten */
    max-width: 800px;           /* Nicht breiter als 800px */
    margin: 0 auto;             /* Zentriert */
    border: 1px solid rgba(0,0,0,0.02);
}

/* 2. Layout der Reihen (Name/Email nebeneinander) */
.form-row {
    display: flex;
    gap: 20px;       /* Abstand zwischen den Feldern */
    margin-bottom: 20px;
}

.half-width {
    flex: 1;         /* Beide Felder gleich breit */
}

/* Abstand für einzelne Gruppen */
.form-group {
    margin-bottom: 20px;
}

/* 3. Labels (Beschriftungen) */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4b5563;         /* Dunkelgrau, gut lesbar */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 4. Die Eingabefelder (Inputs, Select, Textarea) */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px;
    background-color: #f9fafb; /* Ganz helles Grau innen */
    border: 1px solid #e5e7eb; /* Zarter grauer Rahmen */
    border-radius: 8px;
    font-size: 1rem;
    color: #1f2937;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Wichtig, damit Padding nicht die Breite sprengt */
    appearance: none;       /* Entfernt Standard-Browser-Styles (z.B. bei Apple) */
    -webkit-appearance: none;
}

/* Fokus-Effekt (Wenn man reinklickt) */
input:focus, 
textarea:focus, 
select:focus {
    background-color: #ffffff;
    border-color: #d4a373;  /* Deine Gold-Akzentfarbe */
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.15); /* Sanftes Leuchten */
}

/* Das Select-Feld braucht einen eigenen Pfeil */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* 5. Checkbox (Datenschutz) */
.checkbox-group {
    display: flex;
    align-items: flex-start; /* Oben bündig ausrichten */
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0; /* Verhindert, dass die Checkbox eingedrückt wird */
    accent-color: #d4a373; /* Checkbox Farbe (Gold) */
    cursor: pointer;
}

.checkbox-group a {
    color: #d4a373;
    text-decoration: underline;
}

/* 6. Der Absende-Button */
.form-actions {
    margin-top: 30px;
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #111827; /* Dunkles "Midnight" Blau/Schwarz */
    color: #ffffff;
    border: none;
    border-radius: 50px; /* Pillen-Form */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-submit:hover {
    background-color: #d4a373; /* Wird Gold beim Drüberfahren */
    transform: translateY(-2px);
}

/* 7. Mobile Optimierung */
@media (max-width: 600px) {
    .contact-form {
        padding: 25px 20px; /* Weniger Rand auf dem Handy */
    }
    
    .form-row {
        flex-direction: column; /* Untereinander statt nebeneinander */
        gap: 0;
    }
}

/* =========================================
   CSP-SAFE ERFOLGSMELDUNG
   ========================================= */

.success-message-container {
    text-align: center;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    border-left: 5px solid #2d6a4f; /* Dunkelgrüner Akzent */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message-container h3 {
    color: #2d6a4f;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.success-message-container p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.success-link {
    display: inline-block;
    margin-top: 25px;
    text-decoration: underline;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.success-link:hover {
    color: #2d6a4f;
}

/* Sanfte Einblend-Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
