.footer {
    background-color: var(--bg-secondary);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer__links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer__links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
