    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Scroll reveal animations - progressive enhancement only */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #F9F7F2;
    }
    ::-webkit-scrollbar-thumb {
        background: #D4E2D9;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #2D5A4E;
    }

    /* Input autofill styling */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px #F9F7F2 inset !important;
    }
</style>
