footer {
    width: 85%;
    margin: auto;
}
.footer-nav {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 12px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.footer-link {
    color: var(--text);
    font-size: 16px;
    text-decoration: none;
    display: block;
    margin-top: 4px;
}

@media (max-width: 640px) {
footer {
    width: 90%;
    margin: auto;
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
}