/* ==================== LEGAL PAGES.CSS ==================== */

.legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    min-height: 100vh;
    margin-top: 70px;
}

.legal-header {
    text-align: center;
    margin-bottom: 80px;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
}

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

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(31, 182, 232, 0.1);
    border: 1px solid rgba(31, 182, 232, 0.1);
}

.legal-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease forwards;
}

.legal-section:nth-child(1) { animation-delay: 0.1s; }
.legal-section:nth-child(2) { animation-delay: 0.2s; }
.legal-section:nth-child(3) { animation-delay: 0.3s; }
.legal-section:nth-child(4) { animation-delay: 0.4s; }
.legal-section:nth-child(5) { animation-delay: 0.5s; }
.legal-section:nth-child(6) { animation-delay: 0.6s; }
.legal-section:nth-child(7) { animation-delay: 0.7s; }
.legal-section:nth-child(8) { animation-delay: 0.8s; }
.legal-section:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(31, 182, 232, 0.2);
}

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

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.legal-section ul li {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.legal-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

.legal-section ul li strong {
    color: var(--text-dark);
    font-weight: 700;
}

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

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-content {
        padding: 40px 30px;
    }

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

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 80px 0 50px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-content {
        padding: 25px 20px;
    }

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

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 0.85rem;
    }
}