  /* Transportation Page Styles */
      :root {
        --primary-blue: #2563eb;
        --primary-dark: #1e40af;
        --primary-light: #dbeafe;
        --secondary-green: #10b981;
        --secondary-orange: #f59e0b;
        --accent-red: #ef4444;
        --text-dark: #1f2937;
        --text-light: #6b7280;
        --bg-light: #f8fafc;
        --bg-white: #ffffff;
        --border-light: #e5e7eb;
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
          0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
          0 4px 6px -4px rgb(0 0 0 / 0.1);
        --border-radius: 12px;
      }

      /* Dark Hero Section */
      .transport-hero-section {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        color: white;
        padding: 100px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .transport-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
            circle at 20% 80%,
            rgba(37, 99, 235, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 50%
          );
        z-index: 1;
      }

      .transport-hero-section .container {
        position: relative;
        z-index: 2;
      }

      .transport-hero-section h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: linear-gradient(to right, #ffffff, #dbeafe);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .transport-hero-section p {
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto 3rem;
        color: #cbd5e1;
        line-height: 1.6;
      }

      .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        flex-wrap: wrap;
      }

      .stat {
        text-align: center;
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 0.5rem;
      }

      .stat-label {
        font-size: 0.875rem;
        color: #94a3b8;
        font-weight: 600;
      }

      /* Section Common Styles */
      .transport-options-section,
      .routes-section,
      .safety-section,
      .registration-section,
      .notes-section {
        padding: 80px 0;
      }

      .section-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .section-header h6 {
        color: var(--primary-blue);
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
      }

      .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
      }

      .section-header p {
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
      }

      /* Transport Cards */
      .transport-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 900px;
        margin: 0 auto;
      }

      .transport-card {
        background: var(--bg-white);
        border-radius: var(--border-radius);
        padding: 2.5rem 2rem;
        box-shadow: var(--shadow-lg);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .transport-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--primary-blue),
          var(--primary-dark)
        );
      }

      .transport-card.van::before {
        background: linear-gradient(90deg, var(--secondary-green), #059669);
      }

      .transport-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
          0 8px 10px -6px rgb(0 0 0 / 0.1);
        border-color: var(--primary-light);
      }

      .card-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
      }

      .transport-card.van .card-icon {
        background: #d1fae5;
      }

      .card-icon i {
        font-size: 2rem;
        color: var(--primary-blue);
      }

      .transport-card.van .card-icon i {
        color: var(--secondary-green);
      }

      .transport-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
      }

      .card-features {
        margin-bottom: 1.5rem;
      }

      .feature {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
      }

      .feature i {
        color: var(--secondary-green);
        font-size: 0.875rem;
      }

      .feature span {
        color: var(--text-dark);
        font-size: 0.95rem;
      }

      .card-note {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--bg-light);
        border-radius: 8px;
        margin-top: 1.5rem;
      }

      .card-note i {
        color: var(--primary-blue);
        margin-top: 0.25rem;
      }

      .card-note span {
        color: var(--text-light);
        font-size: 0.875rem;
        line-height: 1.5;
      }

      /* Routes Section */
      .routes-section {
        background: var(--bg-light);
      }

      .routes-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .route-card {
        background: var(--bg-white);
        border-radius: var(--border-radius);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
      }

      .route-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-blue);
      }

      .route-number {
        display: inline-block;
        background: var(--primary-blue);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 1rem;
      }

      .route-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
      }

      .route-stops {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .stop {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .stop i {
        color: var(--primary-blue);
        margin-top: 0.25rem;
        font-size: 0.875rem;
      }

      .stop span {
        color: var(--text-dark);
        font-size: 0.95rem;
        line-height: 1.4;
      }

      /* Safety Section */
      .safety-section {
        background: var(--bg-white);
      }

      .safety-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
      }

      .safety-item {
        text-align: center;
        padding: 2rem 1.5rem;
        background: var(--bg-light);
        border-radius: var(--border-radius);
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
      }

      .safety-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-blue);
      }

      .safety-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
      }

      .safety-icon i {
        font-size: 1.5rem;
        color: var(--primary-blue);
      }

      .safety-item h4 {
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
      }

      .safety-item p {
        color: var(--text-light);
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      /* Registration Process */
      .registration-section {
        background: var(--bg-light);
      }

      .process-steps {
        max-width: 800px;
        margin: 0 auto 3rem;
      }

      .step {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: var(--bg-white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border-light);
        transition: all 0.3s ease;
      }

      .step:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary-blue);
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--primary-dark)
        );
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.25rem;
        flex-shrink: 0;
      }

      .step-content h4 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
      }

      .step-content p {
        color: var(--text-light);
        margin: 0;
        line-height: 1.6;
      }

      .cta-section {
        text-align: center;
        padding: 3rem;
        background: var(--bg-white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        max-width: 600px;
        margin: 0 auto;
      }

      .cta-content h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
      }

      .cta-content p {
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.6;
      }

      .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: var(--primary-blue);
        color: white;
        padding: 1rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
      }

      .cta-button:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
      }

      .cta-button i {
        font-size: 1rem;
      }

      /* Notes Section */
      .notes-section {
        background: var(--bg-white);
        border-top: 1px solid var(--border-light);
      }

      .notes-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        background: var(--bg-light);
        border-radius: var(--border-radius);
        border: 1px solid var(--border-light);
      }

      .note-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .note-header i {
        font-size: 1.5rem;
        color: var(--secondary-orange);
      }

      .note-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
      }

      .note-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .note-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
      }

      .note-item i {
        color: var(--secondary-green);
        margin-top: 0.25rem;
        font-size: 0.875rem;
      }

      .note-item span {
        color: var(--text-dark);
        font-size: 0.95rem;
        line-height: 1.5;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .transport-hero-section h1 {
          font-size: 2.5rem;
        }

        .transport-hero-section p {
          font-size: 1.125rem;
          padding: 0 1rem;
        }

        .hero-stats {
          gap: 2rem;
        }

        .stat-number {
          font-size: 2rem;
        }

        .section-header h2 {
          font-size: 2rem;
        }

        .transport-cards {
          grid-template-columns: 1fr;
          padding: 0 1rem;
        }

        .routes-container {
          grid-template-columns: 1fr;
          padding: 0 1rem;
        }

        .step {
          flex-direction: column;
          text-align: center;
          gap: 1rem;
        }

        .step-number {
          width: 50px;
          height: 50px;
          font-size: 1.1rem;
        }

        .cta-section {
          padding: 2rem 1rem;
        }

        .cta-content h3 {
          font-size: 1.5rem;
        }
      }

      @media (max-width: 480px) {
        .transport-hero-section {
          padding: 80px 0 60px;
        }

        .transport-hero-section h1 {
          font-size: 2rem;
        }

        .hero-stats {
          flex-direction: column;
          gap: 1.5rem;
        }

        .safety-features {
          grid-template-columns: 1fr;
          padding: 0 1rem;
        }

        .transport-card {
          padding: 2rem 1.5rem;
        }

        .route-card {
          padding: 1.5rem;
        }
      }