.accordion-controls-header-flush {
    background: linear-gradient(to right, #f8fafc, #eef3f8);
    width: 100%;
    border: none;
    padding: 12px 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1c437d;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;

}

.accordion-item {
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #1c437d;
    overflow: hidden;
}

.accordion-border {
    border-left-width: 4px;
    border-left-color: #1c437d;
}

.accordion-controls-header-flush:after {
    content: '\002B'; /* Unicode character for "plus" sign (+) */
    font-size: 25px;
    float: right;
    margin-left: 5px;
    transition: transform 0.4s;
}

.accordion-controls-header-flush.active:after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
}

.accordion-controls-header-flush.active {
    background: #1C437D;
    color: #fff;
}

button.accordion-controls-header-flush.px-3.py-2:hover {
    background:#9bd6e547;
    color:#1c437d;
}
.accordion-controls-body-flush {
    background: white;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    display: none;
    border-top: 1px solid #dde4ee;
}

.accordion-controls-body-flush.open {
    display: block;
}

.accordion-btn-expandall {
    background: none;
    border: none;
    color: #1C437D;
    text-decoration: underline;
    font-weight: 600;
    padding-right: 2px;
}

.accordion-btn-collapseall {
    background: none;
    border: none;
    color: #1C437D;
    text-decoration: underline;
    font-weight: 600;
    padding-left: 2px;
}

.accordionbtn-sep {
    font-size: 18px;
}