/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Título y botón atrás */
.titulo {
  display: flex;
  align-items: center;
  padding: 20px;
  font-size: 18px;
}

.titulo h4 a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.titulo .centro {
  flex: 1;
  text-align: center;
}

.titulo h1 {
  font-size: 32px;
  color: #1a237e; /* Azul fuerte */
  margin: 0;
}

/* Contenedor del mensaje */
.mensaje {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  box-sizing: border-box;
}

.parte1, .parte2 {
  flex: 1;
  max-width: 600px;
  margin: 0 20px;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* .parte1 p, .parte2 p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.parrafo {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
} */

/* Enlaces */
a {
  color: #0033cc;
  text-decoration: underline;
}

a:hover {
  color: #001a80;
  text-decoration: none;
}

/* Listas */
ul {
  margin-top: 0;
  padding-left: 20px;
}
