/* Gateway Page - Make header scrollable (not fixed) */

/* Remove fixed positioning from navbar */
.navbar.fixed-top {
    position: relative !important;
    top: auto !important;
}

/* Ensure header is scrollable */
header {
    position: relative !important;
}

/* Adjust body padding that might be added for fixed headers */
body {
    padding-top: 0 !important;
}

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

/* Remove any z-index that might interfere */
.navbar, header {
    z-index: auto !important;
}
