<style>
/* Your existing body, header, nav, and main styles are fine. */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #063d8a;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

nav {
    background: #063d8a;
    color: #fff;
    padding: 0.5rem;
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
    margin: 0 20px;
    min-height: calc(100vh - 200px); /* Adjust min-height as needed to push footer down */
}

/* --- REVISED FOOTER CSS --- */
.site-footer {
    text-align: center;
    width: 100%;
    border-top: solid 4px #063d8a;
    display: block;
    background-color: #efe;
}

.footer-table {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 40px; 
}

.footer-copyright {
    margin-top: 50px !important;
    width: 100%;
    display: block;
        text-align: center;
    background-color: #063d8a;
    color: #eee;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .footer-table {
        flex-direction: column; /* Stack the "cells" vertically */
        max-width: 100%;
    }
}
