/* ================= LEGAL PAGES ================= */

.legal-page {
    padding: 120px 24px;
    background: #000;
}

.legal-container {
    max-width: 900px;
    margin: auto;
}

.legal-container h1 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    margin-bottom: 24px;
}

.legal-container p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Animations */
.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide {
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #fff;
}












/* ================= POLICY PAGES ================= */

.policy-hero {
    padding: 140px 24px 80px;
    text-align: center;
    background: radial-gradient(circle at top, #0b1a0b, #000);
}

.policy-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    color: #8fbf2f;
    margin-bottom: 10px;
}

.policy-meta {
    color: #aaa;
    font-size: 14px;
}

.policy-meta span {
    margin: 0 8px;
    color: #6b8e23;
}

/* Content */
.policy-content {
    max-width: 900px;
    margin: auto;
    padding: 60px 24px 120px;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 14px;
}

.policy-section h2 span {
    color: #6b8e23;
    margin-right: 8px;
}

.policy-section p,
.policy-section li {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
}

.policy-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.policy-section li {
    margin-bottom: 8px;
}

/* Contact Highlight */
.policy-contact {
    margin-top: 12px;
    color: #8fbf2f;
    font-size: 15px;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-up:nth-child(2) { animation-delay: 0.1s; }
.animate-up:nth-child(3) { animation-delay: 0.2s; }
.animate-up:nth-child(4) { animation-delay: 0.3s; }
.animate-up:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 32px;
    }
}
