/* STICKY FOOTER - Ensure footer always touches bottom */

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main content grows to push footer down */
main,
.main-content,
.page-wrapper,
.content-wrapper,
.hero-section,
section {
    flex: 1 0 auto;
}

/* Footer stays at bottom */
footer {
    flex-shrink: 0;
}
