
body {
  font-family: Arial, sans-serif;
  background: #f7f8fa;
  display: flex;
  justify-content: center;
  margin-top: 4%;
}

.div-h2-item {
    border-left: 6px solid #182549;
    padding-left: 1rem;
    margin-bottom: 20px;
}

.div-h2-item span {
    color: gray;
}

.quiz-step {
  display: none;
}

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

.subtitle {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #0e1c2f;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
}

.option:hover {
  border-color: #182549;
  background: #deeefa;
}

.success {
  color: #182549;
  font-size: 22px;
}

.form-group {
  margin-bottom: 15px;
}

input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 4px;
}

.btn-submit {
  background: #182549;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #0c1738;
}

.terms {
  font-size: 12px;
  margin-top: 10px;
  color: #555;
}

.terms a {
  color: #182549;
  text-decoration: none;
}

.quiz-step h1 {
    color: #182549;
}

.progress-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 11px;
    width: 100%;
    background: lightgray;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    width: 0%;
    background: #182549;
    transition: width 0.3s ease;
  }
  
  .quiz-container {
    position: relative;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    width: 90%;
    max-width: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
  }
  
  .btn-back {
    margin-top: 15px;
    background: none;
    border: none;
    color: gray;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .material-icons {
    font-size: 20px;
  }
  
  .option.selected {
    border-color: #182549;
    background: #deeefa;
  }
  @media (max-width: 768px) {
    .quiz-container {
      max-width: 85%;
      padding: 25px;
    }
  }
  .quiz-step-title {
    color: #0e1c2f;
  }

  .form-group label {
    color: #0e1c2f;
    font-size: 12pt;
  }
  
  .quiz-logo {
    margin-top: 20px;
    text-align: center;
  }
  
  .quiz-logo img {
    max-width: 120px;
    height: auto;
    display: inline-block;
    opacity: 0.9;
  }

  .text-center {
    text-align: center;
  }
