#footer {
    background-color: white;
    border-top: 1px solid var(--grey);
    margin-top: 40px;
    padding: 30px 40px;
}

#footerWrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
    max-width: 1100px;
    text-align: center;
}

#footerLegal {
    color: var(--muted);
    font-size: 14px;
}

#footerLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

.footerLinksItem {
    font-size: 14px;
    font-weight: 700;
}

.footerLinksItem:hover {
    color: var(--primary);
}

#footerContact {
    color: var(--muted);
    font-size: 14px;
}

#footerContactLink {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 800px) {
    #footer {
        padding: 24px 16px;
    }
}
