body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #0A1E16;
    color: #FFFFFF;
  }
  
  /* Navbar Styles */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 30, 22, 0.7); /* Transparente con verde oscuro */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    animation: slideDown 1s ease-in-out;
  }
  
  .nav .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .nav .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav .nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
  .nav .nav-links a:hover {
    color: #FFD700;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
  }
  
  .nav img {
    height: 70px; /* Reducir altura */
    width: auto; /* Mantener proporciones */
    padding: 5px; /* Espaciado alrededor */
  }
  
  /* Content Styles */
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 80px; /* Offset for the fixed navbar */
    height: calc(100vh - 80px); /* Ensure the content occupies the full page */
  }
  
  .text-content {
    max-width: 50%;
    padding-right: 20px;
  }
  
  .text-content h1 {
    font-size: 3em;
    font-weight: 700;
    margin: 0;
  }
  
  .text-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .text-content ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .text-content li {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .image-content {
    max-width: 50%;
    margin-top: 20px;
  }
  
  .image-content img {
    width: 100%;
    height: 100%; /* Alargada para ocupar más espacio */
    border-radius: 5px;
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      text-align: center;
      height: auto;
    }
  
    .text-content, .image-content {
      max-width: 100%;
    }
  
    .text-content ul {
      padding-left: 0;
    }
  }
  