Looking at the image provided, there seems to be an issue with spacing between the red and blue columns. Despite trying various Bootstrap classes, the desired result has not been achieved. Adding m-4 to the Navbar, Header, and sections below did not resolve the problem. When additional divs are added in the row, the left and right lengths become distorted. The goal is to maintain consistent spacing on the left and right while adjusting the spacing within the columns. Any suggestions on how to achieve this?
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="37555858434443455647770219061904">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="90f2ffffe4e3e4e2f1e0d0a5bea1bea3">[email protected]</a>/dist/js/bootstrap.bundle.min.js"></script>
<header>
<div class="m-4 px-4" style="background-color: white; border-radius: 10px;"></div>
</header>
<section id="first">
<div class="m-4 px-4 py-5 smashinglogo" style="border-radius: 10px;"></div>
</section>
<section>
<div class="m-4 row" style="background-color: white; border-radius: 10px;">
<div class="col-lg-6 p-4" style="background-color: red; border-radius: 10px;">
example
</div>
<div class="col-lg-6 p-4" style="background-color: blue; border-radius: 10px;">
example
</div>
</div>
<div class="m-4 row" style="background-color: white; border-radius: 10px;">
<div class="col-lg-3 p-4" style="background-color: red; border-radius: 10px;">
example
</div>
<div class="col-lg-3 p-4" style="background-color: red; border-radius: 10px;">
example
</div>
<div class="col-lg-3 p-4" style="background-color: blue; border-radius: 10px;">
example
</div>
<div class="col-lg-3 p-4" style="background-color: blue; border-radius: 10px;">
example
</div>
</div>
</section>