.support-section {
    background-color: var(--page-bg);
}

.support-inner {
    padding: 50px 0;
}

.support {
    row-gap: 30px;
}

.support-title {
    row-gap: 10px;
}

.support-title h2 {
    font-size: 1.8rem;
    font-weight: 500;
}

.support-title h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.support-item-wrapper {
    row-gap: 20px;
}

.support-item {
    transition: all ease 0.5s;
    padding: 20px;
    border-radius: 5px;
    background-color: var(--white-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.support-item-question h4 {
    font-size: 1rem;
    font-weight: 500;
}

/* .support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: var(--light-bg);
} */

.support-item-question p {
    color: var(--gray-color);
    height: 0;
    overflow: hidden;
    padding: 0 50px 0 20px;
    opacity: 0;
    transition: height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

.support-item-icon i {
    font-size: 24px;
}

.support-item-icon .up-arrow {
    display: none;
}

.active-support .support-item-question p {
    height: auto;
    opacity: 1;
    padding: 20px 50px 0 20px;
}

.active-support .support-item-icon .up-arrow {
    display: block;
}

.active-support .support-item-icon .down-arrow {
    display: none;
}

@media only screen and (max-width: 767px) {
    .support-inner {
        padding: 30px 0;
    }

    .support-title {
        row-gap: 5px;
    }

    .support-title h2 {
        font-size: 1.4rem;
        text-align: center;
    }

    .support-title h4 {
        font-size: 1rem;
        text-align: center;
        font-weight: 400;
    }

    .support-item-question {
        width: 90%;
    }

    .support-item-question p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
    }
    .active-support .support-item-question p {
        padding: 20px 10px;
    }
}