/* ======= Navegación ======= */
ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-style: oblique;
  }
  
  nav ul li a:hover {
    background-color: #555;
    color: white;
  }
  
  /* ======= Contenido principal ======= */
  .content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  h1, h2 {
    text-align: center;
    color: #0f340f;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* ======= Sección Quiénes Somos ======= */
  .about-section {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .about-section h2 {
    color: #0056b3;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .about-section p {
    font-size: 1.2em;
    color: #333;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px auto;
  }
  
  .about-image {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .about-image img {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* ======= Footer ======= */
 /* ======== Footer ======== */
footer {
    background-color: #161616;
    color: white;
    padding: 20px 50px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #9a8820;
    text-decoration: none;
}
  /* ======= Responsive ======= */
  @media (max-width: 768px) {
    ul {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
  
    .about-image img {
      width: 100%;
    }
  
    footer div {
      flex-direction: column;
      gap: 10px;
    }
  }
  