.custom-accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}
.custom-accordion-item {
    border-bottom: 1px solid #eee;
}
.custom-accordion-header {
    background: #f7f7f7;
    cursor: pointer;
    padding: 14px 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.custom-accordion-content {
    display: none;
    padding: 14px 18px;
    background: #fff;
}
.custom-accordion-header.active,
.custom-accordion-header:hover {
    background: #e9ecef;
}