
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.timeline-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #f25a29;
  margin-bottom: 30px;
  border-bottom: 2px solid #f25a29;
  padding-bottom: 10px;
}

.timeline {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 4px solid #f25a29;
}

.timeline-entry {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.timeline-entry.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-entry::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: #f25a29;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #f25a29;
}

.timeline-date {
  font-weight: bold;
  color: #f25a29;
  font-size: 16px;
}

.timeline-content {
  margin-top: 5px;
  padding-left: 5px;
  color: #444;
  line-height: 1.6;
}
