.contenedor-inscripciones {
    width: 95vw;                    /* ocupa el 95% del ancho de la ventana */
    max-width: 1600px;              /* permite expandirse más en pantallas grandes */
    margin: 30px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    box-sizing: border-box;
  }
  
  .titulo-jornadas {
    text-align: center;
    color: #2e7d32;
    font-size: 2.2em;
    margin-bottom: 25px;
  }
  
  .subtitulo {
    font-size: 1.4em;
    color: #1b5e20;
    margin-top: 30px;
    border-left: 5px solid #4caf50;
    padding-left: 10px;
    margin-bottom: 15px;
  }
  
  .detalle-incluye {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
  }
  
  .costos {
    background-color: #f1f8e9;
    border-left: 5px solid #81c784;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .lista-datos {
    list-style-type: "📎 ";
    padding-left: 1.2em;
    margin-top: 10px;
  }
  
  .lista-datos li {
    margin-bottom: 8px;
  }
  
  .tabla-hoteles {
    overflow-x: auto;
    margin-top: 20px;
  }
  
  .tabla-hoteles table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
  }
  
  .tabla-hoteles th,
  .tabla-hoteles td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  .tabla-hoteles th {
    background-color: #e8f5e9;
    color: #1b5e20;
  }
  
  @media (max-width: 768px) {
    .contenedor-inscripciones {
      padding: 20px;
    }
  
    .titulo-jornadas {
      font-size: 1.7em;
    }
  
    .subtitulo {
      font-size: 1.2em;
    }
  }
  