.faq-accordion {
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 10px;
    background-color: white;
}

.faq-answer {
    padding: 22px 68px;
    display: none;
    color: #1A202C;
    font-family: "proxima-nova", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
}
.faq-item.active .faq-question {
    background-color: #fe5e03;
    color: white;
    font-weight: 600;
}

.faq-item.active .faq-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    background: white;
    fill: #fe5e03;
    display: flex;
    align-items: center;
    justify-content: center;
}




.faq-question {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 500;
    font-family: "halcom", Sans-serif;
    letter-spacing: 0.07px;
    color: #1A202C;
}

.faq-icon {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    background: #fe5e03;
    fill: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-icon svg {
    width: 19px;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}


.faq-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-family: "halcom", Sans-serif;
}

a.faq-link {
    background: #fe5e03;
    font-size: 13px;
    padding: 0px 27px;
    color: white;
    font-weight: 500;
}


@media (max-width: 767px) {


    .faq-answer {
        padding: 15px 20px;
        display: none;
        color: #1A202C;
        font-family: "proxima-nova", Sans-serif;
        font-size: 16px;
        font-weight: 300;
        line-height: 28px;
    }
    .faq-question-text {
        font-size: 15px;
        line-height: 22px;
    }


}