  .timeline {
    max-width: 800px;
    margin: auto;
  }
  
  /* Styling for the timeline list */
  .timeline ul {
    list-style-type: none;
    padding: 0;
  }
  
  /* Styling each item on the timeline */
  .timeline li {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Styling the title of each timeline entry */
  .timeline li h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  /* Styling the description of each timeline entry */
  .timeline li p {
    color: #717677;
    font-size: 10px;
    margin-bottom: 0;
  }
  
  /* Add a line to the left of the timeline */
  .timeline li:before {
    content: '';
    position: absolute;
    left: -20px;
    top: 20px;
    bottom: 20px;
    width: 0px;
    background-color: #3498db;
  }
  
  /* Optional: Style the even and odd timeline items with different background colors */
  .timeline li:nth-child(odd) {
    background-color: #ecf0f1;
  }
  
  .timeline li:nth-child(even) {
    background-color: #fff;
  }
  