Struggling with a simple alignment issue in my code and just don't have the time to figure it out. I have two lists, each containing images and text, but I need the text to align to the right of the images instead of wrapping underneath. Here is an example image of the problem.
<section id="providerBenefits">
<div class="container">
<div class="row">
<div class="col-sm-4">
<h1 class="display-3">Benefits<br />for providers</h1>
</div>
<div class="col-sm-4">
<ul id="benefitListLeft">
<li><img src="./assets/img/CCM-Page_12.png" />Lower costs and higher revenue</li>
<li><img src="./assets/img/CCM-Page_16.png" />Valued-based chronic care management with full system setup</li>
<li><img src="./assets/img/CCM-Page_23.png" />Coordination of total care plan of<br />20-minute clinical staff time</li>
</ul>
</div>
<div class="col-sm-4">
<ul id="benefitListRight">
<li><img src="./assets/img/CCM-Page_09.png" />80-85% comprehensive care plan<br />established, implemented, and monitored</li>
<li><img src="./assets/img/CCM-Page_18.png" />Electronic Health Record system<br />compatibility</li>
<li><img src="./assets/img/CCM-Page_21.png" />24/7 access to statistical reports</li>
</ul>
</div>
</div>
</div>
</section>