/* ===== CUSTOM ACCORDION ===== */
.custom-accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #f9fafb;
}

.custom-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.custom-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--navy);
    box-shadow: none;
}

/* Custom Icon Container */
.accordion-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    /* Desired light purple from design */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    margin-right: 16px;
    flex-shrink: 0;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.custom-accordion .accordion-body {
    padding: 0 20px 24px 80px;
    /* Indent text to align with title text (44+16+20) */
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* Chevron customization */
.custom-accordion .accordion-button::after {
    background-size: 16px;
    margin-left: auto;
}

@media (max-width: 576px) {
    .custom-accordion .accordion-body {
        padding: 0 20px 20px 20px;
    }
}