.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 606px;
  background: #0f1b4c;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 76, 0.95) 0%, rgba(15, 27, 76, 0.85) 50%, rgba(15, 27, 76, 0.7) 100%);
}

.contact-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 32px;
}

.contact-hero__content {
  max-width: 768px;
}

.contact-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.contact-hero__eyebrow-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.contact-hero__heading {
  margin: 24px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 75px;
  letter-spacing: 0.2637px;
  color: #ffffff;
}

.contact-hero__intro {
  margin: 24px 0 0;
  max-width: 768px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.4395px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .contact-hero {
    min-height: 480px;
  }
  .contact-hero__container {
    padding: 64px 32px;
  }
  .contact-hero__heading {
    font-size: 48px;
    line-height: 1.15;
  }
}
@media (max-width: 640px) {
  .contact-hero {
    min-height: 400px;
  }
  .contact-hero__container {
    padding: 48px 32px;
  }
  .contact-hero__heading {
    font-size: 40px;
  }
  .contact-hero__intro {
    font-size: 16px;
    line-height: 24px;
  }
}