.angie-faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.angie-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.angie-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: background-color 0.2s ease;
}

.angie-faq-question:hover {
    background-color: #f9f9f9;
}

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

.angie-faq-question[aria-expanded="true"] .angie-faq-icon {
    transform: rotate(180deg);
}

.angie-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
}

.angie-faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: #555;
    line-height: 1.6;
}
