    .legal-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    .legal-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .legal-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--bs-dark);
        margin-bottom: 1rem;
    }

    .legal-header .last-updated {
        color: var(--bs-secondary);
        font-size: 0.95rem;
    }

    .legal-toc {
        background: #f8fafc;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .legal-toc h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--bs-dark);
    }

    .legal-toc ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

    .legal-toc a {
        color: #6366f1;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .legal-toc a:hover {
        text-decoration: underline;
    }

    .legal-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e2e8f0;
    }

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

    .legal-section h2 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--bs-dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .legal-section h2 i {
        color: #6366f1;
        font-size: 1.2rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bs-dark);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .legal-section p, .legal-section li {
        color: var(--bs-secondary);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .legal-section ul {
        padding-left: 1.5rem;
    }

    .legal-section ul li {
        margin-bottom: 0.5rem;
    }

    .data-table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    .data-table th, .data-table td {
        padding: 0.75rem 1rem;
        text-align: left;
        border: 1px solid #e2e8f0;
    }

    .data-table th {
        background: #f8fafc;
        font-weight: 600;
        color: var(--bs-dark);
    }

    .data-table td {
        color: var(--bs-secondary);
    }

    .highlight-box {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
        border-left: 4px solid #6366f1;
        padding: 1rem 1.5rem;
        border-radius: 0 8px 8px 0;
        margin: 1.5rem 0;
    }

    .highlight-box p {
        margin: 0;
        color: var(--bs-dark);
    }

    .contact-card {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .contact-card h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .contact-card p {
        margin-bottom: 0.5rem;
    }

    .contact-card a {
        color: #6366f1;
    }

    /* Dark mode */
    [data-bs-theme="dark"] .legal-header h1,
    [data-bs-theme="dark"] .legal-section h2,
    [data-bs-theme="dark"] .legal-section h3,
    [data-bs-theme="dark"] .legal-toc h3 {
        color: #f1f5f9;
    }

    [data-bs-theme="dark"] .legal-toc,
    [data-bs-theme="dark"] .data-table th {
        background: #1e293b;
    }

    [data-bs-theme="dark"] .data-table th,
    [data-bs-theme="dark"] .data-table td {
        border-color: #334155;
    }

    [data-bs-theme="dark"] .highlight-box {
        background: rgba(99, 102, 241, 0.15);
    }

    [data-bs-theme="dark"] .contact-card {
        background: #1e293b;
        border-color: #334155;
    }