   /* All other styles remain the same */
   .menu-container {
    width: 100%;
    background-color: #f0ede5;
    padding: 7px;
    box-sizing: border-box;
    position: relative;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    max-width: 1400px;
    position: relative;
}

/* Updated shadow lines to face upward and maintain full opacity */
.shadow-line {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px; /* Increased height for better shadow effect */
    box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.11); /* Negative Y value for upward shadow */
}

.shadow-line-1 {
    top: calc(33.33% + 2px);
}

.shadow-line-2 {
    top: calc(66.66% + 2px);
}

/* Rest of your styles remain the same */
.menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.menu-list li {
    transition: all 0.3s ease;
}

.menu-list a {
    display: block;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: color 0.3s ease;
    font-size: 1rem;
    font-family: "Roboto";
    font-weight: 300;
    padding: 5px;
}

.menu-list a:hover {
    color: orange;
}

.language-label {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-top: 2px;
    transition: color 0.3s ease;
    font-family: "Roboto";
}

.menu-list a:hover .language-label {
    color: orange;
}

.orange-line {
    height: 3px;
    background-color: orange;
    width: 100%;
    margin: 0;
}

@media (max-width: 1023px) {
    .menu-container {
        padding-top: 80px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-list {
        display: none;
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 8px;
    }

    .menu-list.active {
        display: grid;
        animation: slideDown 0.3s ease-out;
    }

    .shadow-line {
        display: none;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .menu-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 8px;
    }
}

.menu-list a:hover {
color: orange;
}

.menu-list a:hover .language-label {
color: orange;
}