body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

section {
  padding: 40px;
  max-width: 800px;
  margin: auto;
  font-family: 'Open Sans', sans-serif;
}

.logo {
  width: 290px;
  height: 140px;
  display: block;
  margin: 0 auto;
}

p {
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f5f5;
  margin: 0;
}

/* container */
.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eee;
  margin: 40px auto;
  max-width: 1100px;
}

/* left text */
.location-text {
  width: 50%;
  text-align: center;
  padding: 40px;
}

.location-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.location-text p {
  margin: 10px 0;
}

/* button */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #111;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

/* right image */
.location-image {
  width: 50%;
}

.location-image img {
  width: 100%;
  height: auto;
  display: block;
}