body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #1E202C;
  color: #fafafa;
  text-align: center;
}
.header {
  background: #1E202C;
  padding: 10px 48px;
  display: flex;
  align-items: center;
}
.header .logo {
  height:32px;
  margin: 16px;
}
.banner-img {
  width: 100%;
  display: block;
}
.banner-text {
  font-size: 28px;
  font-weight: 600;
  margin: 100px auto 50px;
  max-width: 90%;
}
.container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 20px auto;
}
.buttons .btn img {
  width: 50%;
}
.buttons .btn1 img {
  width: 100%;
}
.buttons .btn img:hover {
  -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}
.buttons .btn1 img:hover {
  -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}
.intro-text {
  max-width: 700px;
  margin: 40px auto;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
}
.desktop-only {
  display: block;
}
.map-img {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  display: block;
  border-radius: 13px;
  opacity: 0.9;
}
.details-text {
  max-width: 700px;
  margin: 40px auto;
  font-size: 16px;
  text-align: justify;

}
.details-text strong {
  font-weight: 700;
}
.divider {
  max-width: 700px;
  height: 1px;
  background: #2B3755;
  margin: 70px auto;
}
.video {
  max-width: 700px;
  margin: 0 auto;
}
.google-map {
  max-width: 700px;
  margin: 0 auto;
}
.final-text {
  max-width: 700px;
  margin: 20px auto 50px;
  font-size: 16px;
  text-align: justify;
}
.button-terms {
  margin: 20px 0;
}
.terms-btn {
  background: #003CA6;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
  border-radius: 16px;
}
.terms-btn:hover {    -webkit-transform:scale(0.9);
  transform:scale(0.9);
  transition: 0.3s;
  outline-color: rgba(49, 138, 172, 0);
  outline-offset: 80px;
  text-shadow: 1px 1px 6px #fff;
}
.produce-text {
  max-width: 700px;
  margin: 20px auto 70px;
  font-size: 16px;
}
.footer {
  background: #E4051F;
  color: #fff;
  font-size: 12px;
  padding: 20px 250px;
  text-align: center;
}
@media (max-width: 768px) {

  .container {
    flex-direction: column;
  }
  
  .buttons, .google-map, .divider, .final-text, .produce-text, .button-terms, .map-section, .intro-text.desktop-only, .video {
    margin-left: 24px;
    margin-right: 24px;
  }
  .header {
    justify-content: center;
    padding: 10px 0;
  }
  .banner-text {
    font-size: 16px;
    margin: 50px auto 50px;
  }
  .intro-text.desktop-only {
    display: block;
  }
  .details-text,
  .final-text,
  .produce-text {
    font-size: 12px;
    padding: 0 24px;
  }
  .terms-btn {
    font-size: 16px;
    width: calc(100% - 48px);
  }
  .footer {
    font-size: 8px;
    padding: 10px 24px;
  }
}
