/* Legal Pages Styles (Privacy Policy, Terms of Service) */

.legal-content {
    padding: 140px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 12px;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 14px;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: var(--text-primary);
}

/* Highlight Box */
.highlight-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 16px 0;
}

.highlight-box h3 {
    color: #0369a1;
    margin-bottom: 12px;
}

.highlight-box p,
.highlight-box li {
    color: #0c4a6e;
}

.highlight-box ul {
    margin-bottom: 0;
}

.highlight-box.warning {
    background: #fef3c7;
    border-color: #fcd34d;
}

.highlight-box.warning h3 {
    color: #92400e;
}

.highlight-box.warning p,
.highlight-box.warning li {
    color: #78350f;
}

/* Contact Info */
.contact-info {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }

    .legal-body {
        padding: 32px 24px;
    }

    .highlight-box {
        padding: 20px;
    }
}
