.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
    background-color: #dcdcdc; /* or dark color if in dark mode */
    color: #333;
    border-top: 1px solid white;
}
.footer-column {
    flex: 1 1 200px;
    color : inherit;
    align-self: center;
    margin-left: 175px;
}
.footer-column h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: inherit;
}
.footer-column p, .footer-column a {
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.footer-column a:hover {
    text-decoration: underline;
}
.footer-icons {
    display: flex;
    flex-direction: row; /* horizontal */
    align-items: center;
    margin-top: 10px;
}
.footer-icons a {
    margin-right: 12px; /* space between icons */
    font-size: 18px;
    color: inherit;
    transition: color 0.3s;
}
.footer-icons a:last-child {
    margin-right: 0; /* no extra margin on last icon */
}
.footer-icons a:hover {
    color: white;
}

/* Dark mode tweaks if needed */
body.dark-mode .footer-container {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

body.dark-mode .footer-container a {
    color: #fff;
}

body.dark-mode .footer-icons a {
    color: #fff;
}

body.dark-mode .footer-icons a:hover {
    color: #ccc;
}