.angie-accordion-wrapper-4efc521a {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.angie-accordion-item-4efc521a {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.angie-accordion-header-4efc521a {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    background: #f9f9f9;
    transition: background 0.3s;
}

.angie-accordion-header-4efc521a:hover {
    background: #f1f1f1;
}

.angie-accordion-icon-wrapper-4efc521a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.angie-accordion-icon-4efc521a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.angie-accordion-icon-4efc521a i {
    font-size: 20px;
}

.angie-accordion-icon-4efc521a svg {
    width: 20px;
    height: 20px;
}

.angie-accordion-item-4efc521a.active .angie-accordion-icon-4efc521a {
    transform: scale(1.3);
}

.angie-accordion-title-4efc521a {
    font-weight: 600;
    font-size: 16px;
}

/* KEY CHANGE: height instead of max-height. JS drives the value. */
.angie-accordion-content-4efc521a {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    /* No active-state height rule here — JS sets exact px values */
}

/* First item renders open on page load before JS fires */
.angie-accordion-item-4efc521a.active .angie-accordion-content-4efc521a {
    height: auto;
}

.angie-accordion-content-inner-4efc521a {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background: #fff;
}