/* -----  Faq Desktop Css Start ----- */
.faq-accordion {
    margin-top: 24px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    padding: 25px 0 20px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

/* .faq-item.active .faq-question{
    padding-bottom: 15px;
} */

.question-text {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    color: #000000;
    flex: 1;
   font-family: 'Inter Display', sans-serif;

}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /*background-color: #f5f5f5;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.faq-icon .icon-minus,
.faq-icon .icon-plus {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-icon .icon-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-icon .icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-item.active .faq-icon .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-item.active .faq-icon .icon-plus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding-right: 50px;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 25px;
    margin-bottom: 20px;
}
.more-button-wrapper {
    margin-top: 50px;
}

.btn-faq-more {
    display: inline-block;
    padding: 14px 24px;
    font-size: 15px;
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: 1px solid #000;
    color: #fff;
    background: #000;
}
.btn-faq-more:hover {
    border-color: #F9452D;
    color: #F9452D;
    background: #FFFFFF;
}
/* -----  Faq Desktop Css End ----- */

/* -----  Faq Tablet Css Start ----- */
@media (max-width: 1024px) {
    .faq-accordion {
        margin-top: 44px;
    }

    .btn-faq-more {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 20px;
    }

}
/* -----  Faq Tablet Css End ----- */

/* -----  Faq Tablet Css Start ----- */
@media (max-width: 768px) {
    .faq-accordion {
        margin-top: 30px;
    }

    .faq-question {
        padding: 20px 0 20px 0;
        gap: 10px;
    }
    /* .faq-item.active .faq-question{
        padding-bottom: 12px;
    } */

    .question-text {
        font-size: 16px;
        line-height: 22px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }


    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding-right: 26px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .faq-icon .icon-minus,
    .faq-icon .icon-plus {
        height: 14px;
        width: 14px;
    }

    .more-button-wrapper {
        margin-top: 30px;
    }


}
/* -----  Faq Tablet Css End ----- */