/* Header and Navigation */
header {
    color: #000000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 2rem;
}

.menu li a, .language-switch {
    color: #000000;
    text-decoration: none;
}

/* Footer */
footer {
    border-top: 2px solid #000000;
    background-color: #ffffff;
    color: #000000;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-menu a {
    color: #000000;
    text-decoration: none;
    margin: 0 2rem;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #000000;
    text-decoration: none;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        flex-direction: column;
        width: 100%;
    }

    .menu li {
        margin: 0.5rem 0;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-menu {
        flex-direction: column;
        align-items: flex-start;
    }
}