
  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .header {
    background-color: #003893;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    gap: 200px;
  }
  .header a {

    color: white;
    text-decoration: none;

  }
  .header-left {
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    max-width: 33%;
  }

  .header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-center img {
    height: 100px;
  }

  /* Переключатель языка */
  .lang-switch {
    display: flex;
    gap: 6px;
    margin-right: 80px;
  }

  .lang-switch a {
    color: white;
    text-decoration: none;
    padding: 3px 8px;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
  }

  .lang-switch a:hover {
    background-color: white;
    color: #003893;
  }

  .lang-switch .active {
    background-color: white;
    color: #003893;
    font-weight: bold;

  }

  .right-container {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-right {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
  }

  .header-right a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-bottom: 6px;
  }

  .header-right img {
    height: 20px;
    width: 20px;
    margin-right: 9px;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .header {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 5px;
      padding: 5px 10px;
    }

    .header-left {

      max-width: none;
      font-size: 10px;
      line-height: 1.1;
      text-align: left;
    }

    /* Логотип по центру */
    .header-center {
      position: static;
      left: auto;
      transform: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .header-center img {
      height: 28px;
    }

    .lang-switch {
      margin-right: 0;
      gap: 3px;
    }

    .lang-switch a {
      font-size: 10px;
      padding: 2px 5px;
      border-width: 1px;
    }

    /* Прячем контакты */
    .header-right {
      display: none;
    }
  }
