.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #eff5f5;
  overflow: hidden;
}


.site-header .header-image {
  display: block;
  width: 100%;
  height: auto;
}



.thank-you-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 68px 20px 57px 20px;
  margin-top: 110px;
}

.thankbutton {
  background-color: var(--primary-color);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-radius: 35px;
  padding: 12px 30px;
  cursor: pointer;
  text-align: center;
  box-shadow: 1px 2px 22.5px 0px rgba(15, 118, 110, 0.25);
  transition: background-color 0.3s;
  width: 30% !important;
  margin: 27px auto !important;

}

.thankbutton:hover {
  background-color: #138d84;
}

.thank-you-card {
  width: 100%;
  max-width: 1126px;
  min-height: 576px;
  background-image: url("images/Rectangle\ 2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 25px;
  box-shadow: 1px 2px 4.4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 101px 40px 102px 40px;
}

.success-icon {
  width: 101px;
  height: 101px;
  margin-bottom: 24px;
}

.thank-you-title {
  color: #0f766e;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.17;
  /* 56.35px */
  margin: 0 0 24px 0;
  max-width: 1040px;
}

.thank-you-subtitle {
  color: #72a6a2;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.17;
  /* 28.17px */
  margin: 0;
  max-width: 942px;
}

@media (max-width: 1200px) {
  .thank-you-section {
    padding: 100px 20px 50px;
  }

  .thank-you-card {
    min-height: auto;
    padding: 80px 30px;
  }

  .thank-you-title {
    font-size: 36px;
  }

  .thank-you-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .thank-you-section {
    padding: 60px 15px 40px;
  }

  .thank-you-card {
    padding: 50px 20px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .thank-you-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .thank-you-subtitle {
    font-size: 16px;
  }
}



.site-footer .footer-image {
  display: block;
  width: 100%;
  height: auto;
}