I'm attempting to use Bootstrap 5 to create a grid system similar to the image shown below
I've been struggling to replicate the grid section shown in the attached image using Bootstrap 5.
<div class="container-fluid">
<div class="row">
<div class="col-md-6" style="background-color: palegreen;">.col-md-6</div>
<div class="col-md-6" style="background-color: red;">.col-md-6
<div class="row">
<div class="col-md-8" style="background-color: purple;">.col-md-8</div>
<div class="col-md-4" style="background-color: aqua;">.col-md-4</div>
</div>
</div>
</div>