.angie-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.angie-faq-item {
    overflow: hidden;
}

.angie-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #1a0f2e;
    color: #ffffff;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.angie-faq-item.active .angie-faq-question {
    background-color: #f5f5f5;
    color: #1a0f2e;
}

.angie-faq-title {
    flex: 1;
    margin-right: 15px;
}

.angie-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.angie-faq-icon svg {
    width: 100%;
    height: 100%;
}

.angie-faq-item.active .angie-faq-icon {
    transform: rotate(45deg);
}

.angie-faq-answer {
    display: none;
}

.angie-faq-item.active .angie-faq-answer {
    display: block;
}

.angie-faq-answer-inner {
    padding: 20px 25px 5px;
    color: #666;
    line-height: 1.6;
}

/* Fix for editor preview initialization */
.elementor-editor-active .angie-faq-item:not(.active) .angie-faq-answer {
    display: none;
}
.elementor-editor-active .angie-faq-item.active .angie-faq-answer {
    display: block;
}