body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}
.hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero-img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.locate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 20px;
  background: #fff;
}
.locate-img {
  flex: 1 1 300px;
  max-width: 400px;
  margin: 0 auto;
}
.locate-content {
  flex: 2 1 300px;
  padding: 20px;
}
.location-form input {
  padding: 10px;
  margin-right: 10px;
  width: 60%;
  max-width: 200px;
}
.location-form button {
  padding: 10px 20px;
  background: #b374ff;
  border: none;
  color: white;
  cursor: pointer;
}
.guide {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
}
.guide h1, .guide h2 {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .locate {
    flex-direction: column;
  }
  .location-form input {
    margin-bottom: 10px;
    width: 100%;
  }
}