/* Legal Pages Styles */

.legal-content {
    padding: 120px 0 60px;
    background: var(--background);
    min-height: 100vh;
}

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

.legal-header h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 500;
}

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

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

.legal-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(73, 71, 196, 0.2);
}

.legal-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.0625rem;
}

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

.legal-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1.0625rem;
}

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

.contact-info-box {
    background: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box p {
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Make logo clickable on legal pages */
.logo {
    text-decoration: none;
    color: inherit;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 20px 40px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }
    
    .legal-section ul {
        padding-left: 20px;
    }
}