.section_hero {
    height: 320px;
    text-align: center;
    background: url(../images/webp/review-item-3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
}

.section_hero_content {
    background: #00000066;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: var(--grey-00);
    flex: auto;
}

.section_hero_title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
}

.section_hero_des {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
}

.section_support_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0px 0px 8px 0px #0014220a;
}

.section_support_item {
    height: 227px;
    padding: 32px;
    gap: 16px;
    display: grid;
    text-align: center;
    border-right: 1px solid var(--grey-400);
    border-bottom: 1px solid var(--grey-400);
}

.section_support_item:hover {
    background: linear-gradient(263.23deg, #fa687b -1.88%, #e91b33 99.22%);
    color: var(--grey-00);
}

.section_support_item:hover .support_item_des {
    color: var(--grey-00);
}

.support_item_icon {
    width: 64px;
    height: 64px;
    margin-inline: auto;
    border-radius: 999px;
    background-color: var(--grey-100);
    display: grid;
    place-items: center;
}

.support_item_icon svg {
    fill: var(--brand-primary);
    width: 32px;
    height: 32px;
}

.support_item_info {
    display: grid;
    gap: 8px;
}

.support_item_title {
    font-size: 24px;
    font-weight: 600;
}

.support_item_des {
    color: var(--grey-700);
}

.section_faqs {
    display: grid;
    gap: 48px;
    padding: 120px 285px 80px 285px;
}

.section_faqs_title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
}

.section_faqs_list {
    max-width: 872px;
    display: grid;
    gap: 12px;
    margin-inline: auto;
    cursor: pointer;
}

.section_faqs_item {
    padding: 16px 16px 16px 32px;
    border-radius: 32px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    line-height: 28px;
    border: 4px solid var(--grey-300);
}

.section_faqs_item_content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: break-spaces;
}

.section_faqs_item_title {
    font-weight: 600;
    font-size: 18px;
    display: grid;
    align-items: center;
}

.section_faqs_item_content ul {
    list-style: disc;
    margin-left: 16px;
}

.section_faqs_item_icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 99px;
    flex-shrink: 0;
    background-color: var(--grey-300);
    user-select: none;
}

.section_faqs_item_des {
    transform: scaleY(0);
    transform-origin: top;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease-in-out;
}

.section_faqs_item.open .section_faqs_item_des {
    transform: scaleY(1);
    max-height: unset;
    opacity: 1;
    margin-top: 6px;
}

.section_faqs_item.open .section_faqs_item_title {
    color: var(--brand-primary);
}

@media (width <=1024px) {
    .section_hero {
        height: 300px;
    }

    .section_hero_content {
        gap: 8px;
    }

    .section_hero_title {
        font-size: 32px;
        line-height: 40px;
    }

    .section_hero_des {
        font-size: 18px;
    }

    .section_support_item {
        height: 236px;
        gap: 12px;
    }

    .support_item_icon {
        width: 56px;
        height: 56px;
    }

    .support_item_icon svg {
        width: 28px;
        height: 28px;
    }

    .support_item_info {
        gap: 4px;
    }

    .support_item_title {
        font-size: 20px;
    }

    .section_faqs {
        gap: 32px;
        padding: 32px 120px;
    }

    .section_faqs_title {
        font-size: 32px;
        line-height: 40px;
    }

    .section_faqs_item_title {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 640px) {
    .section_hero {
        height: 180px;
    }

    .section_hero_content {
        gap: 4px;
    }

    .section_hero_title {
        font-size: 20px;
        line-height: 28px;
    }

    .section_hero_des {
        font-size: 14px;
        line-height: 20px;
        text-wrap: balance;
    }

    .section_support_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .section_support_item {
        height: 100%;
        padding: 32px 8px;
        gap: 8px;
    }

    .support_item_des {
        overflow-wrap: break-word;
        overflow: hidden;
    }

    .support_item_info {
        gap: 4px;
    }

    .support_item_title {
        font-size: 16px;
    }

    .support_item_icon {
        width: 48px;
        height: 48px;
    }

    .support_item_icon svg {
        width: 24px;
        height: 24px;
    }

    .support_item_des {
        font-size: 14px;
    }

    .section_faqs {
        gap: 16px;
        padding: 24px 16px;
    }

    .section_faqs_title {
        font-size: 20px;
        line-height: 28px;
    }

    .section_faqs_item {
        padding: 12px 12px 12px 24px;
        border-radius: 24px;
        gap: 8px;
        border: 2px solid var(--grey-300);
        font-size: 14px;
        line-height: 20px;
    }

    .section_faqs_item_title {
        font-size: 14px;
        line-height: 20px;
    }

    .section_faqs_item_icon {
        width: 32px;
        height: 32px;
    }
}