/* Estilos generales */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

/* Estilos para el encabezado */
header {
  background-color: #3F51B5;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.contacto img {
  max-width: 100%;
  height: auto;
  margin-left: 10px;
  text-align: center;
}

.contacto a {
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/* Estilos para el contenido */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 10px 0;
}

p {
  margin: 10px 0;
}

img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  text-align: center;
}

ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}

li:before {
  content: "•";
  color: #3F51B5;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* Estilos específicos para la página "Inicio" */
#inicio {
  background-color: #fff;
}

#inicio h1 {
  font-size: 3em;
  text-align: center;
}

#inicio p {
  font-size: 1.5em;
  text-align: justify;
}

/* Estilos específicos para la página "Cómo Llegar" */
#como-llegar {
  background-color: #FF5722;
}

#como-llegar iframe {
  max-width: 100%;
  height: 500px;
}
