/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f7f9;
  color: #333;
  margin: 0;
  padding: 20px;
}

/* Título principal */
.titulo {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Índice */
.indice {
  text-align: center;
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 20px;
}

/* Subtítulos de secciones */
h2 {
  color: #2980b9;
  border-left: 5px solid #3498db;
  padding-left: 10px;
  margin-top: 40px;
}

/* Listas */
ul {
  list-style-type: none;
  padding-left: 0;
}

li {
  background-color: #ecf0f1;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

li:hover {
  background-color: #d0e4f1;
}

/* Enlaces */
a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: bold;
}

a:hover {
  color: #1abc9c;
}

/* Líneas divisoras */
hr {
  border: 0;
  height: 1px;
  background-color: #ccc;
  margin: 30px 0;
}

/* Responsive (opcional) */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }

  .titulo, .indice {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}
