.ask-suport {
    width: 124.8rem;
    height: auto;
    padding: 6.4rem;
    margin: 0 auto 9.6rem auto;
    display: flex;
    flex-direction: row;
    gap: 2.4rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0.1rem solid rgba(2, 123, 255, 0.1);
    border-radius: 2.4rem;
    box-shadow: 0 8px 32px rgba(2, 123, 255, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ask-suport-packages {
    width: 61.1rem;
    height: 15.8rem;
    padding-right: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ask-suport-packages h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #21164C;
    line-height: 4.8rem;
}

.ask-suport-packages p {
    color: #475467;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.8rem;
}

.list-ask-suport {
    width: 100%;
    max-width: 65rem;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
}

/* FAQ Accordion - Standardized with Index */
.faq-item {
    border-bottom: 1px solid #EAECF0;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #EAECF0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.4rem 0;
    cursor: pointer;
    gap: 1.6rem;
    transition: all 0.3s ease;
}

.faq-question p {
    flex: 1;
    color: #475467;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.8rem;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question p {
    color: #027BFF;
}

.faq-item.active .faq-question p {
    color: #027BFF;
    font-weight: 600;
}

/* Icons Toggling */
.faq-icon-minus,
.faq-icon-plus {
    font-size: 2.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 2.4rem;
    text-align: center;
}

.faq-icon-plus {
    color: #98A2B3;
    display: block;
}

.faq-icon-minus {
    display: none !important; /* Force hide by default */
    color: #027BFF;
}

.faq-item.active .faq-icon-minus {
    display: block !important;
}

.faq-item.active .faq-icon-plus {
    display: none !important;
}

/* Answer/Detail */
.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: 
        max-height 0.5s cubic-bezier(0, 1, 0, 1),
        opacity 0.4s ease,
        transform 0.4s ease;
    will-change: opacity, transform, max-height;
}

.faq-item.active .faq-answer {
    max-height: 100rem;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 3.2rem;
    transition: 
        max-height 1s ease-in-out,
        opacity 0.5s ease,
        transform 0.5s ease;
}

.faq-answer span {
    display: block;
    font-size: 1.7rem;
    color: #475467;
    line-height: 1.7;
    font-weight: 400;
}

/* Mobile */
@media (max-width:768px) {
    .ask-suport {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 3.2rem 1.6rem;
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .ask-suport-packages {
        width: 100%;
        height: auto;
        padding-right: 0rem;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .ask-suport-packages h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .ask-suport-packages p {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .list-ask-suport {
        width: 100%;
        padding: 0 2rem;
    }

    .faq-question {
        padding: 1.6rem 0;
    }

    .faq-question p {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .faq-icon-minus,
    .faq-icon-plus {
        font-size: 1.8rem;
        width: 2rem;
    }

    .faq-answer span {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}