/* Legal Pages Styles */

.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: var(--gray);
    margin-bottom: 48px;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.legal-section h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: var(--primary-light);
}

.legal-section p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    color: var(--gray-light);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page .btn {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}
