        /* ── RESET & BASE ── */
        *, *::before, *::after { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
        }

        :root {
            --green:        #2a9d6f;
            /* Elegantes, seriöses helles Farbschema */
            --primary: #5ead97;         /* Seriöses medizinisches Blau/Teal */
            --primary-light: #38a3a5;
            --primary-soft: rgba(34, 87, 122, 0.08);
            
            --bg-body: #f8fafc;         /* Sehr helles, sauberes Grau-Blau */
            --bg-surface: #f8fafc;      /* Reine weiße Karten */
            --bg-glass: rgba(255, 255, 255, 0.85);
            
            --text-main: #1e293b;       /* Dunkles Schiefergrau für starken Kontrast */
            --text-muted: #64748b;      /* Sanftes Grau für Fließtexte */
            
            --border: rgba(0, 0, 0, 0.08);
            --border-accent: rgba(34, 87, 122, 0.2);
            
            --r: 12px;
            --r-lg: 20px;
            
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 12px 32px rgba(34, 87, 122, 0.12);

            --bg-body:  radial-gradient(circle at top left, rgba(56, 163, 165, 0.18) 0%, transparent 40%),
                        radial-gradient(circle at bottom right, rgba(34, 87, 122, 0.16) 0%, transparent 40%),
                        #f6faff;
            /* Deine gewünschte Grün-Farbe */
            --scrollbar-hover: #2a9d6f;            
        }

/* ── SCROLLBAR STYLING (Universal) ── */

/* Für Firefox: Hier geht leider kein Hover-Effekt auf der Scrollbar per CSS */
html {
    scroll-behavior: smooth;
    scrollbar-width: auto; /* 'auto' ist breit */
    scrollbar-color: var(--text-muted) var(--bg-body-color);
}

/* Für Chrome, Edge, Safari (Webkit) */
::-webkit-scrollbar {
    width: 12px; /* Schön breit */
}

::-webkit-scrollbar-track {
    background: var(--bg-body-color); 
}

::-webkit-scrollbar-thumb {
    background-color: var(--text-muted);
    border-radius: 10px;
    /* Erzeugt den Abstand zum Rand */
    border: 3px solid var(--bg-body-color);
}

/* Der grüne Hover-Effekt (Edge/Chrome/Safari) */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-hover) !important;
}

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-body);
            color: var(--text-main);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 clamp(1.5rem, 6vw, 5rem);
            height: 80px;
            background: var(--bg-glass);
            backdrop-filter: blur(16px) saturate(120%);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        /* Logo für hellen Hintergrund abdunkeln */
        .nav-logo, .hero-center-logo, .footer-logo {
            filter: brightness(1) opacity(0.8);
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        .nav-logo { height: 42px; width: auto; }
        .nav-logo:hover { transform: scale(1.02); filter: brightness(0); }

        .nav-divider {
            width: 1px;
            height: 28px;
            background: var(--border);
        }

        .nav-tagline {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-muted);
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.5rem 1.1rem;
            font-family: inherit;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-main);
            text-decoration: none;
            border: 1px solid var(--border);
            border-radius: 50px;
            transition: all 0.3s ease;
            background: var(--bg-surface);
        }
        .btn-ghost:hover {
            border-color: var(--border-accent);
            background: var(--primary-soft);
            color: var(--primary);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 0.55rem 1.4rem;
            font-family: inherit;
            font-size: 0.875rem;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            background: var(--primary);
            border: 1px solid transparent;
            border-radius: 50px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(56, 163, 165, 0.25);
        }

        /* ── HERO ── */
        .hero {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 140px clamp(1.5rem, 6vw, 5rem) 80px;
        }

        .hero-logo-wrapper {
            margin-bottom: 3rem;
            width: 100%;
        }

        .hero-center-logo {
            width: clamp(150px, 15vw, 240px); 
            height: auto;
            animation: fadeInDown 1s ease-out;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            background: var(--primary-soft);
            border: 1px solid var(--border-accent);
            border-radius: 50px;
            padding: 0.4rem 1.1rem;
            margin-bottom: 2rem;
            animation: fadeUp 0.8s ease both;
        }
                .hero-eyebrow::before {
            content: ''; display: block; width: 6px; height: 6px;
            background: var(--green); border-radius: 50%;
            animation: pulse 2.5s ease infinite;
        }
        @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }
        @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

        .hero-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(3rem, 8vw, 6.5rem);
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -0.01em;
            margin-bottom: 1.5rem;
            color: var(--text-main);
            animation: fadeUp 0.8s 0.1s ease both;
        }

        .hero-title em {
            font-style: italic;
            color: var(--primary);
        }

        .hero-sub {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 3rem;
            font-weight: 400;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.8s 0.3s ease both;
        }

        .btn-lg {
            padding: 0.85rem 2rem;
            font-size: 1rem;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ── MUSTERVERORDNUNG BUTTON ── */
.hero-helper-link {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    animation: fadeUp 0.8s 0.4s ease both; /* Kommt kurz nach der CTA-Group */
}

.helper-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 8px;
}

.helper-btn svg {
    color: var(--primary); /* Nutzt dein Marken-Blau/Rot für das Icon */
    transition: transform 0.3s ease;
}

.helper-btn:hover {
    color: var(--text-main);
    background: var(--primary-soft); /* Dezenter Hintergrund bei Hover */
    border-color: var(--border-accent);
}

.helper-btn:hover svg {
    transform: translateY(-2px); /* Kleiner visueller Effekt beim Hover */
}

/* Für den "Klick-Mich"-Effekt bei älteren Usern */
.helper-btn span {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

        /* ── TRUST STRIP ── */
        .trust-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: var(--bg-surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: clamp(1.5rem, 4vw, 2.5rem);
            transition: background 0.3s ease;
            border-right: 1px solid var(--border);
        }
        .trust-item:last-child { border-right: none; }
        .trust-item:hover { background: var(--bg-body); }

        .trust-icon {
            flex-shrink: 0;
            width: 52px; height: 52px;
            background: var(--primary-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .trust-label {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 2px;
        }
        .trust-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ── SECTION BASE ── */
        section {
            padding: 3rem clamp(1.5rem, 6vw, 5rem);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0;
        }

        .section-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 400;
            line-height: 1.2;
            color: var(--text-main);
            margin-bottom: 1rem;
        }

        .section-title em {
            font-style: italic;
            color: var(--primary);
        }

        .section-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ── GALLERY ── */
        .gallery-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            max-width: 1200px;
            max-height: 900px;
            margin: 0 auto;
            margin-top: 50px;
        }

        .gallery-card {
            position: relative;
            border-radius: var(--r-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            cursor: pointer;
        }

        .gallery-card:first-child { grid-row: 1 / 3; }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
        }

        .gallery-card:first-child img { min-height: 520px; }
        .gallery-card:not(:first-child) img { min-height: 250px; }

        .gallery-card:hover img { transform: scale(1.05); }

        .gallery-card-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 2.5rem 1.5rem 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
        }

        .gallery-card-label {
            font-size: 1rem;
            font-weight: 500;
            color: #ffffff;
            letter-spacing: 0.02em;
        }

        .location-info {
    margin-top: 50px;
    border-radius: var(--r-lg);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.location-title {
    font-size: 1.5rem;
    color: var(--color-primary); /* Oder deine Hauptfarbe */
    margin-bottom: 20px;
    line-height: 1.3;
    padding: 10px;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    padding: 20px;
}

.location-text strong {
    color: #000;
}

@media (max-width: 768px) {
    .location-info {
        padding: 25px;
        margin-top: 30px;
    }
}

/* ── SERVICES (Dynamisches Flex-Grid mit Side-by-Side Header) ── */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem; /* Padding reduziert -> Karte wird kleiner */
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    
    flex: 0 1 calc(25% - 18px); 
    min-width: 250px;
    
    /* Wir nutzen Grid nur innerhalb der Karte für die Anordnung */
    display: grid;
    grid-template-columns: 1fr auto; /* Zahl links (flexibel), Icon rechts (fest) */
    align-items: center;
}

/* Deine Animationen bleiben identisch */
.service-card::after {
    content: ''; 
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--green); 
    transform: scaleX(0); 
    transition: transform 0.35s ease; 
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::after { transform: scaleX(1); }

/* Zahl links oben */
.service-number {
    grid-column: 1;
    grid-row: 1;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem; /* Etwas kleiner für die Kompaktheit */
    color: var(--border);
    line-height: 1;
    margin-bottom: 0; /* Margin entfernt, da Icon jetzt daneben ist */
    transition: color 0.4s ease;
}

.service-card:hover .service-number {
    color: var(--primary-soft);
}

/* Icon rechts oben */
.service-icon {
    grid-column: 2;
    grid-row: 1;
    width: 48px; 
    height: 48px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: var(--primary);
    margin-bottom: 0; /* Margin entfernt */
}

/* Titel unter Zahl/Icon (spannt über beide Spalten) */
.service-title {
    grid-column: 1 / span 2;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem; /* Leicht angepasst */
    color: var(--text-main);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Beschreibung ganz unten */
.service-desc {
    grid-column: 1 / span 2;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive-Anpassungen bleiben wie von dir gewünscht */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 1 calc(50% - 12px);
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 1 100%;
    }
}
        /* ── CONTACT ── */
        .contact-wrap {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info-block {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .contact-row {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding: 1.5rem;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--r);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            box-shadow: var(--shadow-sm);
        }
        .contact-row:hover { 
            border-color: var(--border-accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .contact-row-icon {
            width: 48px; height: 48px;
            background: var(--primary-soft);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .contact-row-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .contact-row-value {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-main);
        }

        .map-placeholder {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            overflow: hidden;
            position: relative;
            min-height: 450px;
            box-shadow: var(--shadow-md);
        }

        .map-placeholder iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: none;
            /* Filter entfernt für helles Layout */
        }

        .map-badge {
            position: absolute;
            bottom: 1.25rem;
            left: 1.25rem;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .map-badge:hover {
            transform: translateY(-3px);
            background: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .map-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .map-row {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        /* Der "Karte laden" Button im Platzhalter */
        #mapMessage button {
            transition: background-color 0.2s
        }

        #mapMessage button:hover {
            background-color: #357ae8 !important; /* Etwas dunkleres Blau */
            cursor: pointer;
            transform: scale(1.03); /* Minimales Vergrößern */
        }

        /* Der Datenschutz-Link */
        #mapMessage a:hover {
            color: #357ae8 !important;
            text-decoration: none !important;
        }

        /* ── FOOTER ── */
        footer {
            border-top: 1px solid var(--border);
            background: var(--bg-surface);
            padding: 1rem clamp(1.5rem, 6vw, 5rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-logo { height: 38px; }

        .footer-copy {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .footer-links a:hover { color: var(--primary); }

        /* ── RESPONSIVE ── */
        svg { flex-shrink: 0; }

        @media (max-width: 900px) {
            .trust-strip { grid-template-columns: 1fr; }
            .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
            .trust-item:last-child { border-bottom: none; }
            
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-card:first-child { grid-row: auto; }
            .gallery-card:first-child img { min-height: 300px; }
            
            .services-grid { grid-template-columns: 1fr; }
            .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
            
            footer { flex-direction: column; text-align: center; }
            .footer-links { justify-content: center; }
            .nav-actions .btn-ghost { display: none; }
        }

        @media (max-width: 600px) {
            .hero-cta-group { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px;}
            .btn-lg { text-align: center; justify-content: center; }
            .gallery-grid { gap: 16px; }
        }
                *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --green:        #2a9d6f;
            --green-dark:   #2a9d6f;
            --green-bg:     #edf7f3;
            --green-border: #b6e0cf;
            --navy:         #0d1f38;
            --bg-page:      #f8fafb;
            --bg-white:     #ffffff;
            --text-primary: #0d1f38;
            --text-second:  #3d5068;
            --text-muted:   #5c7189;
            --border:       #d8e3ed;
            --border-strong:#b0c4d8;
            --r: 14px; --r-lg: 22px;
            --shadow-sm: 0 1px 4px rgba(13,31,56,.07), 0 4px 12px rgba(13,31,56,.05);
            --ease: all 0.32s cubic-bezier(0.4,0,0.2,1);
        }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', sans-serif;
            -webkit-font-smoothing: antialiased; line-height: 1.6;
            overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh;
        }
        :focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
        .skip-link {
            position: absolute; top: -100px; left: 1rem;
            background: var(--green); color: #fff;
            padding: 0.6rem 1.2rem; border-radius: var(--r);
            font-weight: 600; text-decoration: none; z-index: 9999; transition: top 0.2s;
        }
        .skip-link:focus { top: 1rem; }
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 200;
            height: 76px; display: flex; align-items: center; justify-content: space-between;
            padding: 0 clamp(1.5rem, 6vw, 5rem);
            background:radial-gradient(circle at top left, rgba(56, 163, 165, 0.12) 0%, transparent 40%),
                        radial-gradient(circle at bottom right, rgba(34, 87, 122, 0.1) 0%, transparent 40%),
                        #f6faff; backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        .nav-logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
        .nav-logo { height: 44px; width: auto; transition: transform 0.3s; }
        .nav-logo:hover { transform: scale(1.04); }
        .nav-divider { width: 1px; height: 26px; background: var(--border-strong); }
        .nav-tagline { font-size: 0.75rem; font-weight: 600; color: var(--text-second); letter-spacing: 0.14em; text-transform: uppercase; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 0.55rem 1.4rem; font-family: 'DM Sans', sans-serif;
            font-size: 0.875rem; font-weight: 600; color: #fff;
            text-decoration: none; background: var(--green);
            border: 1.5px solid transparent; border-radius: 50px;
            transition: var(--ease); box-shadow: 0 2px 10px rgba(42,157,111,0.25);
        }
        .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

        .page-wrap {
            flex: 1; padding: 120px clamp(1.5rem, 6vw, 5rem) 6rem;
            max-width: 860px; margin: 0 auto; width: 100%;
        }
        .page-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
        .page-title { font-family: 'DM Serif Display', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400; line-height: 1.05; color: var(--navy); margin-bottom: 0.5rem; }
        .page-title em { font-style: italic; color: var(--green-dark); }
        .page-intro { font-size: 1.05rem; color: var(--text-second); line-height: 1.75; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }

        .legal-block { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
        .legal-block h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1.5px solid var(--green-border); }
        .legal-block h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin: 1.25rem 0 0.5rem; }
        .legal-block p { font-size: 0.95rem; color: var(--text-second); line-height: 1.8; }
        .legal-block p + p { margin-top: 0.6rem; }
        .legal-block ul { padding-left: 1.25rem; margin-top: 0.5rem; }
        .legal-block li { font-size: 0.95rem; color: var(--text-second); line-height: 1.8; margin-bottom: 0.3rem; }
        .legal-block a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
        .legal-block a:hover { color: var(--green-dark); }

        .back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); text-decoration: none; margin-bottom: 2.5rem; transition: color 0.2s; }
        .back-link:hover { color: var(--green-dark); }