/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #E6E8EC;
    border-radius: 100px;
    padding: 10px;
    color: white;
    top: 0;
    z-index: 1000;
}

.header-logo {
    background: #FFDE3B;
    color: #00152B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
} 

.options {
    display: flex;
    align-items: center;
}

.option {
    margin-left: 20px;
    cursor: pointer;
}

.language-switcher ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.language-switcher li {
    margin-left: 10px;
}

.language-link {
    color: white;
    text-decoration: none;
}

.language-link:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .options {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #E6E8EC;
        position: absolute;
        top: 50px;
        left: 0;
        padding: 10px 0;
    }

    .option, .language-switcher li {
        margin: 10px 0;
    }
}
