.acc-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
    overflow: hidden;
}
.acc-header {
    display: flex;
    padding-bottom: 4px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    border: 0;
    border-bottom: 1px solid #E4E4E4;
    background-color: #FFFFFF;
    cursor: pointer;
}
.acc-title {
    flex: 1;
    text-align: left;
    color: var(--main-color, #3D64ED);
    font-family: Inter-bold, arial, sans-serif;
    font-size: 14px;
    line-height: 14px;
}
.acc-badge {
    display: none;
}
.acc-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--main-color,  #3D64ED);
    border-bottom: 2px solid var(--main-color,  #3D64ED);
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.acc-section.open .acc-chevron {
    transform: rotate(-135deg);
}

.acc-panel {
    background: #fff;
}