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

        :root {
            --primary: #0f1115;
            --primary-soft: #151a20;
            --accent: #e8e2d8;
            --text: #ffffff;
            --text-muted: #a9adb3;
            --glass: rgba(255, 255, 255, 0.035);
            --glass-border: rgba(255, 255, 255, 0.06);
            --font-main: 'Inter', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            font-family: var(--font-main);
        }

        body {
            font-family: var(--font-main);
            background:
                radial-gradient(circle at 12% -12%, rgba(232, 226, 216, 0.08), transparent 52%),
                radial-gradient(circle at 92% -18%, rgba(232, 226, 216, 0.05), transparent 48%),
                var(--primary);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        input,
        button,
        textarea,
        select {
            font-family: inherit;
        }

        /* ===== LEGAL HERO ===== */
        .legal-hero {
            position: relative;
            width: 100%;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, var(--primary) 100%);
            padding: 6rem 5% 4rem;
            text-align: center;
        }

        .legal-hero-content {
            max-width: 700px;
        }

        .legal-hero h1 {
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }

        .legal-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        .legal-badge {
            display: inline-block;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 0.4rem 1rem;
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        /* ===== LEGAL CONTAINER ===== */
        .legal-container {
            max-width: 950px;
            margin: 0 auto;
            padding: 0 5% 7rem;
        }

        /* ===== TABLE OF CONTENTS ===== */
        .toc {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            justify-content: center;
        }

        .toc a {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: transparent;
            color: var(--text);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .toc a:hover {
            background: var(--glass);
            border-color: rgba(255, 255, 255, 0.1);
        }

        /* ===== LEGAL CARD ===== */
        .legal-card {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
        }

        .legal-section {
            margin-bottom: 2.8rem;
            padding-bottom: 2.8rem;
            border-bottom: 1px solid var(--glass-border);
        }

        .legal-section:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .legal-section h2 {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .legal-section h3 {
            font-size: 1rem;
            font-weight: 500;
            margin: 1.5rem 0 0.75rem;
            color: var(--text);
        }

        .legal-section p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 0.75rem;
            line-height: 1.7;
        }

        .legal-section ul {
            list-style: none;
            margin: 0.75rem 0;
            padding-left: 0;
        }

        .legal-section ul li {
            position: relative;
            padding-left: 1.25rem;
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .legal-section ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.65em;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        .legal-section a {
            color: var(--accent);
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .legal-section a:hover {
            opacity: 0.7;
        }



        /* ===== FOOTER ===== */
        footer {
            background: #0d1014;
            padding: 3rem 5% 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .footer-section h4 {
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.6rem;
        }

        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: opacity 0.3s ease;
        }

        .footer-section ul li a:hover {
            opacity: 0.6;
        }

        .footer-section ul li::before {
            display: none;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .legal-hero {
                min-height: 280px;
                padding: 5rem 5% 3rem;
            }

            .legal-hero h1 {
                font-size: 1.8rem;
            }

            .legal-hero p {
                font-size: 0.95rem;
            }

            .toc {
                gap: 0.4rem;
            }

            .toc a {
                padding: 0.4rem 0.75rem;
                font-size: 0.7rem;
            }

            .legal-card {
                padding: 1.75rem;
                border-radius: 16px;
            }

            .legal-section h2 {
                font-size: 1.1rem;
            }

            .legal-section p,
            .legal-section ul li {
                font-size: 0.88rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

        }

