/* Legal Pages Styles */
.legal-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-content h1 {
    color: #6366f1;
    font-weight: 800;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.legal-section h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-section strong {
    color: #f1f5f9;
    font-weight: 600;
}

.legal-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    margin-top: 2rem;
}

.legal-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.9rem;
    }
}