/* Legal Pages Styles */

.legal-page {
    min-height: calc(100vh - 200px);
    padding: 8rem 0 4rem;
    background: #f8f9fa;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Legal Page Header */
.legal-page .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-page .nav-logo a {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page .nav-link {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-page .nav-link:hover {
    color: #667eea;
}

/* Legal Page Footer */
.legal-page .footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.legal-page .footer p {
    font-size: 1.4rem;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 3rem;
    }
    
    .legal-page h1 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .legal-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.8rem;
    }
    
    .legal-section h3 {
        font-size: 1.6rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 1.4rem;
    }
}