.quiz-wrapper {
  font-family: 'Archivo', sans-serif;
  padding: 20px;
  text-align: left;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.step-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #172f40;
  color: #172f40;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-dot.completed {
  background-color: #172f40;
  color: #ffffff;
}

.step-line {
  height: 2px;
  width: 30px;
  background-color: #172f40;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.question {
  margin-bottom: 20px;
}

.question label {
  display: block;
  margin: 5px 0;
}

.question.two-column label {
  display: inline-block;
  width: 48%;
  box-sizing: border-box;
}

.quiz-controls {
  margin-top: 20px;
}

.quiz-controls button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  background-color: #172f40;
  color: white;
  margin-right: 10px; display: inline-block; float: right;
}

.quiz-controls button[type="submit"] {
  background-color: #a69a7e;
}

.result {
  background: #f4f4f4;
  padding: 20px;
  margin-top: 30px;
  border-left: 5px solid #172f40;
  display: none;
}
