
.faq-section {
    background-color: #171E1B;
    padding-top: 139px;
    padding-bottom: 163px;
    display: flex;
    justify-content: center;

}

@media (max-width: 1050px) {
    .faq-section {
        padding-top: 78px;
        padding-bottom: 95px;
    }
}

.faq-section-container {
    max-width: 1217px;
    width: 100%;

    .faq-section-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 44px;
        color: #fff;


        mark {
            background: linear-gradient(180deg, #16FF4A 0%, #16FF4A 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    @media (max-width: 1050px) {
        .faq-section-title {
            font-size: 24px;
            line-height: 36px;
            text-align: center;
        }
    }
}

@media (max-width: 1220px) {
    .faq-section-container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.faq-section-list {
    list-style: none;
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 31px;
}

@media (max-width: 500px) {
    .faq-section-list {
        gap: 16px;
        margin-top: 49px;
    }
}

@media (max-width: 1050px) {
    .faq-section-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.faq-section-item {
    background-color: #212A27;
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s;
    position: relative;
    height: min-content;
    min-height: 124px;

    .faq-section-item-title-wrapper {
        display: flex;
        justify-content: space-between;

        .faq-section-item-title {
            font-size: 22px;
            font-weight: 600;
            line-height: 27px;
            color: #fff;
            max-width: 417px;
            cursor: pointer;
        }

        .faq-section-item-button {
            background-color: transparent;
            border: none;
            cursor: pointer;
        }

        .faq-section-item-button-icon {
            transition: transform 0.3s ease-in-out;
        }

        .faq-section-item-button-icon-rotate {
            transform: rotate(180deg);
        }
    }

    .active {
        .faq-section-item-button-icon {
            transform: rotate(180deg);
        }
    }


    .faq-section-item-question-wrapper {
        max-height: 0;
        transition:  0.3s ;
        overflow: hidden;
        transition: max-height 0.2s ease-out;

        .faq-section-item-question {
            font-size: 18px;
            font-weight: 400;
            line-height: 22px;
            color: #fff;
        }
    }
}

@media (max-width: 500px) {

    .faq-section-item {
        min-height: 34px;
    }

    .faq-section-item .faq-section-item-title-wrapper .faq-section-item-title {
        font-size: 16px;
        line-height: 22px;
    }

    .faq-section-item .faq-section-item-button {
        display: flex;
        padding-top: 5px;
    }
}