/* Estilos para la imagen centrada */
.imagen-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.foto {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: 3px solid white;
}

/* Mantén todos los otros estilos que ya teníamos */
header {
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Resto de tus estilos CSS... */