.custom-accordion-wrapper {
    border: 1px solid #ddd;
    border-radius: 6px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-title {
    padding: 15px;
    background: #f7f7f7;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.accordion-title:hover {
    background: #ececec;
}

.accordion-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: 0.3s;
}

/* IMPORTANT: Only hide content here */
.accordion-content {
    display: none;
    padding: 15px;
    background: #fff;
    line-height: 1.6;
}

.accordion-item.active .accordion-title {
    background: #0073aa;
    color: #fff;
}

/* Rotate icon when active */
.accordion-item.active .accordion-icon {
    transform: translateY(-50%) rotate(180deg);
}