.acd-contacthero {
  position: relative;
  background-size: cover;
  background-position: 50% 90%;
  background-repeat: no-repeat;
  min-height: 650px;
  overflow: hidden;
  padding: 200px 24px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.acd-contacthero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 48.47%, rgba(255, 255, 255, 0) 100%);
}

.acd-contacthero__inner {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 800px;
  width: calc(100% - 48px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.acd-contacthero__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #366053;
  border: 1px solid #366053;
  border-radius: 9999px;
  padding: 6px 16px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0);
}

.acd-contacthero__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  color: #000000;
  margin: 0 0 16px;
  max-width: 700px;
}

.acd-contacthero__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.acd-contacthero__tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #1e4036;
}

.acd-contacthero__tag-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .acd-contacthero {
    min-height: 450px;
    padding: 80px 16px;
  }

  .acd-contacthero__title {
    font-size: 28px;
  }

  .acd-contacthero__tags {
    flex-direction: column;
    gap: 12px;
  }

  .acd-contacthero__tag {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .acd-contacthero {
    min-height: 380px;
    padding: 60px 16px;
  }

  .acd-contacthero__inner {
    width: calc(100% - 32px);
    top: 15%;
  }

  .acd-contacthero__title {
    font-size: 22px;
  }

  .acd-contacthero__badge {
    font-size: 12px;
    padding: 4px 14px;
  }
}
