body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f3f1ee;
    color: #3e3e3e;
  }

  header {
    background: #285029;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;

  }
  
  header h1 {
    margin: 0;
    font-size: 2.5em;
  }
  

  nav {
    background: #092e0b;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
  }

  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  nav a:hover {
    text-decoration: underline;
  }

  .hero {
    background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 5px #000;
  }

  .hero h2 {
    font-size: 3em;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 10px;
  }

  .contenido {
    padding: 40px;
    text-align: center;
  }

  .contenido h3 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .contenido p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }

  footer {
    background: #285029;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
  }

  .redes-sociales {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .redes-sociales a img {
    width: 30px;
    height: 30px;
    filter: invert(1); /* Para que se vean blancos en el fondo oscuro */
    transition: transform 0.3s ease;
  }
  
  .redes-sociales a:hover img {
    transform: scale(1.2);
  }
  

  .formulario {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto 0;
  }
  
  .formulario input,
  .formulario textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    resize: none;
  }
  
  .formulario textarea {
    height: 120px;
  }
  
  .formulario button {
    background-color: #148425;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  
  .formulario button:hover {
    background-color: #5a3d2b;
  }
  