.ctm-toggle-container {
    width: 900px;
    margin: 20px auto;
}
.ctm-toggle-section {
    margin-bottom: 15px;
    border-bottom: 1px dotted #043673;
}
.ctm-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ctm-toggle-title {
    font-size: 28px;
    font-weight: 600;
    color: #043673;
    text-transform: uppercase;
}
.ctm-toggle-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
    color: #043673;
}
/*
.ctm-toggle-section.active .ctm-toggle-icon {
    transform: rotate(180deg);
}
*/
.ctm-sub-toggle.active span.ctm-sub-title {
    color: #EC008C;
}
.ctm-toggle-content {
    display: none;
}
.ctm-toggle-content li {
    margin-left: 20px;
}
.ctm-toggle-section.active .ctm-toggle-content {
    display: block;
}

.ctm-sub-toggles {
    margin-top: 10px;
}
.ctm-sub-toggle {
    margin-bottom: 10px;
}
.ctm-sub-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.ctm-sub-title {
    font-weight: 500;
    color: #043673;
    font-size: 22px;
}
.ctm-sub-content {
    display: none;
    padding: 0 15px;
}
.ctm-sub-toggle.active .ctm-sub-content {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
}