.timeline-wrapper {
  position: relative;
  padding-left: 0px;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 90px;
  margin-top: 40px;
  z-index: 0; /* Ensure it's below the icon */
}

/* Vertical line behind icon and content */
.timeline-item::before {
  content: "";
  position: absolute;
  top: -50px;
  bottom: -30px;
  left: 60px;
  width: 3px;
  background-color: #e0e0e0;
  z-index: -2; /* Far behind everything */
}

/* Timeline icon always stays on top */
.timeline-icon {
  position: absolute;
  padding: 10px;
  left: 61px;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 20px;
  color: var(--secondary-color);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}



/* Timeline content spacing */
.timeline-content {
  padding-left: 0;
}

.timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 10px;
  color: #000;
}

.timeline-subtitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-left: 10px;
}

.timeline-content p {
  font-size: 15px;
  margin-left: 10px;
  color: var(--ar-body-text);
}
.timeline-header {
  margin-bottom: 30px;
  padding-left: 61px;
}

.timeline-main-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
}

.timeline-subtitle-text {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.timeline-info {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px 10px;
}

.timeline-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-left: 10px;
}


