.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 40px;
  padding: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-line {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: #d3dce6;
  z-index: 0;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  z-index: 1;
}

.circle {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #d3dce6;
  border-radius: 50%;
  z-index: 2;
}

.step span {
  margin-top: 10px;
  font-size: 18px;
  color: #2d3a4a;
  font-weight: 800;
}

/* Aktywny krok */
.step.active .circle {
  border-color: #00a389;
}

.step.active span {
  color: #2d3a4a;
}

.step .circle::after,
.step .circle::before {
  content: none !important;
  display: none !important;
}

.step span::after,
.step span::before {
  content: none !important;
  display: none !important;
}

.timeline::before {
  content: none !important;
  display: none !important;
}
