       body.policy-page .nav-menu {
        padding: 0 !important;
        margin: 0 !important;
}

@media (max-width: 768px) {
    body.policy-page .nav-menu {
        padding: 8px 0 !important;
        margin: 0 !important;
    }
}
       
        @media (max-width: 900px) {
            .toc {
                position: static !important;
                top: auto !important;
            }
        }
:root {
            /* Brand-aligned light theme */
            --bg: #f7f9fc;
            --surface: #ffffff;
            --surface-soft: #f1f5f9;
            --text: #0f172a;
            /* Slate-900 */
            --muted: #475569;
            /* Slate-600 */
            --border: #e2e8f0;
            /* Slate-200 */
            --primary: #2563eb;
            /* Blue-600 */
            --primary-ink: #1e40af;
            /* Blue-800 */
            --accent: #0ea5e9;
            /* Sky-500 */
            --success: #16a34a;
            --warn: #f59e0b;
            --danger: #ef4444;
            --radius: 14px;
            --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
            --maxw: 1200px;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            background: #f8f9fa;
            color: var(--text);
            font-family: 'Inter', sans-serif;
            max-width: 100vw;
        }

        a {
            color: var(--primary);
            text-decoration: none;
        }

        .toc a:hover {
            text-decoration: underline;
        }

        .wrap {
            max-width: var(--maxw);
            margin-inline: auto;
            padding: 24px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px
        }

        header.hero1 {
             background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: 1px solid var(--border);
            border-radius: clamp(12px, 2vw, var(--radius));
            padding: clamp(18px, 3vw, 28px);
            box-shadow: var(--shadow);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            letter-spacing: .35px;
            text-transform: uppercase;
            color: #ffffff;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            padding: 6px 10px;
            border-radius: 999px;
            font-weight: 700;
        }

        .gradient-text {
            font-size: clamp(22px, 4vw, 34px);
            margin: 12px 0 6px;
            line-height: 1.15;
            background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero1 p.sub {
            margin: 0;
            color: white;
            font-size: clamp(14px, 2.2vw, 16px);
        }

        .meta {
            margin-top: 12px;
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            color: white;
            font-size: 13px;
        }

        .meta .dot {
            width: 4px;
            height: 4px;
            background: #cbd5e1;
            border-radius: 50%;
            align-self: center
        }

        .layout {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr;
        }

        /* Sidebar nav (desktop) */
        .toc {
            position: sticky;
            top: 76px;
            border: 1px solid var(--border);
            background: var(--surface);
            border-radius: 12px;
            padding: 12px;
            box-shadow: var(--shadow);
            height: max-content;
        }

        .toc h3 {
            margin: 4px 8px 10px;
            font-size: 13px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: .4px
        }

        .toc a {
            display: block;
            padding: 10px 10px;
            border-radius: 10px;
            color: #0f172a;
            font-size: 14px;
            border: 1px solid transparent;
            text-decoration: none;
        }

        .toc a:hover {
            background: var(--surface-soft);
            border-color: #e5e7eb
        }

        .toc a.active {
            background: #e8efff;
            border-color: #c7d2fe;
            color: var(--primary-ink)
        }

        /* Content card */
        .card {
            border: 1px solid var(--border);
            background: #c0dcfb;
            border-radius: 12px;
            padding: clamp(16px, 2.2vw, 26px);
            box-shadow: var(--shadow);
        }

        .section {
            padding: 8px 0 18px;
            border-bottom: 1px dashed #e2e8f0;
            scroll-margin-top: 90px;
        }

        .section:last-child {
            border-bottom: none
        }

        h2 {
            font-size: clamp(18px, 2.8vw, 22px);
            margin: 6px 0 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0b1220;
        }

        p {
            margin: 8px 0;
            color: #1f2937;
            line-height: 1.7;
            font-size: 16px
        }

        .footer-bottom p{
            color: white;
        }

        footer ul{
            margin: 0;
        }

        ul,
        ol {
            margin: 8px 0 8px 18px;
            padding: 0
        }

        li {
            margin: 6px 0;
            color: #334155;
            line-height: 1.6
        }

        blockquote {
            margin: 12px 0;
            padding: 12px 14px;
            border-left: 3px solid var(--primary);
            background: #eff6ff;
            border-radius: 8px;
            color: #0b1220
        }

        .grid-two {
            display: grid;
            gap: 14px;
            grid-template-columns: 1fr;
            margin: 8px 0
        }

        .callout {
            border: 1px solid var(--border);
            background: var(--surface-soft);
            border-radius: 10px;
            padding: 12px
        }

        .pill {
            display: inline-block;
            border: 1px solid #dbeafe;
            background: #e8efff;
            color: #1e3a8a;
            padding: 2px 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 600
        }

        .list-check li::marker {
            content: "✔️ "
        }

        .list-cross li::marker {
            content: "⛔ "
        }

        .contact {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr;
            margin-top: 10px
        }

        .contact a {
            word-break: break-all
        }

        #update {
            color: #64748b;
            font-size: 13px;
            margin-top: 10px
        }

        /* Top mobile TOC */
        details.toc-mobile {
            border: 1px solid var(--border);
            background: var(--surface);
            border-radius: 10px;
            padding: 10px;
            box-shadow: var(--shadow);
        }

        details summary {
            list-style: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            color: #0f172a;
            font-weight: 600
        }

        details summary::-webkit-details-marker {
            display: none
        }

        .toc-links {
            display: grid;
            gap: 6px;
            margin-top: 10px
        }

        /* Responsive breakpoints */
        @media (min-width: 900px) {
            .layout {
                grid-template-columns: 260px 1fr
            }

            .grid-two {
                grid-template-columns: 1fr 1fr
            }

            .contact {
                grid-template-columns: 1fr 1fr
            }

            .wrap {
                gap: 28px
            }
        }

        @media (prefers-reduced-motion:no-preference) {
            html {
                scroll-behavior: smooth
            }

            .toc a {
                transition: background .2s, border-color .2s, color .2s
            }
        }

        /* Focus and selection */
        :focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, .2)
        }

        ::selection {
            background: rgba(37, 99, 235, 0.2)
        }

        /* Print styles */
        @media print {
            body {
                background: #fff;
                color: #111
            }

            .wrap {
                padding: 0
            }

            header.hero1,
            .toc,
            details.toc-mobile {
                box-shadow: none;
                background: #fff;
                border: none
            }

            .card {
                box-shadow: none;
                background: #fff;
                border: none
            }

            a {
                color: #111;
                text-decoration: underline
            }
        }