.site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure it stays above other content */
    background-color: white; /* Keep background solid */
    width: 100vw; /* Ensures full width */
    max-width: 100%;
    padding-left: 0;  /* Remove left padding */
    padding-right: 0; /* Remove right padding */
}

.header-bottom,
.header-top {
    padding-left: 70px; /* Keep internal spacing */
    padding-right: 70px;
}

/* First row */
.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Second row */
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 92px; /* Adjust as needed */
}

.header-nav .main-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav .main-menu li {
    display: inline-block;
    margin-right: 50px;
    font-size: 1.375rem;
    line-height: 1.5;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.header-link {
    text-decoration: underline;
    text-underline-offset: 10px;
}

/* Language switcher */
.language-switcher {
    display: flex;
    align-items: center;
    appearance: none; /* Removes default arrow */
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20"><polygon points="6,8 12,16 18,8" fill="%23193062"/></svg>') no-repeat right 10px center;
    background-size: 16px;
    padding-right: 28px; /* Ensure space for the larger triangle */

}


@media (max-width: 768px) {
    .header-bottom,
    .header-top {
        padding-left: 20px; /* Adjust padding for smaller screens */
        padding-right: 20px;
    }
    .header-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 1rem;
    }
    .header-nav {
        padding: 1rem;
        width: 100%;
        align-items: center;
    }
    .header-nav .main-menu {
        flex-direction: row;
        gap: 10px;
    }
    .header-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}