body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #0078d4;
  color: white;
  padding: 2rem;
  text-align: center;
}

section {
  padding: 2rem;
  margin: 1rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

button {
  background-color: #0078d4;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #005fa3;
}

input, textarea {
  display: block;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
}

.galeria {
  margin: 2rem;
  text-align: center;
}

.imagenes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.imagenes img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.imagenes img:hover {
  transform: scale(1.05);
}

#mensajeConfirmacion p {
  background-color: #e6ffe6;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 128, 0, 0.2);
}