.simple-toggle-wrapper .accordion-item {
    border-bottom: 1px solid #ddd;
}
.simple-toggle-wrapper .accordion-header {
    cursor: pointer;
    padding: 10px 45px 10px 10px;
    background: #f5f5f5;
    font-weight: bold;
    position: relative;
}
.simple-toggle-wrapper .accordion-header:after {
    content: '';
    height: 28px;
    width: 28px;
    background-image: url('data:image/svg+xml,<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="28" y1="14" x2="-1.74846e-07" y2="14" stroke="black" stroke-width="4"/><line x1="14" y1="8.74228e-08" x2="14" y2="28" stroke="black" stroke-width="4"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.simple-toggle-wrapper .accordion-header.active:after {
    content: '';
    height: 28px;
    width: 28px;
    background-image: url('data:image/svg+xml,<svg width="28" height="4" viewBox="0 0 28 4" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="28" y1="2" x2="-1.74846e-07" y2="2" stroke="black" stroke-width="4"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
@media (max-width: 600px) {
    .simple-toggle-wrapper .accordion-header:after {
        height: 14px;
        width: 14px;
    }
}
.simple-toggle-wrapper .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0px 20px; /* collapsed padding */
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.simple-toggle-wrapper .accordion-content.active {
    max-height: 1000px; 
    padding: 20px;
}