﻿html, body {
    overflow-x: hidden;
}

.policy-page {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: #111827;
}

.policy-hero {
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.10), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.policy-kicker {
    display: inline-block;
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.policy-lead {
    max-width: 900px;
    color: #64748b;
    line-height: 1.9;
}

.policy-card,
.policy-summary-card,
.policy-section-card,
.policy-contact-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.policy-card__header {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: radial-gradient(circle at 95% 10%, rgba(13, 110, 253, 0.10), transparent 28%), #ffffff;
}

.policy-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0d6efd;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 8px 14px;
}

    .policy-status::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: #0d6efd;
    }

.policy-list {
    margin: 0;
}

.policy-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 22px 32px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

    .policy-row:last-child {
        border-bottom: 0;
    }

    .policy-row dt {
        color: #334155;
        font-weight: 800;
        margin: 0;
    }

    .policy-row dd {
        color: #111827;
        margin: 0;
        line-height: 1.8;
    }

.policy-summary-card .card-body,
.policy-section-card .card-body,
.policy-contact-card .card-body {
    padding: 1.75rem;
}

.policy-summary-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.policy-summary-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.policy-summary-text {
    color: #64748b;
    line-height: 1.85;
    margin: 0;
}

.policy-section-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.policy-section-card p,
.policy-section-card li {
    color: #475569;
    line-height: 1.95;
}

.policy-section-card ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.policy-section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

    .policy-section-heading h2 {
        margin: 0 !important;
        line-height: 1.35;
        flex: 1 1 auto;
    }

.policy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eaf2ff;
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
}

.policy-note {
    background: #f8fbff;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    padding: 14px 18px;
    color: #64748b;
    line-height: 1.85;
    font-size: 0.95rem;
}

.policy-contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

    .policy-contact-card a {
        text-decoration: none;
    }

.policy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.40s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

.hover-lift {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
    will-change: transform, box-shadow;
}

.policy-summary-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

    .policy-summary-heading .policy-summary-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .policy-summary-heading .policy-summary-title {
        margin-bottom: 0;
    }

@media (hover: hover) and (pointer: fine) {
    .hover-lift {
        cursor: pointer;
    }

        .hover-lift:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(15, 23, 42, 0.10) !important;
        }
}

@media (max-width: 991.98px) {
    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .policy-summary-card .card-body,
    .policy-section-card .card-body,
    .policy-contact-card .card-body {
        padding: 1.5rem;
    }

    .policy-card__header {
        padding: 24px 24px;
    }

    .policy-row {
        grid-template-columns: 180px 1fr;
        gap: 18px;
        padding: 20px 24px;
    }

    .policy-section-heading h2 {
        margin: 0 !important;
        line-height: 1.35;
    }
}

@media (max-width: 767.98px) {
    .policy-card,
    .policy-summary-card,
    .policy-section-card,
    .policy-contact-card {
        border-radius: 22px;
    }

        .policy-summary-card .card-body,
        .policy-section-card .card-body,
        .policy-contact-card .card-body {
            padding: 1.25rem;
        }

    .policy-card__header {
        padding: 24px 20px;
    }

    .policy-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px;
    }

        .policy-row dt {
            font-size: 0.9rem;
        }

        .policy-row dd {
            font-size: 0.95rem;
        }

    .policy-section-card h2 {
        font-size: 1.15rem;
    }

    .policy-summary-title {
        font-size: 1rem;
    }

    .policy-actions {
        flex-direction: column;
    }

        .policy-actions .btn {
            width: 100%;
        }

    .policy-section-heading {
        gap: 10px;
        align-items: center;
    }

    .policy-number {
        width: 38px;
        min-width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .policy-section-heading h2 {
        font-size: 1.1rem;
        line-height: 1.4;
        margin: 0 !important;
    }

    .reveal-on-scroll {
        transform: translateY(24px);
    }
}
