.faq-wrapper {
    padding: 100px 0 70px;
    background: #f8fafc;
}

.faq-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.faq-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 32px;
}

.faq-header h1 {
    color: #071946;
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 14px;
}

.faq-header p {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.faq-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 40px;
}

.faq-nav a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 999px;
    background: #eef2ff;
    color: #071946;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.faq-nav a:hover {
    background: #ff2f3d;
    color: #ffffff;
}

.faq-category {
    margin-bottom: 36px;
    scroll-margin-top: 120px;
}
.faq-category h2 {
    color: #071946;
    /* font-size: 26px; */
    font-weight: 400;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f7;
}

.faq-accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
}

.faq-question {
    width: 100%;
    border: 0;
    background: #ffffff;
    color: #071946;
    padding: 18px 54px 18px 20px;
    text-align: left;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
}
.faq-question2 {
    width: 100%;
    border: 0;
    background: #ffffff;
    color: #071946;
    padding: 18px 54px 18px 20px;
    text-align: left;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff2f3d;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 700;
}

.faq-accordion-item.active .faq-question::after {
    content: '−';
}


.faq-answer {
    display: none;
    padding: 20px 20px 70px 20px;
    color: #334155;
    line-height: 1.75;
    font-size: 16px;
}

.faq-accordion-item.active .faq-answer {
    display: block;
}

.faq-help-box {
    background: #071946;
    color: #ffffff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    margin-top: 30px;
}

.faq-help-box h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.faq-help-box p {
    color: #e2e8f0;
    margin-bottom: 18px;
}

.faq-help-box a {
    display: inline-block;
    background: #ff2f3d;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-wrapper {
        padding: 80px 0 45px;
    }

    .faq-card {
        padding: 22px;
    }

    .faq-header h1 {
        font-size: 28px;
    }

    .faq-category h2 {
        font-size: 22px;
    }

    .faq-question {
        padding: 16px 48px 16px 16px;
        font-size: 15px;
    }
}

nav {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 0px 0px rgb(0 0 0 / 0%);
    position: sticky;
    top: 0;
    z-index: 1000;
}