        * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }
    
    header {
      position: relative;
      width: 100%;
      background-color: #232222;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      min-height: 89px;
      height: auto;
      margin: 0 auto;
      padding: 0.5rem 2rem;
    }

    .wrap-logo{
      display: flex;
      width: auto;
      height: auto;
      padding: 5px;
    }
    
    .header-line {
        flex: 1;
        height: 9px;
        background-color: #EC6938;
      }

    .header-line-top {
      display: none;
      width: 100%;
      height: 4px;
      background-color: #EC6938;
    }

    .logo {
      display: flex;
      color: #cfcfcf;
    }

    .logo img {
      width: 110px;
      height: 29px;
      margin: 5%;
    }

    .menu-wrapper {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      margin-left: 16px;
      margin-right: 16px;
    }

    #navbar {
      display: flex;
      gap: 30px;
      margin: 0;
      padding: 0;
    }

    #navbar a {
      font-family: 'Work Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: bold;
      color: #cfcfcf;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    #navbar a:hover {
      color: #EC6938;
    }

    .lang-switch {
      display: flex;
      gap: 0.5rem;
      margin: 0px 16px 0px 16px;
      justify-content: center;
      align-self: center;
      text-align: center;
      align-items: flex-end;
      color: #f1f1f1
    }

    .lang-switch a {
      font-family: 'Work Sans', sans-serif;
      font-size: 0.938rem;
      color: #cfcfcf;
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 400;
    }

    .lang-switch a:hover {
      color: #EC6938;
    }

    .dropdown{
      display: flex;
    }

    #dropdown-language{
      background-color: #3498db;
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      right: 2%;
      top: 60%;
      text-align: start;  
      background-color: #232222;
      min-width: 140px;
      border:1px solid #cfcfcf;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 150;
      border-radius: 8px;
    }

    .dropdown-content a {
      color: #f1f1f1;
      height: auto;
      text-decoration: none;
      border-radius: 8px;
      display: block;
    }

    .show {
      display: block;
      overflow: hidden;
    }

    .dropdown-button{
      align-self: center;
    }

    .wrap-element{
      display: flex;
      flex-direction: row;
      justify-self: center;
      margin: 8px;
    }

    
    .wrap-element img{
      padding-left: 5px;
    }

    #down-icon{
      height: 22px;
      width: 22px;
      background-color: #f1f1f1;
      -webkit-mask-image: url('/assets/img/down_icon.png');
      -webkit-mask-size: contain;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-image: url('/assets/img/down_icon.png');
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;
      transition: background-color 0.3s;
    }

    #down-icon:hover{
      background-color: #EC6938;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      color: #cfcfcf;
    }

        /* Additional styles from style.css */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1e1e1e;
      padding: 1rem 2rem;
      color: white;
      background-color: #f0f0f0;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
    }

    .nav-links a {
      font-family: 'Work Sans', sans-serif;
      font-weight: bold;
      font-size: 16px;
      color: black;
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #00aaff;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 1200px) {
      .header-content {
        padding: 0.5rem 1rem;
      }
      #navbar {
        gap: 1.2rem;
      }
    }

    @media (max-width: 900px) {

      .menu-wrapper{
        width: 100%;
      }
      .header-content {
        padding: 0.5rem 0.5rem;
        flex-direction: column;
        font-size: 13.26px;
      }
      .header-line{
        display: none;
      }

      .wrap-logo{
        width: auto;
        flex-direction: row;
        align-items: center;
      }

      #navbar {
        /* display: none; */
        justify-content: center;
        width: 100vw;
        background: #232222;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 101;
      }
      #navbar.active {
        display: flex;
      }
      #navbar a {
        padding: 0.2rem 0;
        font-size: clamp(0.7rem, 2.5vw, 1rem);
      }
      .lang-switch {
        margin-left: 1rem;
      }

      .wrap-logo{
        width:  100%;
        height: auto;
      }

      .header-line-top{
        flex: 1;
        display: block;
        width: 100%;
      }

      .logo{
        flex: 1;
        justify-content: center;
      }

      .menu-toggle {
        display: block;
      }
      .lang-switch p{
        font-size: 12px;
      }

      .dropdown-content{
        top: 80%;
      }
    }
