
  .site-header {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 5%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
  }  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #003366;
  }
  .logo img {
    width: 20%;
    
  }
  .logo-svg {
    margin-left: -120px;
  }
  .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: -250px;
  }
  .nav-menu a {
    text-decoration: none;
    color: #7985b9; 
    font-size: 16px;
    font-weight: 500;
    padding: 6px;
    text-align: center;
  }
  .language-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 13px; 
    font-weight: 500; 
    color: inherit; 
}
.nav-menu ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 500;
    color: #003366;
    text-decoration: none;
}
.flag-icon {
  width: 20px;
  font-size: 12px;
  height: 15px;
  margin-right: 10px; 
}
  .nav-menu a.active,
  .nav-menu a:hover {
    color: #0e167c; 
  }  
  
  .header-button {
    border: 1px solid #000;
  }
  
  .header-button {
    padding: 10px 18px;
    border: 1px solid #000;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #000;
  }  
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }

  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
  }

  .modal-content a {
    display: block;
    margin: 10px 0;
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
  }

  .modal-content a:hover {
    text-decoration: underline;
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #000;
  }
  @media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
  }

  .nav-menu ul {
    display: none;
  }

  .header-icons {
    gap: 20px;
  }

  .header-button {
    padding: 8px 15px;
    font-size: 10px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #003366;
  }
  }



