/** Shopify CDN: Minification failed

Line 140:1 Expected "}" to go with "{"

**/
/* timeline.css */

.vertical-timeline {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

.vertical-line {
  position: absolute;
  left: 50%;
  width: 4px;
  background: #333;
  border-radius: 2px;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  z-index: 1;
}

.timeline-step {
  position: relative;
  margin: 80px 0;
  clear: both;
}

/* Number circle */
.timeline-number {
  position: absolute;
  left: 50%;
  top: 50%; /* Vertically center the number */
  transform: translate(-50%, -50%);
  background: #333;
  color: white;
  font-weight: bold;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
}

/* Desktop layout */
@media (min-width: 769px) {
  .timeline-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    line-height: 35px;
  }

  .timeline-image {
    width: 40%;
  }

  .timeline-item {
  width: 49%;
  }

  /* Odd steps: text left, image right */
  .timeline-step.odd .timeline-item {
    order: 0;
    text-align: left;
  }
  .timeline-step.odd .timeline-image {
    order: 1;
  }

  /* Even steps: image left, text right */
  .timeline-step.even .timeline-image {
    order: 0;
  }
  .timeline-step.even .timeline-item {
    order: 1;
    text-align: right;
  }

  .timeline-item {
    /*background-color: #f5f5f5;*/
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
  }

  .timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: block;
  }
}

/* Mobile stacked layout */
@media (max-width: 768px) {
  .vertical-line {
    left: 34px;
    transform: none;
    top: 0;
    bottom: 0;
  }

  .timeline-number {
    left: 0px;
    top: 0;
    transform: translateY(0);
  }

  .timeline-step {
    display: block;
    margin: 40px 0;
  }

  .timeline-item,
  .timeline-image {
    width: 100% !important;
    margin-bottom: 16px;
  }

  .timeline-item {
    padding-left: 70px !important;
    padding-right: 20px !important;
  }
  .timeline-image img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: block;
    margin-left: 69px;
    
}