Having an issue with misaligned text and buttons on my HTML page that is using Bootstrap. How can I align the buttons, image, and text properly?
https://i.sstatic.net/6F9Z9.png
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
</script>
<meta charset="utf-8">
<title>prueba</title>
</head>
<body>
<section id="explora nuestra gama"> <!-- EXPLORA NUESTRA GAMA -->
<div class="container text-center py-5">
<h2> EXPLORA NUESTRA GAMA</h2>
<div class="row py-5 justify-content-center">
<div class="col-12 col-md-4"> <!-- CARRO 1 -->
<figure> <img class="figure-img img-fluid rounded" src="https://i.imgur.com/45aQm0Z.jpg" width="300" height="120" alt="suv"/> </figure>
<h3>SUV</h3>
<p> <a class="btn btn-dark" href="suv.html">Ver más</a></p>
</div>
<div class="col-12 col-md-4"> <!-- CARRO 2 -->
<figure> <img class="img-fluid" src="https://imgur.com/sqzKd7t.jpg" width="300" height="120" alt="pasajero"/> </figure>
<h3>VEHÍCULO DE PASAJEROS</h3>
<p> <a class="btn btn-dark" href="#">Ver más</a></p>
</div>
<div class="col-12 col-md-4"><!-- CARRO 3 -->
<figure> <img class="img.fluid" src="https://imgur.com/RDPnADx.jpg" width="300" height="120" alt="comercial"/> </figure>
<h3>COMERCIAL</h3>
<p> <a class="btn btn-dark" href="comercial.html">Ver más</a></p>
</div>
</div>
<div class="col py-4"> <!-- boton y pagina de salida -->
<p> <a class="btn btn-dark" href="simulador.html">SIMULA TU CUOTA MENSUAL AQUÍ</a></p>
</div>
</div>
</section>
</body>
</html>