@media (max-width: 700px) {
  /* Push page content below our fixed nav bar */
  body {
    padding-top: 66px !important;
  }

  /* Hide broken/desktop headers injected by site builder */
  body > header.pgdiv {
    display: none !important;
  }

  /* ── Fixed nav bar ────────────────────────────── */
  #m-mobile-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    font-family: "Open Sans", Arial, sans-serif;
    box-sizing: border-box;
  }

  #m-mobile-nav-logo {
    width: 70px;
    height: 46px;
    background: url("/files/block/bg01889.webp") center / contain no-repeat;
    flex: 0 0 auto;
    display: block;
  }

  #m-mobile-nav-phone {
    flex: 1;
    text-align: right;
    color: #294895;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  #m-mobile-nav-burger {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }

  #m-mobile-nav-burger span {
    display: block;
    height: 2px;
    background: #294895;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  #m-mobile-nav-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #m-mobile-nav-burger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  #m-mobile-nav-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Dropdown nav drawer ─────────────────────── */
  #m-mobile-nav-drawer {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.28s ease;
    font-family: "Open Sans", Arial, sans-serif;
  }

  #m-mobile-nav-drawer.is-open {
    max-height: 300px;
  }

  .m-mobile-nav-link {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1a2e6e;
    text-decoration: none;
    border-bottom: 1px solid #f0f2f8;
    transition: background 0.15s;
  }

  .m-mobile-nav-link:last-child {
    border-bottom: none;
    color: #294895;
  }

  .m-mobile-nav-link:active {
    background: #f0f4ff;
  }
}
