  .form-step { display: none; }
  .form-step.active { display: block; }
  .form-nav { margin-top: 20px; }
  .form-nav button { margin-right: 10px; }
  .review-box {
    background: #f4f4f4;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
  }
  .review-box p {
    margin: 6px 0;
  }

  /* Progress Bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 30px;
  position: relative;
  counter-reset: step;
}

.progressbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #ddd;
  transform: translateY(-50%);
  z-index: -1;
}

.progress-step {
  width: 35px;
  height: 35px;
  background-color: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: bold;
  color: #fff;
}

.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step.active {
  background-color: #e86e0a;
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 45px;
  font-size: 12px;
  color: #555;
}

  .form-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px 30px;
    max-width: 600px;
    width: 100%;
    margin: 40px auto;
  }

  h1, h2 {
    color: #333;
    margin-bottom: 15px;
  }

  p {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
  }

  form label {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #333;
  }

  form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  form p a{
    color: #e86e0a;
  }

  .form-step { display: none; }
  .form-step.active { display: block; }

  .form-nav {
    margin-top: 20px;
  }

  .apply-btn {
    display: inline-block;
    background: #e86e0a;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 25px;
    transition: 0.2s;
    font-size: 14px;
  }

  .apply-btn:hover {
    background: #c75e09;
  }

  .review-box {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
  }

  .review-box h3 {
    margin-bottom: 10px;
    color: #e86e0a;
  }

  .review-box p {
    margin: 6px 0;
    font-size: 14px;
  }

  .checkbox-label {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    color: #333;
  }