.thanks {
  padding: 60px 16px;
  text-align: center;
}

.thanks__inner {
  padding: 60px 16px 0;
  text-align: center;
}

.thanks__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.thanks__message {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.thanks__button {
  margin-top: 20px;
}

.thanks__link {
  display: inline-block;
  padding: 12px 28px;
  background-color: #1b79b2;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.thanks__link:hover {
  background-color: rgba(27, 121, 178, 0.5);
}

@media screen and (min-width: 768px) {
  .thanks {
    padding: 80px 20px;
  }

  .thanks__inner {
    padding: 80px 20px 0;
  }

  .thanks__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .thanks__message {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .thanks__link {
    padding: 12px 32px;
  }
}