.faq_list {
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    padding: 0 30px;
}

.faq_item .item_head {
    padding: 27px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq_item:not(:last-child) .item_head {
    border-bottom: 1px solid #E1E1E1;
}

.faq_item .item_head::after {
    content: "";
    display: block;
    width: 24px;
    aspect-ratio: 1/1;
    background: url("/static/app_www/base/img/icon_arrow_down_g.png") center / cover no-repeat;
    flex-shrink: 0;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.faq_item .item_head .item_title {
    display: flex;
    align-items: flex-start;
    gap: 34px;
    font-size: 18px;
}

.faq_item .item_head .item_title::before {
    content: "Q";
    display: block;
    font-size: 23px;
    font-weight: 700;
    margin-top: -6px;
}

.faq_item .item_head.active {
    border-bottom: none;
    padding: 23px 20px;
    margin-bottom: 20px;
}

.faq_item .item_head.active::after {
    transform: rotate(180deg);
}

.faq_item .item_body {
    padding: 32px 20px;
    margin-bottom: 20px;
    background-color: #F8F8F8;
    border-radius: 8px;
    display: none;
}

.faq_item .item_body .content_box {
    display: flex;
    gap: 34px;
}

.faq_item .item_body .color_gr {
    color: var(--main-color);
    font-size: 23px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq_item .item_content {
    flex-grow: 1;
    font-size: 18px;
}

@media screen and (max-width:1023px) {
    .faq_list {
        padding: 0 20px;
    }

    .faq_item .item_head {
        padding: 20px 0;
    }

    .faq_item .item_head.active {
        padding: 18px 0;
        margin-bottom: 10px;
    }

    .faq_item .item_body {
        padding: 20px 16px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:767px) {
    .faq_list {
        padding: 0 12px;
    }

    .faq_item .item_head.active {
        margin-bottom: 0;
    }

    .faq_item .item_head .item_title {
        gap: 16px;
        font-size: 16px;
    }

    .faq_item .item_head .item_title::before {
        font-size: 20px;
        margin-top: -4px;
    }

    .faq_item .item_body {
        padding: 16px 12px;
    }

    .faq_item .item_body .content_box {
        gap: 16px;
    }

    .faq_item .item_body .color_gr {
        font-size: 18px;
    }

    .faq_item .item_content {
        font-size: 14px;
    }
}