/* style.css */
body {
  background: #f4f8fc;
  font-family: 'Segoe UI', sans-serif;
}

h2, h4 {
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

button {
  min-width: 150px;
}
