.timeline-container-3db60b36 {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
}

.timeline-row-3db60b36 {
  display: flex;
  flex-direction: row;
  min-width: 600px;
  justify-content: space-between;
}

.timeline-item-3db60b36 {
  position: relative;
  flex: 1;
  text-align: left;
  padding: 0 15px;
}

.timeline-circle-3db60b36 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #212121;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Horizontal Connector Line - Now Continuous Behind Circles */
.timeline-item-3db60b36:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px; /* Default: Half of circle height */
  left: 50%;
  right: -50%;
  border-top: 2px solid #212121;
  z-index: 1;
  transition: border-color 0.3s ease;
}

.timeline-content-3db60b36 {
  position: relative;
  z-index: 2;
}

.timeline-title-3db60b36 {
  font-size: 1.15rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #212121;
}

.timeline-desc-3db60b36 {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .timeline-row-3db60b36 {
    flex-direction: column;
    min-width: auto;
  }
  
  .timeline-item-3db60b36 {
    padding-left: 80px;
    padding-bottom: 40px;
    text-align: left;
  }

  .timeline-circle-3db60b36 {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

  /* Vertical Connector Line on Mobile */
  .timeline-item-3db60b36:not(:last-child)::after {
    top: 30px;
    left: 30px;
    right: auto;
    bottom: -40px;
    border-top: none;
    border-left: 2px solid #212121;
    height: calc(100% + 40px);
    transition: border-color 0.3s ease;
  }
}
