.timeline {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 0px; 
}

.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #000;
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin: 40px 0;
}

.heart-icon {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-44%);
  width: 24px;
  height: 24px;
  z-index: 1;
}

.timeline-item.left .content {
  position: relative;
  width: 50%;
  left: 0;
  padding-right: 50px;
  text-align: right;
}

.timeline-item.right .content {
  position: relative;
  width: 50%;
  left: 50%;
  padding-left: 50px;
  text-align: left;
}

.timeline-image {
  width: 80px;
  height: 80px;
  object-fit:contain;
  /* border-radius: 50%; */
  margin-bottom: 5px;
}

