   .header-container-pc, .header-container-mobile {
      display: none; /* Hide both by default */
    }



 /* @media (min-width: 768px) { */
  @media (min-width: 1400px) {
.header-container-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    /* width: 100%; */
    max-width: 100%;
    }
}
    
    .header-container-centerTexts-pc {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .header-text-pc {
    text-decoration: none;
    font-family: Inter, Arial;
    font-size: 15px;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0px;
    color: black;
    }
    
    
    .flagImage {
        height: 12px;
    }

    body {
        background-color: rgb(247, 247, 247);
    }



    /* MOBILE */
  /* @media (max-width: 767px) { */
   @media (max-width: 1399px) {
    .header-container-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    margin-left: 15px; 
    margin-right: 15px; 
  
    }
}

/* Mobile styles (≤767px) */
/* @media (max-width: 767px) { */
 @media (max-width: 1399px) {
  .header-container-mobile {
    display: flex;
    padding: 0px;

  }

  .header-container-mobile nav {
    position: relative;
  }

  /* Hide checkbox */
  #checkBurger {
    display: none;
  }

  /* Style hamburger button */
  .checkBurger-button {
    display: inline-block;
    cursor: pointer;
    line-height: 0; 
    padding: 5px;
  }

  .checkBurger-button img {
    display: block;
  }

  /* Navigation menu (hidden by default) */
  .nav-mobile {
    display: none;
    flex-direction: column;
    background: #fff; /* White background for menu */
    position: absolute; /* Position relative to nav */
    top: 100%; /* Below hamburger image */
    width: 50%; /* Your specified width */
    min-width: 280px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    z-index: 90;
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* Show menu when checkbox is checked */
  #checkBurger:checked ~ .nav-mobile {
    display: flex;
  
  }

  /* Style navigation links */
  .burger-link {
    text-decoration: none;
    padding: 10px;
    font-family: Inter, Arial;
    font-size: 25px;
    font-weight: 300;
    line-height: 16px;
    letter-spacing: 0px;
    color: black;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .burger-link:hover {
    background: #e0e0e0; /* Hover effect */
  }
}

footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 50px;
  margin-bottom: 0px; 
  box-sizing: border-box;
}

footer nav {
  width: 100%;
  text-align: center;
  /* position: relative; */
  /* left: 50%; */
}


footer a {
     text-align: center;
    font-family: Inter, Arial;
    font-size: 11px;
    color: #606060; /* Link color */
    text-decoration: none; /* Remove underline */
  
}