.faq-container-61849b47 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-container-61849b47 .faq-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-container-61849b47 .faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-container-61849b47 .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-container-61849b47 .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-container-61849b47 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-container-61849b47 .faq-answer-inner {
    padding: 0 24px 20px 24px;
}