/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos generales */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Encabezados */
h1 {
  font-size: 2.5rem;
  color: #1b4f72;
  text-align: center;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.8rem;
  color: #005288;
  margin-top: 20px;
  text-align: center;
}

h3 {
  font-size: 1.2rem;
  color: #005288;
}

/* Párrafos */
p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Línea separadora */
hr {
  border: 0;
  height: 2px;
  background: #ccc;
  margin: 20px 0;
}

/* Tabla */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

th, td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

th {
  background-color: #003366;
  color: #ffffff;
}

tr:nth-child(even) {
  background-color: #ffffff;
}

img {
  border-radius: 4px;
}

/* Pie de página */
footer, p:last-of-type {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 40px;
}