* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Google Sans", Roboto, Arial, sans-serif;
  color: rgb(28, 28, 28);
  background-color: rgb(249, 249, 249);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 42px;
  width: 42px;
  border-radius: 50%;
}

.brand-name {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgb(28, 28, 28);
}

.content {
  padding-top: 60px;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 1;
}

.banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(31, 32, 32);
  opacity: 0.6;
}

.banner-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 64px;
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner-img-link {
  display: inline-block;
  max-width: 100%;
}

.banner-img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 8px;
}

.banner-title {
  margin: 24px 0 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
}

.banner-title a {
  text-decoration: underline;
  color: #fff;
}

.banner-title a:hover {
  color: rgb(217, 241, 254);
}

.open-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.open-form-icon {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.form-iframe {
  width: 100%;
  max-width: 1200px;
  height: 1690px;
  border: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

.feature {
  background-color: #fff;
}

.feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.feature-img-link {
  display: block;
  max-width: 100%;
}

.feature-img {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: auto;
}

.feature-title {
  margin: 24px 0 0;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: rgb(28, 28, 28);
}

.feature-title a {
  text-decoration: underline;
  color: inherit;
}

.feature-title a:hover {
  color: rgb(111, 168, 220);
}

.site-footer {
  background-color: rgb(28, 28, 28);
  color: rgb(249, 249, 249);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 18px;
  }
  .banner-title {
    font-size: 26px;
  }
  .feature-title {
    font-size: 22px;
  }
  .form-iframe {
    height: 1400px;
  }
}
