.legal-section {
    padding: 160px 0 80px;
    min-height: 100vh;
}

.legal-header {
    margin-bottom: 48px;
}

.legal-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-muted);
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin: 40px 0 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 6px;
}

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

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-content a:hover {
    opacity: 0.8;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

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

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-table th {
    background: rgba(108, 92, 231, 0.1);
    color: var(--text);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.legal-table td {
    background: rgba(255, 255, 255, 0.02);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 120px 0 60px;
    }

    .legal-table {
        font-size: 13px;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
}
