body {
  margin: 0;
  background: transparent;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #1f2f2b;
  overflow: hidden;
  animation: bodyFadeIn 1.4s ease forwards;
  opacity: 0;
}

section {
  max-width: 600px;
  margin: 0 auto 40px auto;
  background: rgba(255, 255, 255, 0.65);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: height 0.3s ease;
  min-height: 460px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(15px);
  animation: sectionFadeIn 1s ease 0.3s forwards;
}

/* Titel en tekst */
h2 {
  text-align: left;
  font-weight: 600;
  font-size: 2.0em;
  color: #E3AE52;
  margin-top: 0;
}
p {
  color: #55625b;
}

/* Quizstappen */
.quiz-step {
  display: none;
  animation: fadeInStep 0.5s ease;
  min-height: 280px;
}
.quiz-step.active {
  display: block;
  font-size: 18px;
}

/* Formuliervelden */
input[type="text"], input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 45%;
  margin: 5px;
  font-size: 15px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  background: #fff;
}

/* Knoppen */
.quiz-btn, .cta-btn {
  background-color: #003d42;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s ease;
}
.quiz-btn:hover, .cta-btn:hover {
  background-color: #e1ae53;
  color: #003d42;
  transform: translateY(-2px);
}
.cta-btn.small {
  padding: 10px 22px;
  font-size: 15px;
}
.cta-btn {
  text-decoration: none;
  display: inline-block;
}

#quizResult {
  min-height: 350px;
}

/* 🌿 Animaties */
@keyframes bodyFadeIn {
  to { opacity: 1; }
}
@keyframes sectionFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 640px) {
  input[type="text"], input[type="email"] { width: 90%; }
}

@media (max-width: 440px) {
  section {
    padding: 10px;
  }

  input[type="text"], 
  input[type="email"] {
    width: 90%;
  }
}
