/* --- ЛОГО И МЕНЮ --- */

    .menu-brand a:link,
    .menu-brand a:visited {
      text-decoration: none;
      color: #8b0000;
    }
    .menu-brand a:hover {
      text-decoration: none;
      color: #8b0000;
    }

    .main-menu {
      position: fixed !important;
      top: 0 !important; left: 0 !important; width: 100% !important;
      z-index: 99999 !important;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.1);
      display: flex; align-items: center;
      padding: 12px 24px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.15);
      pointer-events: auto;
    }

    .menu-brand { font-weight: bold; color: #8b0000; font-size: 1.2rem; }

/* Кнопка мобильного меню (≡) */
    .mobile-toggle {
      display: none;
      background: transparent;
      border: 1px solid #ccc;
      padding: 8px 12px;
      cursor: pointer;
      font-size: 1.1rem;
      color: #333;
      margin-left: auto;
      border-radius: 6px;
    }
    .mobile-toggle:hover { border-color: #8b0000; color: #8b0000; }
    .mobile-toggle span { margin-left: 6px; }

/* Обычное меню (ссылки) */
    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
      margin-left: 40px;
    }
    .nav-links a { text-decoration: none; color: #333; font-weight: 500; }

/* Выпадающее меню */
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      right: 24px;
      background: #fff;
      padding: 16px;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      width: 260px;
      max-width: calc(100% - 48px);
      z-index: 99999;
      display: none;
    }
    .dropdown-menu.active { display: block; }
    .dropdown-menu ul { list-style: none; }
    .dropdown-menu li { margin: 8px 0; }
    .dropdown-menu a {
      text-decoration: none;
      color: #333;
      display: block;
      padding: 10px 16px;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      transition: all 0.2s ease;
      font-size: 0.95rem;
    }
    .dropdown-menu a:hover {
      border-color: #8b0000;
      color: #8b0000;
      background-color: #fff5f5;
    }

    .overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.5); z-index: 99998; display: none;
    }
    .overlay.active { display: block; }

/* Контент */

    .content-area {
      padding-top: 72px; padding-bottom: 40px;
      max-width: 1200px; margin-left: auto; margin-right: auto;
    }
