/* Legal Pages Styles */
.legal-page {
    margin-top: 80px;
    padding: 60px 0 80px;
    background: #f6f3e8;
    min-height: calc(100vh - 160px);
}

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

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.last-updated {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

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

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

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

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

.legal-section ul {
    margin: 16px 0 24px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section li:last-child {
    margin-bottom: 0;
}

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

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.contact-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0 60px;
    }
    
    .legal-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-content {
        padding: 0 20px;
    }
    
    .legal-section {
        margin-bottom: 36px;
        padding-bottom: 24px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
        margin: 20px 0 10px 0;
    }
    
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2.25rem;
    }
    
    .legal-section h2 {
        font-size: 1.375rem;
    }
    
    .legal-section ul {
        padding-left: 20px;
    }
    
    .contact-info {
        padding: 16px;
    }
}