/* Legal Pages Styles */
.legal-container {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    background: var(--space-dark);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(26, 40, 71, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00E5FF, #005BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.legal-content section {
    margin-bottom: 2.5rem;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--space-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #00E5FF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
}

