.faqs__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.faqs__content h2 {
    text-align: center;
}
.faqs__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item Styles */
.faq__item {
    display: grid;
    grid-template-columns: 1fr 32px;
    gap: 8px 24px;
    position: relative;
    padding: 24px 24px 16px;
    background-color: var(--gray_3);
    border-radius: 16px;
}
.faq-title {
    cursor: pointer;
    user-select: none;
}

/* Toggle icon styles */
.toggle-image {
    transition: transform 0.3s ease-in-out;
    width: 20px;
    height: auto;
}
.toggle-image.rotate {
    transform: rotate(-180deg);
}

/* FAQ Content Styles */
.faq-content {
    max-height: 0;
    overflow: hidden;
    color: var(--text_sec);
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    flex: 1 1 100%;
}
.faq-content.show {
    max-height: 5000px;
    opacity: 1;
}
.faq-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.faq-toggle img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
}
@media screen and (max-width: 756px) {
    .faqs__content {
        gap: 40px;
    }
    .faq__item h4 {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0px;
    }
}