body {
  background-color: #f2f2f2;
  font-family: Arial;
  margin: 0;
}

table {
  width: 900px;
  margin: auto;
  background-color: white;
  border: 2px solid #4D8DD1;
  border-collapse: collapse;
}
.encabezado {
  position: relative;
  text-align: center;
}

.logo-izquierda {
  position: absolute;
  left: 20px; /* distancia desde el borde izquierdo */
  top: 50%;
  transform: translateY(-50%);
}


th {
  background-color: #4D8DD1;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 28px;
}
.logo-izquierda {
  float: left;
  margin-right: 15px;
}

.centrado {
  text-align: center;
}


.menu {
  background-color: #1f4e79;
  text-align: center;
}

.menu a {
  color: white;
  text-decoration: none;
  margin: 15px;
  font-weight: bold;
}

.menu a:hover {
  color: yellow;
}

.contenido {
  padding: 20px;
}

.contenido h2 {
  color: #1f4e79;
}
.contenido h3 {
  color: #1f4e79;
}


.pie {
  background-color: #4D8DD1;
  color: white;
  text-align: center;
  padding: 10px;
}

.imagen-derecha {
  float: right;
  width: 250px;
  margin-left: 20px;
  margin-bottom: 10px;
}