body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}

/* Header con imagen de fondo y estilo más visual */
header {
  background-image: url('header-bg.jpg'); /* puedes cambiar la imagen */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1rem 0;
}

/* Contenedor interno del header para logo + título */
.header-content {
  background-color: rgba(0, 0, 0, 0.5); /* fondo semitransparente */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 1rem;
  flex-wrap: wrap;
  text-align: left;
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
}

/* Logo */
.header-content img {
  height: 60px;
  width: auto;
}

/* Título y subtítulo */
.header-content h1 {
  margin: 0;
  font-size: 1.8rem;
}

.header-content p {
  margin: 0;
  font-size: 1rem;
}

main {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 1rem;
  justify-content: center;
}

#map {
  height: 400px;
  width: 100%;
  max-width: 800px;
  border: 2px solid #0077cc;
  border-radius: 10px;
}

#info {
  max-width: 400px;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  margin-top: 2rem;
}

#info-extra {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  text-align: center;
  line-height: 1.6;
}

#info-extra h2 {
  color: #cc0000;
  margin-bottom: 1rem;
}

#info-extra p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

#info-extra {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
}

#info-extra img {
  display: inline-block;
  margin: 1rem auto 0 auto;
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

