/* Footer Fix - Ensure footer sticks to bottom on short pages */

/* Make html and body fill the viewport */
html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make the main content area grow to fill available space */
body > *:not(.footer-section):not(.footer-bottom) {
    flex: 1 0 auto;
}

/* Ensure footer stays at the bottom */
.footer-section,
.footer-bottom {
    flex-shrink: 0;
}

/* Alternative fix using wrapper if needed */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper > *:not(.footer-section):not(.footer-bottom) {
    flex: 1;
}