body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff8f0;
  color: #03366a;
  margin: 0;
  padding: 0;
}

.quiz-banner img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.quiz-container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.quiz-container h1 {
  text-align: center;
  color: #d35400;
  margin-bottom: 30px;
}

.question {
  background-color: #fff3e0;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 5px solid #d35400;
}

.question p {
  font-weight: 600;
}

button {
  background-color: #d35400;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #e67e22;
}

#result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.back-btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #03366a;
  font-weight: 700;
}
