.form-step {
    display: none;
  }
  .form-step.active {
    display: block;
  }
  
  .step-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  
  .progressbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    counter-reset: step;
  }
  .progress-step {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .progress-step::before {
    counter-increment: step;
    content: counter(step);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 2px solid #0d6efd;
    display: inline-block;
    border-radius: 50%;
    background-color: white;
    color: #0d6efd;
    margin-bottom: 10px;
    font-weight: bold;
  }
  .progress-step.active::before {
    background-color: #0d6efd;
    color: white;
  }
  .progress-step::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0d6efd;
    top: 15px;
    left: -50%;
    z-index: -1;
  }
  .progress-step:first-child::after {
    content: none;
  }