.faq-section {
    background: #060e1a;
}

.faq-section .faq-title {
    color: var(--white);
    margin-bottom: 60px;
}

.faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .faq-item {
    background: #0d1b2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: #0d1b2e;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 24px;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #112338;
    color: var(--white);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    background: #112338;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
}

.faq-section .faq-bottom {
    margin-top: 70px;
}

.faq-section .faq-bottom p {
    color: #9ca3af;
    margin-bottom: 24px;
}

.faq-section .faq-btn {
    display: inline-block;
    border-radius: 999px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {


    .faq-section .faq-title {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {

    .faq-section .faq-title {
        margin-bottom: 40px;
    }

    .faq-section .accordion-button {
        padding: 20px;
        font-size: 15px;
    }

    .faq-section .accordion-body {
        padding: 20px;
        font-size: 14px;
    }

    .faq-section .faq-bottom {
        margin-top: 50px;
    }
}

@media (max-width: 567px) {

    .faq-section .faq-btn {
        width: 100%;
        text-align: center;
    }
}