:root {
        --red: #e53935;
        --black: #0d0d0d;
        --white: #ffffff;
        --gray: #f4f5f7;
        --border: #e5e7eb;
        --text-muted: #6b7280;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--gray);
        color: var(--black);
    }

    .hero {
        background: var(--black);
        padding: 80px 40px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: 'PRIVACY';
        position: absolute;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 200px;
        color: rgba(255, 255, 255, 0.03);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
        pointer-events: none;
    }

    .hero-tag {
        display: inline-block;
        background: var(--red);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 4px 14px;
        border-radius: 2px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(48px, 7vw, 84px);
        color: var(--white);
        line-height: 1;
        letter-spacing: 2px;
    }

    .hero h1 span {
        color: var(--red);
    }

    .hero p {
        color: rgba(255, 255, 255, 0.4);
        font-size: 13px;
        margin-top: 14px;
    }

    .layout {
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 24px;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 40px;
        align-items: start;
    }

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

    .toc {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px;
        position: sticky;
        top: 24px;
    }

    .toc h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--red);
        display: inline-block;
    }

    .toc ul {
        list-style: none;
    }

    .toc ul li {
        margin-bottom: 8px;
    }

    .toc ul li a {
        font-size: 13px;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.2s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .toc ul li a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--border);
        border-radius: 50%;
        flex-shrink: 0;
        transition: background 0.2s;
    }

    .toc ul li a:hover {
        color: var(--black);
    }

    .toc ul li a:hover::before {
        background: var(--red);
    }

    .content {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 48px;
    }

    @media (max-width: 480px) {
        .content {
            padding: 28px 20px;
        }
    }

    .section {
        margin-bottom: 44px;
    }

    .section:last-child {
        margin-bottom: 0;
    }

    .section-num {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        color: var(--red);
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .section h2 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border);
    }

    .section p {
        font-size: 15px;
        line-height: 1.8;
        color: #374151;
        margin-bottom: 12px;
    }

    .section ul {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .section ul li {
        font-size: 15px;
        line-height: 1.8;
        color: #374151;
        margin-bottom: 6px;
    }

    .highlight-box {
        background: #fff8f8;
        border-left: 3px solid var(--red);
        padding: 14px 18px;
        border-radius: 0 8px 8px 0;
        margin: 16px 0;
        font-size: 14px;
        color: #374151;
        line-height: 1.7;
    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        margin: 16px 0;
    }

    .data-table th {
        background: var(--black);
        color: #fff;
        padding: 10px 14px;
        text-align: left;
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .data-table td {
        padding: 10px 14px;
        border-bottom: 1px solid var(--border);
        color: #374151;
        vertical-align: top;
    }

    .data-table tr:last-child td {
        border-bottom: none;
    }

    .data-table tr:nth-child(even) td {
        background: var(--gray);
    }

    .updated {
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 32px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border);
    }