.thankyou-section {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f7f9fc;
}

.thankyou-card {
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.success-icon {
  width: 90px;
  height: 90px;
  background: #2e7d32;
  color: #fff;
  font-size: 48px;
  border-radius: 50%;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-card h1 {
  color: #1d3557;
  margin-bottom: 15px;
  font-size: 36px;
}

.thankyou-card p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.home-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 15px 35px;
  background: #0056b3;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.home-btn:hover {
  background: #003d82;
  transform: translateY(-2px);
}
/* Tablet */
@media (max-width: 768px) {
  .thankyou-section {
    padding: 40px 15px;
  }

  .thankyou-card {
    padding: 40px 30px;
  }

  .thankyou-card h1 {
    font-size: 30px;
  }

  .thankyou-card p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .thankyou-section {
    min-height: calc(100vh - 180px);
    padding: 30px 15px;
  }

  .thankyou-card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
    margin-bottom: 20px;
  }

  .thankyou-card h1 {
    font-size: 28px;
  }

  .thankyou-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-btn {
    width: 100%;
    padding: 14px;
    box-sizing: border-box;
    text-align: center;
  }
}
