/* Estilo general */
body {
  font-family: 'Georgia', serif;
  background-color: #f4f1ec;
  color: #2e2e2e;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Encabezado */
header {
  background-color: #3b5b3b;
  color: #fff;
  padding: 2em;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  font-style: italic;
  margin-top: 0.5em;
}

/* Navegación */
nav {
  margin-top: 1em;
}

nav a {
  color: #f4f1ec;
  text-decoration: none;
  margin: 0 1em;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Secciones */
section {
  padding: 2em;
  border-bottom: 1px solid #ccc;
}

section h2 {
  color: #3b5b3b;
  font-size: 1.8em;
  margin-bottom: 0.5em;
}

section ul {
  list-style-type: none;
  padding-left: 0;
}

section li {
  margin-bottom: 0.5em;
}

section a {
  color: #2e2e2e;
  text-decoration: none;
}

section a:hover {
  text-decoration: underline;
  color: #3b5b3b;
}

/* Pie de página */
footer {
  background-color: #3b5b3b;
  color: #fff;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
}
