/* Ensure the body and html take up the full height */
html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Main content should take up all available space */
.main-content {
    flex: 1;
}

/* Footer styles */
.footer-area {
    /* background-color: #f8f9fa; */
    /* Adjust as needed */
    padding: 1rem 0;
    text-align: center;
}