/* footer.css */
footer {
    background-color: #003366;
    color: #ffffff;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    padding: 20px 0;
    font-size: 14px;
    text-align: center; /* Center align text for all screen sizes */
}
.footer-content {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}
.footer-section {
    margin: 10px 0; /* Reduced margin for a tighter look */
}
.footer-section h2,
.footer-section p,
.footer-section a {
    margin: 5px 0; /* Reduced margin for a tighter look */
}
.footer-section a {
    text-decoration: none;
    color: #ffffff;
    display: inline-block; /* Align links next to each other */
    margin-right: 10px; /* Add spacing between links */
}
.footer-section a:last-child {
    margin-right: 0; /* Remove right margin for the last link */
}
.footer-section a:hover {
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    margin-top: 10px; /* Add some space above the border */
}

/* Adjustments for larger screens can be made with a media query if needed */
@media (min-width: 769px) {
    .footer-content {
        flex-direction: row; /* Row direction for larger screens */
        justify-content: space-between;
    }
    .footer-section {
        text-align: left; /* Align text to the left on larger screens */
        margin: 20px 0; /* Increase margin for larger screens */
    }
    .footer-bottom {
        text-align: center; /* Keep footer bottom text centered */
    }
}