.legal-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: slideUp 1s ease;
}

.legal-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: slideUp 1s ease 0.2s backwards;
}

.legal-content {
    padding: 6rem 0;
    background: var(--background);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    animation: fadeIn 1s ease;
}

.legal-text h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: var(--gold);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-text);
}

.legal-text ul {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.legal-text ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
    line-height: 1.6;
}

.legal-text ul li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.5rem;
    }

    .legal-hero p {
        font-size: 1.1rem;
    }

    .legal-text h2 {
        font-size: 1.75rem;
    }

    .legal-text {
        padding: 0 1rem;
    }
} 