.site-footer {
    background-color: var(--bg-color);
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.site-footer p {
    margin: 0;
    color: var(--text-light);
}

.footer-nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav a {
    color: var(--primary-darker);
    text-decoration: none;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--primary-darker-hover);
    text-decoration: underline;
}