@media (max-width: 1500px) {
    html, body {
      width: 100%;
      overflow-x: hidden; /* fuerza que no se pueda hacer scroll lateral */
      margin: 0;
      padding: 0;
    }
  
    * {
      box-sizing: border-box;
    }
    
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
      }
    
      .navbar ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
      }
    
      .navbar ul li {
        width: 100%;
        text-align: left;
      }
    
      .navbar ul li a {
        display: block;
        padding: 10px;
      }
            /* Dropdowns para móvil y tablet */
        .navbar ul li.dropdown .dropdown-toggle {
          display: block;
          padding: 10px;
          color: rgb(82, 82, 82);
          font-weight: bold;
          cursor: pointer;
        }
  
        .navbar ul li.dropdown .dropdown-toggle:focus {
          outline: none;
        }
  
        .navbar ul li.dropdown .dropdown-content {
          display: none;
          position: static;
          background-color: transparent;
          box-shadow: none;
          padding-left: 15px;
        }
  
        .navbar ul li.dropdown:focus-within .dropdown-content,
        .navbar ul li.dropdown .dropdown-toggle:focus + .dropdown-content {
          display: block;
        }
  
    
    
      .dropdown-content li a {
        padding-left: 20px;
      }

      /*______________Content______________*/


      .content{
        margin-right: 20px;
        margin-left: 20px;
       
               
      }

      .content2{
        margin-right: 10px;
        margin-left: 10px;

      }

      table {
        border-collapse: collapse;
        width: 100%;
        background-color: rgb(222, 230, 226);
       
      }
    
      table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        border-bottom: 1px solid #ccc;
      }
    
      /* Alternar sentido para cada fila par (1-based index) */
      table tr:nth-child(even) {
        flex-direction: column-reverse;
      }
    
      table td {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        margin-bottom: 30px;
        margin-top: 50px;
      }
    
      table td h1 {
        font-size: 22px;
        margin: 10px 0 5px;
      }
    
      table td h2 {
        font-size: 16px;
        line-height: 1.5;
        margin: 0 auto;
        max-width: 90%;
      }
    
      table td img {
        width: 90%;
        max-width: 320px;
        height: auto;
        margin: 10px auto;
        display: block;
      }
      h2 {
        font-size: 20px;
      }
    
      p, li {
        font-size: 16px;
      }
    
      a {
        font-size: 16px;
      }

      
    
      
    
     
      .footer {
        flex-direction: column;
        padding: 30px 10px;
        text-align: center;
      }
    
      .footer .info-box {
        font-size: 16px;
        margin-bottom: 15px;
      }
    
      .footer .info-box img {
        width: 40px;
        height: 40px;
      }
    
      .copyright {
        font-size: 14px;
        padding: 10px;
      }
    
      
}













    

    