Hello, I'm currently trying to customize the layout of this Bootstrap webpage to resemble the design shown in this image https://i.sstatic.net/w7i6Z.png. Specifically, I want to display the blog section and the team section side by side. As a beginner in using Bootstrap, I'm not quite sure how to achieve this layout. Any tips or guidance would be greatly appreciated. Thank you in advance!
enter code here
<!-- ***** Blog Start ***** -->
<section class="section white padding-bottom-80" id="blog">
<div class="container">
<!-- ***** Section Title Start ***** -->
<div class="row">
<div class="col-lg-12">
<div class="center-heading">
<h2 class="section-title">Latest Blog Posts</h2>
</div>
</div>
<... (blog post content) ...>
</div>
<!-- ***** Section Title End ***** -->
<<!-- Team Item Start -->-->
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="team-item">
<div class="team-content">
<... (team member info) ...>
<p>Proin arcu ligula, malesuada id tincidunt laoreet, facilisis at justo. Sed at lorem.</p>
</div>
<div class="user-image">
<img src="assets/images/photos/team/1.jpg" alt="">
</div>
</div>
</div>
<<!-- Team Item End -->-->
<... (more team members' info) ...>
</section>