/* Smooth Scroll for One-Page Navigation */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed header */
section[id] {
    scroll-margin-top: 100px;
}

/* Better scroll offset for mobile */
@media (max-width: 991px) {
    section[id] {
        scroll-margin-top: 80px;
    }
}