.onboarding-timeline {
    padding: 80px 30px;
    background-color: #000;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: #fff;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .section-header p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
  }
  
  .timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    border-top: 2px solid #444;
    padding-top: 40px;
    flex-wrap: wrap;
  }
  
  .timeline-step {
    text-align: center;
    width: 180px;
    position: relative;
    background: transparent;
  }
  
  .timeline-step .circle {
    width: 42px;
    height: 42px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
  }
  
  .timeline-step p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .timeline {
      flex-direction: column;
      border-top: none;
      gap: 40px;
    }
  
    .timeline-step {
      width: 100%;
      padding-top: 60px;
    }
  
    .timeline-step .circle {
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  