/* Accordion container */
.custom-accordion {
    margin: 6px 0; /* only 5px top & bottom gap */
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}



.accordion-toggle {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    font-size: 16px;
    background: #008aff;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
}

.accordion-toggle::after {
    content: "+";
    position: absolute;
    right: 15px;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.accordion-toggle.active::after {
    content: "—";
}

.accordion-toggle.active {
    background: #008aff;
	color:white;
}

.accordion-content {
    display: none;
    padding: 12px 15px;
    background: #fff;
    border-top: 1px solid #ccc;
}