/* ═══════════════════════════════════════════════════════════════
   BADSANIERUNG – Brand CSS
   Design: Clean Premium – DM Serif Display + DM Sans
   Primärfarbe: #1a2e35 (Dark Teal-Slate)
   Akzent: #009688 (Vivid Teal)
   Warm-Akzent: #c8860a (Amber)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Root Variables ──────────────────────────────────────────── */
:root {
    --primary:   #1a2e35;
    --teal:      #009688;
    --amber:     #c8860a;
    --bg:        #ffffff;
    --bg-soft:   #f4f7f6;
    --bg-dark:   #0f1d22;
    --text:      #222b2e;
    --text-light:#5a6a6e;
    --border:    #dde6e4;
    --radius:    6px;
    --shadow:    0 2px 16px rgba(0,0,0,.07);
    --shadow-md: 0 4px 28px rgba(0,0,0,.10);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
}

img { display: block; width: 100%; height: auto; }

a { color: var(--teal); }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
    color: var(--primary);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

p { margin-bottom: .85em; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ──────────────────────────────────────────── */
.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-pad {
    padding: 72px 32px;
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Header ──────────────────────────────────────────────────── */
header {
    background: var(--primary);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}

header .logo img {
    width: auto;
    height: 52px;
    display: block;
}

header .logo--text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: .02em;
    line-height: 1;
}

header .header-title {
    border-left: 1px solid rgba(255,255,255,.18);
    padding-left: 28px;
}

header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: #ffffff;
    font-weight: 400;
}

header h1 .header-sub {
    display: block;
    font-size: .75em;
    color: rgba(255,255,255,.6);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    margin-top: 3px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    background: var(--bg-soft);
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 100%;
}

.hero-content {}

.hero-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.hero-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--text-light);
    margin-bottom: .75em;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
}

.hero-bullets li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
}

.hero-bullets li:last-child { border-bottom: none; }

.hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.hero-outro {
    font-size: .95rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    background: #c8d8d4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image .placeholder-text {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    text-align: center;
    padding: 20px;
}

/* ── CTA Button ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #007a6e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,150,136,.28);
}

.btn--lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

.hero-btns {
    display: inline-flex;
    flex-direction: column;
    align-self: flex-start;
    gap: 14px;
    margin-top: 20px;
}

.hero-btns .btn {
    width: 100%;
    text-align: center;
}

.btn--call {
    background: #00695c;
    color: #fff;
}

.btn--call:hover {
    background: #004d40;
    box-shadow: 0 6px 20px rgba(0,105,92,.35);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.btn--outline:hover {
    background: var(--teal);
    color: #fff;
}

/* ── Kosten Section ──────────────────────────────────────────── */
.kosten {
    padding: 72px 40px;
    max-width: 1060px;
    margin: 0 auto;
}

.kosten p { color: var(--text-light); }

.kosten-preise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.kosten-preis-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
}

.kosten-preis-card .label {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.kosten-preis-card .price {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
}

/* ── Ablauf Section ──────────────────────────────────────────── */
.ablauf {
    background: var(--primary);
    padding: 72px 40px;
    color: #fff;
}

.ablauf h2 {
    color: #fff;
    margin-bottom: 12px;
}

.ablauf .section-sub {
    color: rgba(255,255,255,.6);
    margin-bottom: 48px;
    font-size: .95rem;
}

.ablauf-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.ablauf-step {
    position: relative;
}

.ablauf-step::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--teal);
    opacity: .4;
}

.ablauf-step:last-child::after { display: none; }

.ablauf-step-nr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.ablauf-step-title {
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 6px;
}

.ablauf-step-text {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}

/* ── Leistungen Section ──────────────────────────────────────── */
.leistungen {
    padding: 72px 40px;
    max-width: 1060px;
    margin: 0 auto;
}

.leistungen p { color: var(--text-light); margin-bottom: 28px; }

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.leistungen-item {
    background: var(--bg-soft);
    border-left: 3px solid var(--teal);
    padding: 10px 14px;
    font-size: .875rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: border-color .2s, transform .15s;
}

.leistungen-item:hover {
    border-color: var(--amber);
    transform: translateX(3px);
}

/* ── Probleme Section ────────────────────────────────────────── */
.probleme {
    background: var(--bg-soft);
    padding: 72px 40px;
}

.probleme-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.probleme p { color: var(--text-light); }

/* ── Technik Section ─────────────────────────────────────────── */
.technik {
    padding: 72px 40px;
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.technik-text p { color: var(--text-light); margin-bottom: .75em; }

.technik-checklist {
    list-style: none;
    padding: 0;
}

.technik-checklist li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.technik-checklist li:last-child { border-bottom: none; }

.technik-checklist li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}

/* ── Stadtteile Section ──────────────────────────────────────── */
.stadtteile {
    background: var(--bg-soft);
    padding: 72px 40px;
}

.stadtteile-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.stadtteile-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.stadtteile-tag {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .85rem;
    color: var(--primary);
}

/* ── Vorteile Section ────────────────────────────────────────── */
.vorteile {
    padding: 72px 40px;
    max-width: 1060px;
    margin: 0 auto;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.vorteil-card {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow .2s ease, transform .15s;
}

.vorteil-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.vorteil-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,150,136,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--teal);
    font-size: 1.1rem;
}

.vorteil-text {
    font-size: .875rem;
    color: var(--text);
    font-weight: 500;
}

/* ── Warum Section ───────────────────────────────────────────── */
.warum {
    background: var(--primary);
    padding: 72px 40px;
    color: #fff;
}

.warum-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.warum h2 { color: #fff; }

.warum p, .warum li { color: rgba(255,255,255,.75); }

.warum-list {
    list-style: none;
    padding: 0;
}

.warum-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
}

.warum-list li:last-child { border-bottom: none; }

.warum-list li::before {
    content: '→';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── CTA Block ───────────────────────────────────────────────── */
.cta-block {
    background: linear-gradient(135deg, var(--teal) 0%, #006e65 100%);
    padding: 64px 40px;
    text-align: center;
    color: #fff;
}

.cta-block h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-block p {
    color: rgba(255,255,255,.8);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.btn--cta-white {
    background: #fff;
    color: var(--teal);
    font-weight: 700;
}

.btn--cta-white:hover {
    background: #f0faf9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* ── FAQ Section ─────────────────────────────────────────────── */
.faq {
    padding: 72px 40px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--text-light);
    font-size: .95rem;
}

/* ── Kontakt Section ─────────────────────────────────────────── */
.kontakt {
    background: var(--bg-soft);
    padding: 80px 40px;
}

.kontakt-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.kontakt-info h2 { margin-bottom: 20px; }
.kontakt-info p { color: var(--text-light); margin-bottom: .75em; }

.kontakt-meta {
    margin-top: 24px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: .9rem;
}

.kontakt-meta p { margin-bottom: .4em; color: var(--text); }
.kontakt-meta strong { color: var(--primary); }

.kontakt-formular {
    background: #fff;
    border-radius: 10px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.kontakt-formular label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    margin-top: 16px;
}

.kontakt-formular label:first-of-type { margin-top: 0; }

.kontakt-formular input,
.kontakt-formular textarea,
.kontakt-formular select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color .2s;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.kontakt-formular textarea { resize: vertical; min-height: 90px; }

.kontakt-formular .btn { width: 100%; text-align: center; margin-top: 20px; }

.form-hint {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: 8px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--teal);
    width: 16px;
    height: 16px;
}

.form-checkbox label {
    font-size: .82rem;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 400;
}

.form-checkbox a { color: var(--teal); }

.form-legal {
    font-size: .78rem;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.5;
}

.form-legal a { color: var(--teal); }

.form-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: .9rem;
}

.form-error {
    background: #fce4e4;
    border: 1px solid #ef9a9a;
    color: #c62828;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: .9rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,.6);
    padding: 32px 40px;
    font-size: .875rem;
}

footer a { color: rgba(255,255,255,.6); text-decoration: none; }
footer a:hover { color: #fff; }

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── Bild-Banner (nach Kosten) ───────────────────────────────── */
.bild-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.bild-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Bild-Split (nach Leistungen) ────────────────────────────── */
.bild-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
    overflow: hidden;
}

.bild-split-img {
    overflow: hidden;
}

.bild-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bild-split-text {
    background: var(--primary);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.bild-split-text h3 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #fff;
    line-height: 1.25;
    font-weight: 400;
}

.bild-split-text p {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin: 0;
}

/* ── Bild-Ergebnis (vor Kontakt) ─────────────────────────────── */
.bild-ergebnis {
    padding: 72px 40px;
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}

.bild-ergebnis-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.bild-ergebnis-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bild-ergebnis-text h2 {
    margin-bottom: 16px;
}

.bild-ergebnis-text p {
    color: var(--text-light);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero,
    .technik,
    .kontakt-inner,
    .warum-inner,
    .bild-split,
    .bild-ergebnis {
        grid-template-columns: 1fr;
    }

    .bild-banner { height: 260px; }
    .bild-split-img { height: 260px; }
    .bild-split-text { padding: 40px 32px; }
    .bild-ergebnis-img { aspect-ratio: 16/9; }

    .hero { padding: 48px 24px; gap: 40px; }
    .hero-image { aspect-ratio: 16/9; order: -1; }

    .ablauf-steps {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .ablauf-step::after { display: none; }

    .kosten-preise { grid-template-columns: 1fr; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
    .vorteile-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    header { padding: 16px 20px; gap: 16px; }
    header .header-title { padding-left: 16px; }

    .section-pad,
    .kosten, .ablauf, .leistungen, .probleme-inner,
    .technik, .stadtteile-inner, .vorteile, .faq,
    .cta-block, .kontakt {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ablauf-steps { grid-template-columns: 1fr; }
    .leistungen-grid { grid-template-columns: 1fr; }
    .vorteile-grid { grid-template-columns: 1fr 1fr; }

    .kontakt-formular { padding: 24px 20px; }

    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
    border-top: 3px solid var(--teal);
}
.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    flex: 1 1 260px;
    font-size: .9rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255,255,255,.92);
}
.cookie-banner__link {
    color: var(--teal);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-banner__btn {
    border: none;
    border-radius: var(--radius);
    padding: 10px 20px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s;
}
.cookie-banner__btn:hover { opacity: .85; }
.cookie-banner__btn--accept {
    background: var(--teal);
    color: #fff;
}
.cookie-banner__btn--necessary {
    background: transparent;
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.35);
}
@media (max-width: 540px) {
    .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 12px; }
    .cookie-banner__actions { flex-direction: column; }
    .cookie-banner__btn { width: 100%; text-align: center; padding: 12px; }
}



/* ── Legal Pages ─────────────────────────────────────────────── */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 32px 80px;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 36px;
    transition: color .2s;
}

.legal-back::before {
    content: '←';
}

.legal-back:hover { color: var(--primary); }

.legal-nav {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 48px;
}

.legal-nav p {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-nav ul li a {
    font-size: .9rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.legal-nav ul li a:hover { color: var(--primary); }

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content h4 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 18px;
    margin-bottom: 6px;
}

.legal-content p {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: .85em;
}

.legal-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1em;
}

.legal-content ul li {
    padding: 5px 0 5px 18px;
    position: relative;
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.65;
}

.legal-content ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--teal);
}

@media (max-width: 600px) {
    .legal-content { padding: 36px 20px 60px; }
    .legal-nav ul { gap: 14px; }
}
