.footer {
    background-color: #f8f8f8;
    padding: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

@media (min-width: 600px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .footer p {
        margin: 0;
    }
}