body {
  font-family: "Yu Gothic", sans-serif;
  line-height: 1.8;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background: #005bac;
  color: white;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 28px;
  margin: 30px 0 10px;
  text-align: center;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

section.intro,
section.content {
  padding: 20px;
}

section.map {
  text-align: center;
  margin: 30px 0;
}

img {
 
  width: auto;

  height: auto;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  margin: 0 auto;
  display: block;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
  color: #666;
}

footer nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 10px;
  background: #ddd;
  margin: 0;
}

footer nav ul li {
  margin: 0 10px;
}

footer nav ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

footer nav ul li a:hover {
  color: #005bac;
}