<style>
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #333;
    }

    header img {
        max-width: 150px;
    }

    nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 20px;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        font-family: Arial, sans-serif;
    }

    nav ul li a:hover {
        text-decoration: underline;
    }

    .language-selector {
        display: flex;
        gap: 10px;
    }

    .language-selector a img {
        border-radius: 50%;
        border: 1px solid white;
        padding: 2px;
        transition: transform 0.3s;
    }

    .language-selector a img:hover {
        transform: scale(1.2);
    }
</style>
