  .accordion--items__head {
    cursor: pointer;
    background: #d4dfea;
    border-radius: 8px;
    padding: 16px 24px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #2c3e50;
}

.accordion--items__head.collapsed .icon {
    transform: rotate(0deg);
}

.accordion--items__head .icon {
    content: url("/wp-content/themes/old-amc/assets/chevron-down-blue.svg");
    width: 20px;
    height: 20px;
    display: inline;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(180deg);
}

.accordion--items__body {
    padding: 20px 0px;
}

.accordion--items {
    margin-bottom: 16px;
}
