        body { background-color: #FCF8E8; color: #3D3C42; scroll-behavior: smooth; overflow-x: hidden; }
        
        /* Header Transition */
        header { transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        .nav-hidden { transform: translateY(-100%); }

        /* Marquee */
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .animate-marquee { display: flex; animation: marquee 25s linear infinite; }

        /* Parallax Background */
        .parallax-section {
            background-image: url('https://i.pinimg.com/736x/70/4a/09/704a09c0a8eef1407f96802a9ddb39d5.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
        }

        /* Page Management */
        .page-content { display: none; min-height: 100vh; }
        .page-content.active { display: block; }

        /* Custom SVG Flower Animation */
        .flower-svg:hover { transform: rotate(15deg) scale(1.1); transition: transform 0.5s ease; }

        /* Hero Animation */
        @keyframes fadeInScale {
            from { opacity: 0; transform: scale(1.05); }
            to { opacity: 1; transform: scale(1); }
        }
        .hero-img { animation: fadeInScale 2s ease-out; }

        .no-scrollbar::-webkit-scrollbar { display: none; }