* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* NAV WRAP */
.nav-wrap {
  background: #00244d;
  position: relative;
  z-index: 9999;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: #fff200;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo span {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* NAV LIST */
.nav-list {
  display: flex;
  align-items: stretch;
  list-style: none;
  height: 70px;
}

.nav-list > li {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-list > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 0 15px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color .2s;
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
  color: #fff200;
}

.nav-list > li > a .arr {
  font-size: 10px;
  transition: transform .25s;
  display: inline-block;
}

.last-child {
  display: none !important;
}

/* ── DROPDOWN ── */
.drop-panel {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  background: #fff200;
  border-radius: 10px;
  min-width: 220px;
  padding: 8px;
  z-index: 500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

/* Bridge to avoid hover flicker */
.drop-panel::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-list > li:hover .drop-panel {
  display: block;
}

.drop-panel li {
  list-style: none;
}

.drop-panel li a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.drop-panel li a i {
  color: #fff200;
  width: 14px;
  text-align: center;
  font-size: 13px;
}

.drop-panel li a:hover {
  background: #fff;
}

.drop-panel li.drop-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 5px 8px;
}

/* SUB MENU */
.drop-panel li.has-sub {
  position: relative;
}

.drop-panel li.has-sub > a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
}

.drop-panel li.has-sub > a:hover::after {
  color: #ed6f22;
}

.sub-panel {
  display: none;
  position: absolute;
  left: 100%;
  top: -8px;
  background: #fff200;
  border-radius: 10px;
  min-width: 210px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.drop-panel li.has-sub:hover .sub-panel {
  display: block;
}

.sub-panel li a {
  font-size: 13px;
}

/* CTA BUTTON */
.btn-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff200;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .2s;
}

.btn-cta:hover {
  background: #fff200;
}

/* HAMBURGER */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media(max-width:960px) {

  .last-child {
    display: flex;
  }

  .ham {
    display: flex;
  }

  .nav-list,
  .btn-cta {
    display: none;
  }

  .nav-list.open {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #00244d;
    border-top: 2px solid #fff200;
    padding: 8px 0 16px;
    z-index: 9998;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-list > li {
    display: block;
  }

  .nav-list > li > a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .drop-panel {
    position: static;
    display: none;
    box-shadow: none;
    border-left: 3px solid #fff200;
    margin-left: 20px;
    border-radius: 0;
  }

  .drop-panel::before {
    display: none;
  }

  .mob-open .drop-panel {
    display: block;
  }

  .sub-panel {
    position: static;
    display: none;
    margin-left: 16px;
    border-left: 2px solid rgba(255, 255, 255, .1);
    border-radius: 0;
    box-shadow: none;
  }

  .drop-panel li.has-sub.mob-open .sub-panel {
    display: block;
  }

  .mob-arr {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    cursor: pointer;
  }

  .mob-open > .mob-arr {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* PAGE CONTENT */
.page {
  padding: 60px 40px;
  text-align: center;
  color: #667;
}

.page h2 {
  color: #00244d;
  font-size: 26px;
  margin-bottom: 10px;
}

.page p {
  font-size: 14.5px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}