.aep-accordion {
    margin-top: 20px;
    overflow: hidden;
}
.aep-title {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}
.aep-title:hover {
    background: #f1f1f1;
}
.aep-title::after {
    content: "+";
    position: absolute;
    right: 16px;
    font-size: 18px;
    transition: transform 0.3s ease;
}
.aep-item.active .aep-title::after {
    content: "−";
}
.aep-content {
    display: none;
    padding: 15px 16px;
    background: #fff;
    line-height: 1.6;
    border-top: 1px solid #eee;
}
.aep-accordion>.aep-item+.aep-item {
    margin-top: 10px;
}
.aep-item {
    border: solid 1px #cccccc3d;
}
.aep-heading {
        font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}