.key-benefits-list:not(:last-child) {
    margin-bottom: 15px;
}

.key-benefits-list__wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.key-benefits-list__item {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 20px;
    background: #f2f2ff;
    padding: 16px;
}

.key-benefits-list__icon {
    display: flex;
    border-radius: 7px;
    background: linear-gradient(195deg, rgba(88, 114, 255, 0.1) 0%, rgba(162, 88, 255, 0.1) 100%);
    width: 44px;
    height: 44px;
    padding: 9px;
    flex-shrink: 0;
}

.key-benefits-list__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.key-benefits-list__text {
    margin-bottom: 0;
    color: #393939;
}

@media screen and (max-width: 599.98px) {
    .key-benefits-list__text {
        font-size: 15px;
    }

    .key-benefits-list__icon {
        width: 42px;
        height: 42px;
    }

    .key-benefits-list__item {
        padding: 14px;
    }
}