/* --- Accessibility Statement 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.95rem;
    /* Slightly larger for a11y */
    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.3rem;
    /* Larger font */
    max-width: 750px;
    margin: 0 auto;
    opacity: 1;
    /* Full opacity for better contrast */
    line-height: 1.6;
    color: #f1f5f9;
    /* High contrast white */
}

/* Base Sections */
.block-layout {
    padding: 5rem 0;
}

.block-layout.alt-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.access-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    /* Larger base font size for readability */
    line-height: 1.8;
}

/* Sections */
.access-section {
    margin-bottom: 4rem;
}

.access-section h2 {
    color: #0f172a;
    /* Very dark slate for contrast */
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.access-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #0066FF;
    border-radius: 2px;
}

.access-section p {
    color: #334155;
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    /* Extra padding */
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* slightly stronger shadow */
    border: 2px solid #e2e8f0;
    /* Thicker border for clarity */
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #0066FF;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* CTA Buttons */
.center-cta {
    text-align: center;
}

.center-cta h3 {
    font-size: 2.25rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-small {
    background: #0066FF;
    color: #fff;
    padding: 1rem 2.5rem;
    /* Larger touch target */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.btn-primary-small:hover {
    background: #004080;
}

.btn-secondary-small {
    background: #fff;
    color: #0066FF;
    padding: 1rem 2.5rem;
    /* Larger touch target */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #0066FF;
    /* High contrast border */
    transition: background 0.2s;
}

.btn-secondary-small:hover {
    background: #eff6ff;
}

/* 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;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive & High Contrast fixes */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-small,
    .btn-secondary-small {
        width: 100%;
        text-align: center;
    }
}