/* How It Works Section */
        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .step-card {
            flex: 1;
            min-width: 280px;
            background: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            border-bottom: 4px solid var(--brand-teal);
            transition: 0.3s;
        }

        .step-card:hover { transform: translateY(-5px); border-bottom-color: var(--brand-red); }
        .step-icon { font-size: 3rem; color: var(--brand-red); margin-bottom: 20px; }
        .step-card h3 { color: var(--secondary); margin-bottom: 10px; font-weight: 700; }
        .step-card p { color: #666; font-size: 0.95rem; }

        /* Route Cards (Detailed) */
        .route-section-title {
            text-align: center; margin-bottom: 50px;
        }
        .route-section-title h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; }
        .route-section-title p { color: #666; max-width: 700px; margin: 0 auto; }

        .route-grid-large {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .route-card-lg {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            transition: 0.3s;
        }

        .route-card-lg:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

        .route-lg-img { height: 250px; position: relative; }
        .route-lg-img img { width: 100%; height: 100%; object-fit: cover; }
        .route-badge { position: absolute; top: 20px; right: 20px; background: var(--brand-red); color: white; padding: 5px 15px; border-radius: 4px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }

        .route-lg-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
        .route-lg-body h3 { color: var(--secondary); font-size: 1.5rem; margin-bottom: 15px; }
        .route-lg-body p { color: #555; margin-bottom: 20px; flex-grow: 1; }
        
        .route-features { list-style: none; padding: 0; margin-bottom: 25px; }
        .route-features li { margin-bottom: 8px; color: #666; display: flex; align-items: center; gap: 10px; }
        .route-features li i { color: var(--brand-teal); }

        /* Schedule Table */
        .schedule-table-container { overflow-x: auto; margin-top: 20px; background: white; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .schedule-table { width: 100%; border-collapse: collapse; min-width: 600px; }
        .schedule-table th { background: var(--brand-teal); color: white; padding: 15px; text-align: left; font-family: var(--font-head); text-transform: uppercase; font-size: 0.9rem; }
        .schedule-table td { padding: 15px; border-bottom: 1px solid #eee; color: #555; font-size: 0.95rem; }
        .schedule-table tr:nth-child(even) { background-color: #f9f9f9; }
        .schedule-table tr:hover { background-color: #f0f0f0; }
        .status-open { color: #28a745; font-weight: 700; }
        .status-limited { color: #ffc107; font-weight: 700; }
        .status-full { color: #dc3545; font-weight: 700; }

        @media (max-width: 768px) {
            .process-steps { flex-direction: column; }
            .hero h1 { font-size: 2.5rem; }
        }