.timeline {
  position: relative;
  margin: 60px 0;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #ccc;
  transform: translateX(-50%);
}

.step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  position: relative;
}

.step-content {
  background: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  width: 45%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.step-left .step-content {
  margin-right: auto;
}

.step-right .step-content {
  margin-left: auto;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #ffb200;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #ccc;
}

.step h3 {
    margin-top: 0;
    color: #0b1d3a;
    font-size: 30px;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }
.timeline {
    margin: 60px 20px 0px 0px;
}
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
.step h3 {
    font-size: 22px;
}
  .step-content {
    width: 100%;
    margin-left: 30px !important;
    margin-right: 0 !important;
  }

  .step-number {
    left: -18px;
    transform: translateY(-50%);
  }
}
