.thank-you__hero {
  position: relative;
  padding: 6em 5% 8em;
  overflow: hidden;
  background-color: #1a1a2d;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.thank-you__hero>.wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.thank-you__content {
  max-width: 640px;
  margin: 0 auto;
}

.thank-you__icon {
  margin-bottom: 40px;
  display: inline-block;
}

.thank-you__icon svg {
  width: 80px;
  height: 80px;
}

.thank-you__content h1 {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: clamp(36px, 3vw + 0.5rem, 52px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 0.6em;
  color: #ffffff;
}

.thank-you__text-light {
  font-weight: 300;
  color: #ffffff;
}

.thank-you__text-bold {
  font-weight: 700;
  color: #5DEB3C;
}

.thank-you__content p {
  font-family: 'Work Sans', Arial, sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 2em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

.thank-you__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 51px;
  padding: 0 1.5em;
  background: #43B02A;
  color: #fff;
  font-family: 'Work Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid #43B02A;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thank-you__btn:hover {
  background: #379a22;
  border-color: #379a22;
  color: #fff;
}

.thank-you__btn--outline {
  background: transparent;
  border-color: #ffffff;
}

.thank-you__btn--outline:hover {
  background: #ffffff;
  color: #1a1a2d;
  border-color: #ffffff;
}

@media screen and (max-width: 1199px) {
  .thank-you__hero {
    padding: 5em 5% 7em;
  }
}

@media screen and (max-width: 991px) {
  .thank-you__hero {
    padding: 4em 5% 5em;
    min-height: 60vh;
  }

  .thank-you__icon {
    margin-bottom: 30px;
  }

  .thank-you__icon svg {
    width: 64px;
    height: 64px;
  }

  .thank-you__content h1 {
    font-size: clamp(30px, 3vw + 0.5rem, 42px);
  }

  .thank-you__content p {
    font-size: 18px;
  }

  .thank-you__btn {
    min-width: 240px;
    font-size: 15px;
  }
}

@media screen and (max-width: 959px) {
  .thank-you__btn {
    min-width: 0;
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .thank-you__hero {
    padding: 3em 5% 4em;
    min-height: 50vh;
  }

  .thank-you__icon {
    margin-bottom: 24px;
  }

  .thank-you__icon svg {
    width: 52px;
    height: 52px;
  }

  .thank-you__content h1 {
    font-size: 26px;
  }

  .thank-you__content p {
    font-size: 16px;
    margin-bottom: 1.5em;
  }

  .thank-you__buttons {
    flex-direction: column;
    align-items: center;
  }

  .thank-you__btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    font-size: 14px;
  }
}
