/* Timeline Styles */
.timeline-container {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ea580c;
  transform: translateX(-50%);
}

.timeline-content {
  position: relative;
  width: calc(50% - 30px);
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #ea580c;
  border-radius: 50%;
}

.timeline-left {
  margin-right: auto;
}

.timeline-right {
  margin-left: auto;
}

.timeline-left::before {
  right: -40px;
}

.timeline-right::before {
  left: -40px;
}

.timeline-time {
  font-family: "Raleway", sans-serif;
  color: #ea580c;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
