/* ===================== THANK YOU (LEAD GEN) ===================== */

.thank-you {
  padding: 100px 20px;
  text-align: center;
}

.thank-you-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Heading */

.thank-you h1 {
  font-family: "Roboto Slab", serif;
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 20px;
}

/* Text */

.thank-you p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
  color: #444;
}

/* WhatsApp Button */

.whatsapp-cta a {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.whatsapp-cta a:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .thank-you {
    padding: 80px 20px;
  }

  .thank-you h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .thank-you p {
    font-size: 15px;
  }

}