        body {
            font-family: 'Merriweather', serif;
            color: #1a1a1a;
            background-color: #fdfdfd;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .sans-serif {
            font-family: 'Inter', sans-serif;
        }

        /* Scrollytelling Animation Classes */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }