.faq_bg_white{
    background-color: #FFF;
}
.faq_bg_blue{
    background: var(--blue-50, #F1F8FE);
}
.top_section .section_main{
    margin-top: 96px;
}

.section_main .top_title > h1{
    color: var(--blue-0, #0974E8);
    font-size: 48px;
}

@media screen and (max-width: 880px) {
    .top_section .section_main {
        margin-top: 49px;
    }
    .section_main .top_title > h1{
        font-size: 32px;
    }
}

.faq_cols{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 95%;
    max-width: 640px;
}
.faq_cols .faq_cols_item{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    align-items: center;
}
.faq_cols .faq_cols_item .faq_cols_item_title{
    display: flex;
    width: 100%;
    max-width: 576px;
}
.faq_cols .faq_cols_item .faq_cols_item_title span{
    color: var(--blue, #0974E8);
    font-size: 18px;
    line-height: normal;
}
.faq_cols .faq_cols_item .faq_cols_item_detail{
    display: flex;
    width: 100%;
    max-width: 576px;
}
.faq_cols .faq_cols_item .faq_cols_item_detail span{
    color: var(--black-0, #252729);
    font-size: 16px;
    font-weight: 400;
    line-height: 200%; /* 32px */
}

@media screen and (max-width: 880px) {
    .faq_cols .faq_cols_item {
        gap: 16px;
        padding: 24px;
    }

    .faq_cols .faq_cols_item .faq_cols_item_detail span {
        font-size: 14px;
    }

    .faq_cols {
        width: 87.202%;
        gap: 16px;
    }

    .section_main {
        gap: 32px;
    }
}