/* Estilos generales */
body {
    font-family: Arial, sans-serif;
   background-color: #002c43;
  }
  
  .carousel {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .carousel-item {
    min-height: 400px;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
  }
  
  h3 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #000000;
  }
  
  p {
    color: #252525;
    line-height: 1.6;
    font-size: 22px;
    text-align: justify;
  }
  
  img {
    border-radius: 5px;
  }
  .container-logo{
    display: flex;
    justify-content: center;
  }
  .logo{
    width: 8%;
  }
  
  /* Estilos de botones */
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    font-size: 25px;
  }
  
  .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    color: #ffffff;
  }
  
  /* Ajustes responsivos */
  @media (max-width: 767px) {
    .carousel-item {
      min-height: auto;
    }
  }
  