:root {
    --primary-navy: #0b2545;
    --secondary: rgb(237, 245, 251);
    --accent-orange: #f26522;
    --text-dark: #1d2939;
    --text-subtle: #475467;
    --badge-bg: #f2f4f7;
    --muted-foreground: #88a2b9;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
}
.faq-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(242, 101, 34, 0.12), transparent 32%),
        linear-gradient(135deg, #edf5fb 0%, #ffffff 55%, #f8fbff 100%);
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.8;
    z-index: 1;
}

.circle-one {
    width: 300px;
    height: 300px;
    background: rgba(242, 101, 34, 0.22);
    top: -90px;
    left: -90px;
}

.circle-two {
    width: 360px;
    height: 360px;
    background: rgba(11, 37, 69, 0.16);
    right: -120px;
    bottom: -120px;
}

.faq-badge {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 50px;
    background: rgba(242, 101, 34, 0.12);
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 25px;
}

.faq-heading {
    font-size: 60px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 18px;
    line-height: 1.1;
}

.faq-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-subtle);
    font-size: 18px;
    line-height: 1.8;
}

.faq-wrapper {
    margin-top: 70px;
    padding: 45px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 20px 55px rgba(11, 37, 69, 0.1);
}

.faq-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 22px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(11, 37, 69, 0.06);
    transition: 0.35s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(11, 37, 69, 0.1);
}

.faq-button {
    position: relative;
    padding: 24px 28px;
    background: #ffffff;
    color: var(--primary-navy);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    box-shadow: none;
    gap: 16px;
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-navy), #143d68);
    color: #ffffff;
    box-shadow: none;
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(242, 101, 34, 0.12);
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.faq-button:not(.collapsed) .faq-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.faq-body {
    padding: 0 28px 26px 86px;
    color: var(--text-subtle);
    font-size: 16px;
    line-height: 1.8;
}

.accordion-button::after {
    width: 22px;
    height: 22px;
    background-size: 22px;
    transition: 0.35s ease;
}

.faq-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-heading {
    animation: faqFadeDown 0.9s ease;
}

.faq-wrapper {
    animation: faqFadeUp 1s ease;
}

@keyframes faqFadeDown {
    from {
        opacity: 0;
        transform: translateY(-45px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes faqFadeUp {
    from {
        opacity: 0;
        transform: translateY(55px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .faq-heading {
        font-size: 48px;
    }

    .faq-wrapper {
        padding: 32px;
    }

    .faq-body {
        padding-left: 28px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 85px 15px;
    }

    .faq-heading {
        font-size: 36px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-wrapper {
        padding: 22px;
        margin-top: 50px;
        border-radius: 26px;
    }

    .faq-button {
        padding: 20px;
        font-size: 15px;
        align-items: flex-start;
    }

    .faq-icon {
        min-width: 38px;
        height: 38px;
    }

    .faq-body {
        padding: 0 20px 22px 20px;
        font-size: 15px;
    }
}