  /* --- CSS Variables & Reset --- */
        :root {
            --primary-orange: #f15a24;
            --alpine-blue: #00d2ff;
            --dark-slate: #212839;
            --glass: rgba(255, 255, 255, 0.05);
            --text-light: #f8fafc;
        }

       .expedition-page {
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--dark-slate);
            color: var(--text-light);
            line-height: 1.6;
        }

        .line-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* --- Header Section --- */
        .hero-header {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), var(--dark-slate)),
                        url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }


        .subtitle {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #94a3b8;
        }

        /* --- Peaks Banner --- */
        .peaks-ribbon {
            background: var(--primary-orange);
            color: white;
            padding: 15px 0;
            text-align: center;
            font-weight: bold;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .peaks-ribbon p{
            color: white;
            margin-bottom: 0px;

        }

        /* --- Services Grid --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--glass);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 35px;
            border-radius: 20px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--alpine-blue);
            background: rgba(0, 210, 255, 0.05);
        }

        .service-card h2 {
            color: var(--alpine-blue);
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-card h2::before {
            content: '🏔';
            font-size: 1.2rem;
        }

        .service-list {
            list-style: none;
            padding: 0;
        }

        .service-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #cbd5e1;
        }

        .service-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-orange);
        }

        /* --- Footer Callout --- */
        .footer-cta {
            text-align: center;
            margin-top: 80px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
        }

        .footer-cta p {
            font-size: 1.2rem;
            color: #94a3b8;
        }

        .highlight {
            color: var(--primary-orange);
            font-weight: bold;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            
        }