.admission-section {
  padding: 4rem 0;
  background: white;
}

.timeline-wrapper {
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.admission-timeline {
  position: relative;
  padding: 2rem 0;
}

.admission-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--holberton-blue), var(--holberton-magenta));
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-content {
  width: calc(50% - 40px);
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  left: 0;
  border-radius: 15px 15px 0 0;
}

.step-content h3 {
  font-size: 1.4rem;
  color: var(--holberton-blue);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--text-dark);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .admission-timeline::before {
    left: 20px;
  }
  
  .timeline-step {
    flex-direction: row !important;
    margin-left: 40px;
  }
  
  .step-content {
    width: calc(100% - 60px);
  }
}