.footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding: 1.5rem 1rem;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links a {
    margin-right: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #007BFF;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-company a {
    color: #000;
    text-decoration: none;
}

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

.footer-locale {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.locale-switcher a {
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    color: #007BFF;
    font-weight: bold;
    border-radius: 4px;
}

.locale-switcher a.active {
    color: white;
    background-color: #007BFF;
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

/* Responsive */
@media (max-width: 640px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        margin-bottom: 0.5rem;
    }

    .footer-locale {
        margin-top: 0.5rem;
    }
}
