/* Legal pages (Privacy Policy, Terms of Service) */
.legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

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

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

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

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

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

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 6px;
}

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

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--accent-hover);
}

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

.legal-table {
    overflow-x: auto;
    margin: 20px 0;
}

.legal-table table {
    width: 100%;
    border-collapse: collapse;
}

.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.legal-table td:first-child {
    font-weight: 500;
    color: var(--text);
}
