        body {
            background-color: #FAF3E1;
            color: #000000;
            overflow-x: hidden;
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #000000;
        }
        ::-webkit-scrollbar-thumb {
            background: #E2852E;
        }

        /* Parallax Optimization */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        @media (max-width: 1024px) {
            .parallax-bg {
                background-attachment: scroll;
            }
        }

        /* Multi-page Navigation Setup */
        .page-view {
            display: none;
        }
        .page-view.active-view {
            display: block;
        }
