/* TIMELINE SECTION */
.timeline-section {
  max-width: 1300px;
  margin: 80px auto 60px auto;
  padding: 0 24px;

}

.timeline-title {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 78px;
  letter-spacing: 0;
  text-align: center;
  color: #0044E9;
  margin-bottom: 48px;
}

.timeline-boxes {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.timeline-box {
  width: 270px;
  height: 247px;
  border: 1px solid #0044E9;
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  position: relative;
  box-sizing: border-box;
}

.timeline-icon {
  width: 109px;
  height: 109px;
  object-fit: contain;
  margin-bottom: 12px;
  margin-top: 20px;
}

.timeline-box-label {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 23px;
  color: #232323;
  text-align: center;
  margin-bottom: 4px;
}

.timeline-box-date {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #0044DB;
  text-align: center;
}

.timeline-bottom-row {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.timeline-criteria {
  text-align: center;
  min-width: 320px;
  margin-bottom: 16px;
}

.timeline-criteria-title {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #232323;
  margin-bottom: 4px;
}

.timeline-criteria-desc {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
}

.timeline-separator {
  width: 2px;
  height: 48px;
  background: #777;
  margin: 0 32px;
  border-radius: 1px;
}

.timeline-btn {
  border-radius: 8px;
  background: #0044E9;
  color: #fff;
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  border: none;
  cursor: pointer;
  padding: 10px 47px 10px 32px;
  text-align: center;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.timeline-btn:hover {
  background: #0033b3;
}

/* RESPONSIVE - Timeline Section */
@media (max-width: 1024px) {
  .timeline-title {
    font-size: 56px;
    line-height: 64px;
  }

  .timeline-box {
    width: 220px;
    height: auto;
    padding-bottom: 24px;
  }

  .timeline-icon {
    width: 70px;
    height: auto;
    margin-top: 0px;
  }

  .timeline-box-date {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .timeline-section{margin: 25px auto;}
  .timeline-title {
    font-size: 50px;
    line-height: 52px;
  }

  .timeline-boxes {
    display: grid;
    gap: 17px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 25px;
  }

  .timeline-box {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 0;
    border-radius: 0;
  }

  .timeline-bottom-row {
    flex-direction: column;
    gap: 18px;
    text-align: center;
    margin-top: 25px;
  }

  .timeline-separator {
    display: none;
  }

  .timeline-btn {
    width: 100%;
    max-width: 270px;
    font-size: 25px;
    padding: 16px;
  }
  .timeline-box-label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  .timeline-box {
    max-width: 100%;
  }

  .timeline-box-date {
    font-size: 18px;
  }

  .timeline-criteria-title {
    font-size: 22px;
  }

  .timeline-criteria-desc {
    font-size: 18px;
  }
}
