
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

.hero {
  background: linear-gradient(to right, #1f1f1f, #3b0a45);
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  max-width: 700px;
  padding: 20px;
}

h1 {
  font-size: 4rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff4fd8;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
}

section {
  padding: 60px 20px;
}

.quiz-box, .card, article {
  background: #1d1d1d;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.quiz-box {
  max-width: 500px;
  margin: auto;
}

.quiz-box select,
.quiz-box button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
}

.quiz-box button {
  background: #ff4fd8;
  color: white;
  font-weight: bold;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

article a {
  color: #ff8df2;
  text-decoration: none;
  font-weight: bold;
}

.aftercare ul {
  line-height: 2;
}

footer {
  text-align: center;
  padding: 20px;
  background: #0b0b0b;
}
