.fc_frequently_asked_questions .tab_inner {
    box-sizing: border-box;
    background: #f9f9f9;
    padding: 0 30px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s, padding 0.4s;
}
.fc_frequently_asked_questions .tab_inner > .wp_content {
    overflow: hidden;
}

.fc_frequently_asked_questions .tab_inner > .wp_content p {
    color: #6f6f6f;
    font-size: 18px;
}

.fc_frequently_asked_questions .faq_item.active .tab_inner {
    grid-template-rows: 1fr;
    padding: 30px;
}

.fc_frequently_asked_questions .faqs_container_nested {
    display: flex;
    gap: var(--gap-xl);
    flex-wrap: wrap;
}
.fc_frequently_asked_questions .faqs_container_nested .faqs_container {
    width: calc(50% - var(--gap-xl) / 2);
}
.faqs_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faqs_container_nested h4 {
    color: var(--light-blue);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.fc_frequently_asked_questions .faq_item .title {
    cursor: pointer;
    margin: 0;
    background: #eee calc(100% - 20px) center / 18px 10px no-repeat
    url("data:image/svg+xml,%3Csvg width='18' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 10 0 1.2 1.3 0 9 7.5 16.7 0 18 1.2 9 10Z' fill='%23ffcc4c'/%3E%3C/svg%3E");
    border-radius: 5px;
    padding: 20px 45px 20px 20px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 1240px) {
    .fc_frequently_asked_questions .faqs_container_nested {
        gap: var(--gap-l);
    }
    .fc_frequently_asked_questions .faqs_container_nested .faqs_container {
        width: calc(50% - var(--gap-l) / 2);
    }
    .fc_frequently_asked_questions {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .fc_frequently_asked_questions {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .fc_frequently_asked_questions .faqs_container_nested {
        gap: 20px;
    }
    .fc_frequently_asked_questions {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .fc_frequently_asked_questions .faqs_container_nested {
        flex-direction: column;
    }
    .fc_frequently_asked_questions .faqs_container_nested .faqs_container {
        width: 100%;
    }
}