/* --- Terms & Conditions Styles --- */

/* Page Hero - Global Standard */
.page-hero {
    background: radial-gradient(circle at center, #002699 0%, #000000 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e0f2fe;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Base Sections */
.block-layout {
    padding: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: var(--radius-lg);
    /* Assuming root variable */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.last-updated {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.legal-alert {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 0 8px 8px 0;
    color: #991b1b;
    font-size: 1.05rem;
    line-height: 1.5;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.legal-section p {
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    text-align: justify;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.6;
}

.legal-section ul li:last-child {
    margin-bottom: 0;
}

.legal-section ul li::before {
    content: "➢";
    position: absolute;
    left: 0;
    color: #0066FF;
    font-size: 0.8rem;
    top: 3px;
}

.contact-list a {
    color: #0066FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: #004080;
    text-decoration: underline;
}

/* CTA Section */
.center-cta {
    text-align: center;
}

.center-cta h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary-small {
    background: #fff;
    color: #0066FF;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
}

.btn-secondary-small:hover {
    background: #0066FF;
    color: #fff;
    border-color: #0066FF;
    transform: translateY(-2px);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.25rem;
    }

    .legal-content {
        padding: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}