 body {
            background-color: #FAFAF8;
            font-family: 'Inter', sans-serif;
            color: #222;
            scroll-behavior: smooth;
        }

        /* Hero Section Parallax Setup */
        #hero-section {
            background-image: url('https://i.pinimg.com/736x/b0/0d/8b/b00d8bef45550c2ac16a11ca7915da92.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            height: 100vh;
        }
        
        /* Gold CTA Button Style */
        .btn-gold-outline {
            border: 2px solid #E8C27C;
            color: #E8C27C;
            transition: all 0.3s ease;
        }
        .btn-gold-outline:hover {
            background-color: #E8C27C;
            color: #1A2A44;
            box-shadow: 0 5px 20px rgba(232, 194, 124, 0.6);
            transform: translateY(-1px);
        }

        /* Primary Button Style (Navy) */
        .btn-navy {
            background-color: #1A2A44;
            color: #FAFAF8;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(26, 42, 68, 0.2);
        }
        .btn-navy:hover {
            background-color: #1A2A44;
            box-shadow: 0 5px 20px rgba(232, 194, 124, 0.4);
            border-color: #E8C27C;
            color: #E8C27C;
            transform: translateY(-1px);
        }

        /* Glassmorphism Effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(232, 194, 124, 0.3);
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
