body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flexbox;
    box-sizing: border-box;
    background-color: #e6ffe6; 
  }
  
  header, nav {
    background-color: #fff;
    padding: 20px 50px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
  }
  header img {
    height: 700; 
    display: flex;
  }
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }
  .buttons a {
    margin-left: 10px;
    padding: 10px 20px;
    display: flex;
    text-decoration: none;
    color: #fff;
    background-color: #5ec35a; 
    border-radius: 5px;
  }
  .main-content {
    padding: 60px 50px; 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .text-content {
    max-width: 55%;
    margin-right: 20px;
  }
  .main-content h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
  }
  .main-content h1 span {
    color: #5ec35a; 
  }
  .main-content p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
  }
  .image-container {
    width: 35%; /* Ajustar ancho en pantallas grandes */
    min-width: 350px; /* Evita que sea demasiado pequeña */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center; /* Centra la imagen */
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .features {
    padding: 50px 50px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    border-radius: 10px;
  }
  .features p {
    color: #333;
  }
  footer {
    background-color: #fff;
    text-align: center;
    padding: 20px 50px; 
    border-top: 1px solid #ddd;
  }
  footer p {
    margin: 5px 0;
    color: #666;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  .hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background: #000;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: white;
    width: 220px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
  }
  .mobile-menu a {
    padding: 10px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #ddd;
    display: block;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  
  @media (max-width: 768px) {
    nav a { display: none; }
    .buttons { display: none; }
    .hamburger { display: flex; }
    .mobile-menu.show { display: flex; } 
    .main-content {
      flex-direction: column;
      align-items: center;
    }
    
    .text-content {
      margin-bottom: 20px;
    }
  }
@media (max-width:1200px){
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  .text-content, .image-container{
    max-width: 90%;
  }
}
   

