.faq-title {
    font-size: 28px;
    line-height: 37px;
    font-weight: 500;
    margin-bottom: 17px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.faq-list {
    width: 100%;
}

.faq-item {
    position: relative;
    padding: 24px 17px;
    margin-bottom: 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    font-size: 21px;
    line-height: 28px;
    padding-right: 20px;
    margin-bottom: 0 !important;
}

.faq-answer{
    font-size: 14px;
    padding-right: 30px;
}

.faq-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 14px;;
}

@media (min-width: 992px) {
    .faq-title {
        font-size: 60px;
        line-height: 82px;
        margin-bottom: 45px;
    }

    .faq-wrapper {
        flex-direction: row;
        gap: 26px;
    }

    .faq-list {
        max-width: 1295px;
    }

    .faq-item {
        padding: 28px 24px;
        border-radius: 20px;
    }

    .faq-question {
        font-size: 30px;
        line-height: 45px;
        padding-right: 0px;
    }

    .faq-answer{
        font-size: 16px;
    }
}