.timeline-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}.timeline {
  width: 100%;
  max-width: 100%;
}

.timeline-header p {
  letter-spacing: 3px;
  font-size: 14px;
  opacity: 0.75;
}

.timeline-header h2 {
  font-size: 60px;
  margin: 10px 0 0;
  color: #ffffff;
}

.timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  width: 3px;
  background: rgba(255, 255, 255, 0.22);
  top: 485px;
  bottom: 376.5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.timeline-content img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
}

.timeline-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  opacity: 0.82;
  line-height: 1.6;
}

/* timeline pontok */
.timeline-item::after {
  content: "";
  position: absolute;
  top: 280px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 4px solid #5f7cff;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 6px rgba(95, 124, 255, 0.14);
}

.timeline-item.left::after {
  right: -9px;
}

.timeline-item.right::after {
  left: -9px;
}

/* MOBILE – VONAL A PÖTTYHÖZ BAL OLDALON */
/* MOBILE – VONAL A PÖTTYHÖZ BAL OLDALON */
@media (max-width: 768px) {

  /* vonal balra */
  .timeline-line {
    left: 25px;
    transform: none;
    top: 495px;      /* hol indul */
    bottom: 295px;   /* hol ér véget */
  }

  /* minden item egy oszlop */
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    padding: 30px 0 30px 70px;
  }

  /* pöttyök EGY VONALBAN */
  .timeline-item::after,
  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 25px;
    right: auto;
    transform: translateX(-50%);
  }
}.timeline {
  background: linear-gradient(
    180deg,
    #020617 0%,
    #1b2c6b 100%
  );
  