/* Legal Pages Styles */
.legal-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.legal-hero p {
    font-size: 1rem;
    color: var(--text-tertiary);
}

.legal-content {
    padding: 80px 0;
}

.legal-content .container {
    max-width: 800px;
}

.legal-card {
    padding: 48px;
}

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

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.legal-section strong {
    color: var(--primary-400);
}

.contact-list {
    list-style: none;
    margin-left: 0;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.contact-list li {
    margin-bottom: 12px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .legal-card {
        padding: 32px 24px;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
}
