.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
}

.footer a {
    color: #333;
    text-decoration: none;
    margin-left: 4px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-left,
.footer-right {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}