.legal-hero {
            padding: 8rem 0 4rem;
            background: black;
        }

        .legal-hero::before {

            position: absolute;
            top: -20%;
            right: -8%;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .legal-hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .legal-hero-sub {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 650px;
            position: relative;
            z-index: 1;
        }

        .legal-updated {
            font-size: 0.8rem;
            font-family: 'JetBrains Mono', monospace;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .legal-content {
            padding: 5rem 0 7rem;
            background: #fff;
        }

        .legal-content-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .legal-toc {
            background: #f8f9fa;
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 3rem;
        }

        .legal-toc h3 {
            font-size: 0.85rem;
            font-family: 'JetBrains Mono', monospace;
            color: var(--accent-orange);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1.2rem;
        }

        .legal-toc ol {
            list-style: none;
            padding: 0;
            counter-reset: toc-counter;
        }

        .legal-toc li {
            counter-increment: toc-counter;
            margin-bottom: 0.5rem;
        }

        .legal-toc a {
            color: #555;
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            transition: color 0.2s;
        }

        .legal-toc a::before {
            content: counter(toc-counter) ".";
            font-weight: 600;
            color: var(--primary-blue);
            min-width: 1.5rem;
        }

        .legal-toc a:hover {
            color: var(--primary-blue);
        }

        .legal-section {
            margin-bottom: 3.5rem;
            scroll-margin-top: 100px;
        }

        .legal-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0a0f1e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e8e8e8;
        }

        .legal-section h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin: 2rem 0 0.8rem;
        }

        .legal-section p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.75;
            margin-bottom: 1.2rem;
        }

        .legal-section ul,
        .legal-section ol {
            margin: 1rem 0 1.5rem 1.5rem;
            color: #555;
            line-height: 1.75;
        }

        .legal-section li {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .legal-highlight {
            background: rgba(74, 144, 226, 0.06);
            border-left: 3px solid var(--primary-blue);
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .legal-highlight p {
            margin: 0;
            font-size: 0.92rem;
            color: #333;
        }

        .legal-warning {
            background: #fff5f5;
            border-left: 3px solid #e05a5a;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .legal-warning p {
            margin: 0;
            font-size: 0.92rem;
            color: #333;
        }

        .principle-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            .principle-grid {
                grid-template-columns: 1fr;
            }
        }

        .principle-card {
            background: #f8f9fa;
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            padding: 1.5rem;
        }

        .principle-card h4 {
            font-size: 0.9rem;
            font-family: 'JetBrains Mono', monospace;
            color: var(--primary-blue);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 0.75rem;
        }

        .principle-card p {
            font-size: 0.88rem;
            color: #555;
            line-height: 1.65;
            margin: 0;
        }

        .legal-contact {
            background: #f8f9fa;
            border: 1px solid #e8e8e8;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
        }

        .legal-contact h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .legal-contact p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .legal-contact a {
            color: var(--primary-blue);
            text-decoration: none;
            border-bottom: 1px solid rgba(74, 144, 226, 0.3);
            transition: border-color 0.2s;
        }

        .legal-contact a:hover {
            border-color: var(--primary-blue);
        }

        @media (max-width: 768px) {
            .legal-hero h1 {
                font-size: 2rem;
            }
        }
