.takeaways-container {
    border: 2px solid #002cba;
    border-radius: 12px;
    padding: 20px 16px;
    background: #fff;
    font-family: sans-serif;
    outline: none;
}

.takeaways-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sparkles-icon {

    background: url(/wp-content/uploads/2024/04/sparkles-emoji-clipart-lg.png) center center / 100% 100% no-repeat;
    width: 24px;
    height: 24px;
    display: inline-block;

}

.takeaways-title {
    font-weight: 600;
    color: inherit;
}

.toggle-icon {
    transition: transform 0.3s ease;


    background: url(/wp-content/themes/interstride/img/icons/icon-down.png) center center / 100% 100% no-repeat;
    width: 16px;
    height: 10px;
    display: inline-block;

}

.takeaways-content {
    margin-top: 25px;
    display: none;
    font-size: 18px;
}

.takeaways-content ul {

    margin: 0;
    padding-left: 6px;
}

.takeaways-content li {
    margin-bottom: 10px;
    color: #000c3d;
    font-size: 22px;
    line-height: 25px;
    font-family: "TT Comons";
}

.open .toggle-icon {
    transform: rotate(180deg);
}