body {
    background-color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #2c3e50; /* Color de fondo del menú */
    color: white;
    padding: 20px 0;
    text-align: center;
}

.navbar {
    background-color: #2c3e50; /* Fondo del navbar */
    padding: 15px 0;
}

.navbar-nav .nav-link {
    color: white !important; /* Cambia el color del texto */
    font-size: 1.5rem;
    padding: 10px 20px; /* Ajusta el padding */
    letter-spacing: 0.05rem;
    margin-right: 15px;
}



.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba(255,255,255,.5)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E') !important; /* Cambia el color del icono a blanco */
}


.navbar-brand img {
    max-width: 100px; /* Ajusta el tamaño de la imagen del logo */
    padding-left: 13px;
}










  
  
  .contact-section {
    background-color: darkseagreen;
    padding: 50px 20px;
  }
  
  .container2 {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
  }
  
  h2.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }
  
  p.section-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-form {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .input-group input, .input-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .input-group input:focus, .input-group textarea:focus {
    border-color: #0056b3;
    outline: none;
  }
  
  .submit-button {
    padding: 12px 20px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .submit-button:hover {
    background-color: #004080;
  }
  
  .form-response {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: green;
  }
  











/* Estilo del footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

.footer .container3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centra los elementos horizontalmente */
  max-width: 1200px; /* Ancho máximo del contenedor */
  margin: 0 auto; /* Centra el contenedor en la página */
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
  border-bottom: 2px solid #ccc;
  display: inline-block;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  text-decoration: none;
  color: white;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section .social-icons a {
  margin-right: 10px;
  text-decoration: none;
  font-size: 20px;
  color: white;
}

.footer-section .social-icons a:hover {
  color: #000;
}















  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar-nav .nav-item + .nav-item {
      border-top: 1px solid white; /* Solo en pantallas pequeñas */
    }
    .section-title {
      font-size: 28px;
    }
  
    .contact-form {
      padding: 10px;
    }









    .footer .container3 {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      text-align: center;
    }
  
    .footer-section .social-icons {
      display: flex;
      justify-content: center;
    }
  }

























