        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --pine-green: #2D5016;
            --forest-green: #3D6B1F;
            --sandstone: #D4A574;
            --mist-gray: #B8C5D1;
            --charcoal: #2C2C2C;
            --white: #FFFFFF;
            --cream: #F8F6F0;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--charcoal);
            background-color: var(--cream);
        }

        /* Sticky Navigation */
        .nav-container {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(20px);
            background: rgba(248, 246, 240, 0.9);
            border-bottom: 1px solid rgba(45, 80, 22, 0.1);
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--pine-green);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }

        .nav-menu a:hover {
            color: var(--pine-green);
        }

        .book-now-btn {
            background: linear-gradient(135deg, var(--pine-green), var(--forest-green));
            color: white !important;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
        }

        .book-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: var(--pine-green);
            transition: 0.3s;
        }

        /* Hero Section */
          /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(45, 80, 22, 0.4), rgba(44, 44, 44, 0.3)),
                        url('/images/header.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-content {
            max-width: 800px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--sandstone), #E6B886);
            color: var(--charcoal);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            opacity: 0.7;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }

        /* Adventure Packages Section */
        .packages {
            padding: 100px 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--pine-green);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.3rem;
            color: var(--charcoal);
            opacity: 0.8;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(45, 80, 22, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
        }

        .package-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .explorer { background: linear-gradient(135deg, #4CAF50, #45a049); }
        .weekend { background: linear-gradient(135deg, #FFC107, #FF9800); }
        .wild-heart { background: linear-gradient(135deg, #2196F3, #1976D2); }
        .family { background: linear-gradient(135deg, #9C27B0, #7B1FA2); }
        .veterans { background: linear-gradient(135deg, #F44336, #D32F2F); }

        .package-card h3 {
            font-size: 1.8rem;
            color: var(--pine-green);
            margin-bottom: 1rem;
        }

        .package-card p {
            color: var(--charcoal);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .package-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .package-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(45, 80, 22, 0.1);
            color: var(--charcoal);
        }

        .package-features li:before {
            content: "✓";
            color: var(--forest-green);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .package-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--pine-green);
            margin-bottom: 1rem;
        }

        /* Trackchair Section */
        .trackchair {
            background: linear-gradient(135deg, var(--pine-green), var(--forest-green));
            color: white;
            padding: 100px 2rem;
            text-align: center;
        }

        .trackchair-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .trackchair h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .trackchair-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        /* Email Capture */
        .email-capture {
            background: var(--mist-gray);
            padding: 80px 2rem;
            text-align: center;
        }

        .email-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .email-form h3 {
            font-size: 2rem;
            color: var(--pine-green);
            margin-bottom: 1rem;
        }

        .form-group {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .form-group input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--mist-gray);
            border-radius: 10px;
            font-size: 1rem;
        }

        .form-group button {
            background: var(--pine-green);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-group button:hover {
            background: var(--forest-green);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: white;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: var(--sandstone);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section a {
            color: var(--mist-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--sandstone);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(248, 246, 240, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .form-group {
                flex-direction: column;
            }

            .floating-element {
                display: none;
            }
        }