/* Smooth Scrolling for All Devices */
html {
    scroll-behavior: smooth;
}

/* Apply smooth scrolling to all elements with overflow */
div, section, article, aside, nav, main, header, footer {
    -webkit-overflow-scrolling: touch;
} 