.site-footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    border-top: 1px solid #333333; /* Dark gray divider for black background */
}

.site-footer p {
    margin: 0;
}

.site-footer a.footer-link {
    color: #ffffff; /* White for link and visited states */
    text-decoration: none;
    background-color: #333333; /* Dark gray background for contrast */
    padding: 2px 4px; /* Slight padding for visibility */
    border-radius: 3px; /* Rounded corners */
}

.site-footer a.footer-link:visited {
    color: #ffffff; /* Ensure visited links stay white */
}

.site-footer a.footer-link:hover {
    background-color: #4b5ed7; /* Lighter blue on hover, matches site */
    text-decoration: none;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 15px;
        font-size: 12px;
    }
}