
/* Шапка остается вверху при прокрутке */
.header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}
/* Убираем подчеркивание у всех ссылок меню на ВСЕХ страницах */
.menu__link,
.menu__link:visited,
.menu__link:hover,
.menu__link:active,
.menu__link:focus {
  text-decoration: none !important;
  color: #333 !important;
  padding: 5px 10px !important;
  transition: all 0.3s ease !important;
}

/* Подсветка активной вкладки */
.menu__link.active {
  color: #3498db !important;
  font-weight: bold !important;
  border-bottom: 3px solid #3498db !important;
}

/* Эффект при наведении на неактивные вкладки */
.menu__link:hover:not(.active) {
  color: #2980b9 !important;
  background-color: #f5f5f5 !important;
}

/* Принудительно выравниваем высоту шапки на всех страницах */
/* Фиксированная высота шапки на ВСЕХ страницах */
.header {
  height: 100px !important;
  min-height: 100px !important;
  max-height: 100px !important;
  overflow: hidden !important;
}

.header_wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100% !important;
  min-height: 100px !important;
  max-height: 100px !important;
  padding: 10px 20px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.header__logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header__logo-image {
  max-height: 70px !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.header__region {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Убираем влияние заголовков h1 на layout */
h1 {
  margin-top: 0 !important;
}