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

.legal-page {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
}

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

.legal-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: var(--text-tertiary);
    font-size: 0.9375rem;
}

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

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--glass-border);
}

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

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid var(--primary);
}

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

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-weight: bold;
}

.legal-section a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.contact-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

/* Active state for nav links */
.nav-links a.active {
    color: var(--primary-light);
}

.nav-links a.active::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 120px;
    }

    .legal-section {
        margin-bottom: 36px;
        padding-bottom: 24px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}