.faq-section {
    font-family: 'Epilogue', sans-serif;
    padding: 0 20px;
    color: #1a2b33;
    background-color: #F0F0F0;
}

.faq-section .container {
    max-width: 992px;
    display: flex;
    justify-content: space-between;
    padding: 90px 0;
}

.faq_heading {
    max-width: 71px;
    width: 100%;
}

.faq_answer_questions {
    max-width: 685px;
    width: 100%;
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.faq-item {
    border-top: 1px solid #22333B;
    25px CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
}

.faq-question {
    background: none;
    border: none;
    padding: 35px 0;
    width: 100%;
    text-align: left;
    font-weight: 700;
    font-size: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1a2b33;
    box-shadow: none;
    font-family: 'Epilogue';
    line-height: 140%;
}

.toggle-icon {
    font-size: 20px;
    color: #FFA0D1;
    transition: transform 0.2s ease;
}

.faq-answer {
    display: none;
    font-family: Epilogue;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    vertical-align: middle;
    color: #22333B;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    opacity: 0;
    padding-bottom: 0;

}

.faq-item.open .faq-answer {
    display: block;
    padding-bottom: 25px;
    max-height: 500px;
    opacity: 1;
}

.faq-item.open .toggle-icon {
    content: '−';
}

.faq-question:hover {
    color: #22333B;
    background: unset;
    box-shadow: unset;
}

.faq-question:focus {
    color: #22333B;
    background: unset;
    box-shadow: unset;
}

@media (max-width: 768px) {
    .faq-section .container {
        max-width: 992px;
        display: flex;
        justify-content: center;
        padding: 45px 0;
        flex-direction: column;
        align-items: center;
    }

    .faq_heading {
        max-width: fit-content;
        width: 100%;
    }

    .faq_answer_questions {
        max-width: 100%;
        width: 100%;
    }

    .faq-item {
        border-top: 1px solid #22333B;
        padding: 30px 0;
    }

    .faq-question {
        padding: 0 0;
        font-size: 30px;
    }

    .faq-answer {
        font-size: 17px;
        line-height: 160%;
        padding-top: 20px;
    }
}