 .roadmap-container {
      max-width: 900px;
      margin: 80px auto;
      padding: 30px;
      background: var(--white);
      color: var(--black);
      border-radius: 16px;
      box-shadow: 0 0 25px rgba(0,0,0,0.25);
    }

    .roadmap-title {
      text-align: center;
      font-size: 36px;
      font-weight: bold;
      color: var(--gold);
      margin-bottom: 30px;
    }

    .timeline {
      position: relative;
      padding-left: 30px;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 12px;
      width: 6px;
      height: 100%;
      background-color: var(--gold);
      border-radius: 3px;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 40px;
      padding-left: 20px;
    }

    .timeline-item::before {
      content: '📍';
      position: absolute;
      left: -8px;
      font-size: 18px;
    }

    .timeline-quarter {
      font-size: 20px;
      font-weight: bold;
      color: var(--black);
      margin-bottom: 10px;
    }

    .timeline-details {
      background: #f9f9f9;
      padding: 15px 20px;
      border-left: 4px solid var(--gold);
      border-radius: 8px;
    }

    .timeline-details ul {
      margin: 0;
      padding-left: 18px;
    }

    .timeline-details li {
      margin-bottom: 8px;
    }

    @media screen and (max-width: 600px) {
      .timeline::before { left: 8px; }
      .timeline-item { padding-left: 25px; }
      .timeline-item::before { left: -2px; }
    }