        @import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@300;400;600;700&display=swap');

        @font-face {
            font-family: 'howdy_lemonregular';
            src: url('howdylemon-webfont.woff2') format('woff2'),
                url('howdylemon-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;

        }

        :root {
            --primary: #60e3ed;
            --secondary: #f8fafc;
            --accent: #94a3b8;
            --dark: #1e293b;
            --light: #f5f6fa;
        }

        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .faq-item {
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background-color: rgba(96, 227, 237, 0.1);
        }

        .logo {
            max-width: 200px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
        }

        .logo-font {
            font-family: 'howdy_lemonregular';
            color: #000;
        }

        .hero-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }

        .btn-primary {
            background: #000;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--dark);
            transform: translateY(-2px);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .polaroid-effect {
            background: white;
            padding: 15px 15px 60px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transform: rotate(-2deg);
        }

        .polaroid-effect:nth-child(even) {
            transform: rotate(2deg);
        }

        /* Make the mobile menu overlay the whole screen */
        #mobileMenu {
            position: fixed;       /* instead of static */
            top: 205px;             /* adjust this to match your nav height */
            left: 0;
            right: 0;
            background: #fff;      /* white menu panel */
            z-index: 9999;         /* keep it above content */
        }
        
        section[id] {
          scroll-margin-top: 205px; /* same as header height */
        }
