.thanks {
  padding: 80px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks__content {
  text-align: center;
}

.thanks__title {
  font-size: 24px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.thanks__button {
  display: inline-block;
  background-color: #2E86C9;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.thanks__button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .thanks {
    padding: 60px 0;
  }
  
  .thanks__title {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .thanks__button {
    font-size: 14px;
    padding: 10px 20px;
  }
}