header {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 10px 40px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
header img {
  height: 70px;
  max-height: 70px;
  max-width: 160px;
  object-fit: contain;
}

/* Menu toggle (only visible on mobile) */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

/* Nav links */
nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a, nav form select {
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
}

nav a:hover {
    color: #0077cc;
}

nav form select:focus{
    outline: none;
}

/*Language Selector*/
.lang-selector{
    border: solid 2px;
    border-radius: 10px;
    padding-right: 5px;
    background-color: #FFFFFF;
    border: outset;
}

.lang-selector {
    box-shadow: 0 0 1px black;
}

.lang-selector:hover {
    box-shadow: 0 0 5px black;
}

/* Mobile View */
@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    align-items: center;
}

nav.show {
    display: flex;
}

nav a {
    margin: 10px 0;
    font-size: 1.1rem;
    padding: 10px;
}


header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: stretch;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}}