/* Sticky Footer Fix */
html, body {
height: 100%;
margin: 0;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
flex: 1; /* This forces the content area to grow and push the footer down */
}
footer {
width: 100%;
background-color: #000; /* Matching your black footer bar */
padding: 20px 0;
}