/* ---
Footer Styles
--- */
.site-footer {
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    border-top: 1px solid #e0e0e0; /* Light border for separation */
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* Aligns menu to the left */
    align-items: center;
}

.footer-navigation ul#footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allows menu items to wrap on smaller screens */
    gap: 1rem 2rem; /* Row and column gap */
}

.footer-navigation ul#footer-menu li a {
    text-decoration: none;
    color: #525252; /* Dark grey text for readability on white */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-navigation ul#footer-menu li a:hover {
    color: #1683C6; /* Your theme's primary color on hover */
}
