    .container {
      max-width: 100%;
    }
    h2 {
      font-weight: 700;
      color: #0b3d91;
      margin-bottom: 2.5rem;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    h2 i.material-icons {
      vertical-align: middle;
      font-size: 2.6rem;
      margin-right: 10px;
      background: linear-gradient(45deg, #0050f9, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    }
    
        /* Group titles */
    .group-title {
      font-weight: 700;
      font-size: 1.8rem;
      color: #1a73e8;
      margin-bottom: 25px;
      padding-bottom: 5px;
      border-bottom: 2px solid #1a73e8;
      user-select: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .group-title i {
      font-size: 2rem;
      color: #1a73e8;
    }

    /* Timeline line */
    .timeline {
      position: relative;
      padding-left: 40px;
      margin-left: 20px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 15px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, #0050f9 0%, #00aaff 100%);
      border-radius: 4px;
    }

    /* Step card */
    .roadmap-step {
      position: relative;
      background: #fff;
      border-radius: 12px;
      padding: 25px 30px 25px 60px;
      margin-bottom: 30px;
      box-shadow: 0 12px 22px rgb(0 80 249 / 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }
    .roadmap-step:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 40px rgb(0 80 249 / 0.3);
    }

    /* Step number badge */
    .step-badge {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      background: linear-gradient(135deg, #0050f9, #00aaff);
      color: white;
      font-weight: 700;
      font-size: 1.4rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 8px rgb(0 80 249 / 0.5);
      user-select: none;
    }

    /* Step icon with gradient fill */
    .step-icon {
      font-size: 2.6rem;
      background: linear-gradient(45deg, #0050f9, #00aaff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      vertical-align: middle;
      margin-right: 14px;
      user-select: none;
      filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    }

    /* Step title flex container */
    .roadmap-step h4 {
      font-weight: 700;
      font-size: 1.8rem;
      color: #0b3d91;
      display: flex;
      align-items: center;
      margin-bottom: 18px;
      user-select: none;
    }

  .roadmap-step ul {
	  padding-left: 1.15rem;
	  color: #2c3e50;
	  font-size: 1.5rem;
	  font-weight: 500;
	  line-height: 1.45;
	}
	
	.roadmap-step ul ul {
	  padding-left: 1.1rem;
	  font-size: 1.2rem;
	  font-weight: 400;
	  color: #455a75;
	}
	
	.roadmap-step ul li {
	  margin-bottom: 12px;
	  user-select: text;
	}
	
	.roadmap-step ul li b {
	  color: #1b2a54;
	}

    /* Icon styles for list items */
    .list-icon {
      font-size: 22px;
      color: #0050f9;
      vertical-align: middle;
      margin-right: 6px;
      user-select: none;
    }
    
    
    /* Slight transparency and rounded corners */
#roadmapModal .modal-content {
    background: rgba(255, 255, 255, 0.9); /* White but slightly transparent */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); /* Soft shadow */
    border: none;
}

/* Optional: make header and footer blend in */
#roadmapModal .modal-header,
#roadmapModal .modal-footer {
    border: none;
    background: transparent;
}