s 
  /* General Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
   margin-bottom: 0px !important;
   margin-top: 0px !important; 
   margin-left: 0px !important;
   margin-right: 0px !important;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Menu */
  /* --------------DESKTOP MENU Styles -----------------------*/
  .logo { 
    color: var(--menu-text-color);
  }
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .menu-desktop {
    justify-content: space-between;
    align-items: center;
    height: var(--menu-height);
    background-color: var(--menu-bg-color);
    box-shadow: 0 1px 3px var(--menu-shadow-color);
    padding-top: 0px;
  }
  
  /* Menu Desktop */
  .menu-desktop .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .menu-desktop .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--menu-bg-color); /* Add this line */
    min-width: 220px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  
  .menu-desktop .dropdown:hover .dropdown-content {
    display: block;
    padding: 10px 16px !important;
  }
  
  .menu-desktop .dropdown-content a {
    display: block;
    padding: 6px 12px !important;
    /* padding-top: 10px; */
  }
  
  .menu-desktop .dropdown-content a:hover {
    background-color: var(--menu-hover-color);
  }
  
  .menu-desktop .menu-items a {
    padding: 0 16px;
    color: var(--menu-text-color);
  }
  
  .menu-desktop .menu-items .active,
  .menu-desktop .menu-items a:hover {
    color: var(--menu-hover-color);
    text-decoration: underline;
  }
  
  .menu-desktop .icons {
    display: flex;
    align-items: center;
  }
  
  .menu-desktop .icons a {
    margin-left: 8px;
  }
  .menu-desktop .icons a i {
  color: var(--menu-text-color);
}

.menu-desktop .menu-items,
.menu-desktop .icons {
  padding-top: 0px; /* Adjust the value as needed */
}

.menu-desktop .language-dropdown .fas {
  color: var(--menu-text-color);
}

.menu-desktop .language-dropdown .language-list {
  display: none;
  position: absolute;
  background-color: var(--menu-bg-color);
  min-width: 160px; /* Adjust this as needed */
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.menu-desktop .language-dropdown:hover .language-list {
  display: block;
}

.menu-desktop .language-dropdown .language-list li {
  padding: 12px 16px; /* Adjust this as needed */
}

.menu-desktop .language-dropdown .language-list li:hover {
  background-color: var(--menu-hover-color);
}

.menu-desktop .language-dropdown .language-list a {
  display: block;
  color: var(--menu-text-color);
}

.menu-desktop .language-dropdown .menu-item-text {
  padding: 0 16px;
  color: var(--menu-text-color);
}

.menu-desktop .language-dropdown .menu-item-text:hover {
  color: var(--menu-hover-color);
  text-decoration: underline;
}

/*---- Mobile Menu ----*/
.hamburger-menubar {
  justify-content: space-between;
  align-items: center;
  height: var(--menu-height-mobile);
  background-color: var(--menu-bg-color);
  box-shadow:æ 0 1px 3px var(--menu-shadow-color);
  padding-top: 0px;
}
.menu-mobile  {
  display: flex;
  flex-direction: column;  /* Organize children vertically */
  align-items: center;    /* Center children horizontally */
  justify-content: center; /* Center children vertically */
  position: relative;
  visibility: hidden;
  height: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - var(--menu-height-mobile)); /* Adjust the height here */
  background-color: var(--menu-bg-color);
}

.menu-mobile .menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.menu-mobile .menu-items a {
  color: var(--menu-text-color);
}

.menu-mobile .icons {
  /* position: absolute;
  bottom: 20px; */
  display: flex;
  gap: 10px;
  flex-direction: row;
  padding-top: 60px;
}
.menu-desktop .icons a i,
.menu-mobile .icons a i {
    color: var(--menu-text-color);
}


.hamburger {
  display: block;
  position: fixed;
  top: 10px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--menu-text-color);
  z-index: 9999;
}

.hamburger i {
  margin-right: 5px;
}

.hamburger.open ~ .menu-mobile {
  display: block;
}
/* For close button */
.menu-mobile .close-menu {
  /* Remove absolute positioning and other attributes */
  color: var(--menu-text-color);
  cursor: pointer;
  /* Add some margin if necessary */
  margin-bottom: 20px;
}

/* For sub-menu indicators and sub-menu display */
.menu-mobile .menu-item {
  position: relative;
}

.menu-mobile .menu-item .submenu-indicator {
  position: absolute;
  right: 10px;
  cursor: pointer;
  color: var(--menu-text-color);
}

.menu-mobile .menu-item .submenu {
  display: none;
  flex-direction: column;
}

/* For submenu indicator arrow */
.menu-mobile .menu-item .submenu-indicator.open {
  transform: rotate(90deg);
}

/*
.menu-mobile .icons a i {
  color: inherit; /* Add this line */
}
*/



/*---- Conditionals for menu type ---- */
/* Mobile-first approach: mobile styles are default, larger screen styles are inside media queries */

/* Mobile styles */
.hamburger {
  display: block;
}

.menu-desktop {
  display: none;
}
.hamburger-menubar { 

  display: block;
}
.panelmenu-language-dropdown {
  display: block;
}
.language-dropdown {
  display: none;
}

/* Larger screen styles */
@media screen and (min-width: 768px) {
  .hamburger {
      display: none;
  }
  .hamburger-menubar {
    display: none;
  }

  .menu-desktop {
      display: flex;
  }
  .language-dropdown {
    display: inline-block;
  }
}


/* --------------END DESKTOP MENU Styles -----------------------*/


  /* Accordion */
  .accordion {
    cursor: pointer;
    position: relative;
  }
  
  .accordion .icon-arrow {
    position: absolute;
    right: 0;
  }
  
  .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .language-dropdown {
    position: relative;
    cursor: pointer;
  }

  .language-dropdown .menu-item-text {
    color: var(--menu-text-color);
  }  
  
  .language-dropdown i {
    font-size: 20px;
  }
  
  .language-list {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style-type: none;
    padding: 0;
  }
  
  .language-list li {
    padding: 8px 16px;
  }
  
  .language-list li:hover {
    background-color: #f1f1f1;
  }
  
  .language-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
  }
  
  .language-list img {
    margin-right: 8px;
    width: 20px;
    height: auto;
  }
  
/* ... other CSS rules ... */

.language-dropdown:hover .language-list {
  display: block !important;
}


/* Language Switcher */
.language-dropdown {
  position: relative;
  cursor: pointer;
  color: var(--menu-text-color);
}

.language-dropdown .language-list {
  display: none;
  position: absolute;
  min-width: 160px;
  background-color: var(--menu-bg-color);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.language-dropdown:hover .language-list {
  display: block;
}

.language-dropdown .language-list a {
  display: block;
  padding: 12px 16px;
  color: var(--menu-text-color);
}

.language-dropdown .language-list a:hover {
  background-color: var(--menu-hover-color);
}

/* Lang switcher mobile */
/* Language Switcher for Mobile */
.menu-mobile .language-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-mobile .language-list {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 12px 0;
}

.menu-mobile .language-list a {
  color: var(--menu-text-color);
}

.menu-mobile .panelmenu-languages {
  position: absolute;
  color: var(--menu-text-color);
  font-size: 10px
}
.menu-mobile .panelmenu-languages a { 
  color: var(--menu-text-color);
  font-size: 10px
}

..menu-mobile .language-list a.active {
  text-decoration: underline;
}



/* ... other CSS rules ... */
/* - Panel menu for mobile - */

.panelmenu-container {
  background-color: var(--menu-bg-color);
  width: 100%;
 /* height: 100vh; */
  position: fixed;
  top: var(--menu-height-mobile);
  left: 0;
  overflow-y: auto;
  display: block; /* Initially hidden */
  padding-bottom: 60px;
}

.panelmenu-menu, .panelmenu-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panelmenu-item--has-submenu .panelmenu-submenu {
  display: none; /* Initially hidden */
  margin-left: 20px; /* Indentation for submenu */
}

.panelmenu-link {
  color: var(--menu-text-color);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panelmenu-link:hover, .panelmenu-link.active {
  color: var(--menu-hover-color);
  text-decoration: underline;
}

.panelmenu-arrow {
  transition: transform 0.3s ease;
}

.panelmenu-item--has-submenu.expanded .panelmenu-arrow {
  transform: rotate(90deg); /* Arrow down when expanded */
}

.panelmenu-item {
  margin-bottom: 10px; /* Increase this value to increase spacing between menu items */
}

.panelmenu-icons {
  /* position: absolute;
  bottom: 20px; */
  position: absolute;
  display: flex;
  gap: 10px;
  flex-direction: row;
  padding-top: 60px;
  color: var(--menu-text-color);
}




  