.faq-container-4e0f3b78 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-item-4e0f3b78 {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    overflow: hidden;
}

.faq-header-4e0f3b78 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-header-4e0f3b78 span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
}

.faq-icon-4e0f3b78 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-icon-4e0f3b78 svg {
    width: 12px;
    height: 8px;
}

.faq-item-4e0f3b78.is-active .faq-icon-4e0f3b78 {
    transform: rotate(180deg);
}

.faq-body-4e0f3b78 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item-4e0f3b78.is-active .faq-body-4e0f3b78 {
    opacity: 1;
}

.faq-content-inner-4e0f3b78 {
    padding: 0 32px 24px 32px;
}