body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: white;
}
.logo {
  max-width: 200px;
  margin-bottom: 20px;
}
.btn-primary {
  background: #3b82f6;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #2563eb;
}
section {
  padding: 60px 20px;
  text-align: center;
}
.step-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.step {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.lead-form input, .lead-form textarea {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.lead-form button {
  margin-top: 10px;
}
footer {
  background: #0f172a;
  color: white;
  padding: 20px;
  text-align: center;
}
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.thank-you {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f9f9f9;
}
.thank-you-content {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
