/* ========================================
   Legal Pages Styles
   ======================================== */

.legal-page {
    padding-top: 60px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.effective-date {
    font-size: 16px;
    color: var(--text-secondary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 120px;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-section ul {
    list-style-position: outside;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 8px;
}

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

.legal-section a {
    color: #667eea;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.legal-section a:hover {
    opacity: 0.7;
}

.contact-info {
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 16px;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.legal-footer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-header {
        padding: 60px 0 40px;
    }

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

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .legal-section ul {
        margin-left: 20px;
    }
}
