/* Timeline Container */
.timeline-container {
    position: relative;
    margin: 20px 0;
    padding: 0;
  }
  
  /* Individual Timeline Item */
  .timeline-item {
    position: relative;
    padding: 20px 0;
  }
  
  /* Vertical Line */
  .timeline-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background: #C5C5C5;
  }
  
  /* Remove Line After Last Item */
  .timeline-item:last-child::after {
    display: none;
  }
  
  /* Timeline Icon */
  .timeline-icon {
    position: absolute;
    left: 22px;
    background: #fff;
    border: 2px solid #C5C5C5;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    top: 20px;
    z-index: 1;
  }
  
  /* Timeline Content */
  .timeline-content {
    margin-left: 60px;
  }
  
  .timeline-content h3 {
    margin-top: 0;
    font-size: 1.2em;
  }
  
  .timeline-content p {
    margin: 5px 0;
    color: #555;
  }
  
  .timeline-content ul {
    list-style-type: disc;
    margin-left: 20px;
  }