.zed-mega-menu {
  background: #0b3c5d;
  font-family: Arial, sans-serif;
}

.zed-mega-menu .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.zed-mega-menu .menu > li {
  position: relative;
}

.zed-mega-menu a {
  color: #fff;
  padding: 16px 18px;
  display: block;
  text-decoration: none;
}

.zed-mega-menu a:hover {
  background: #145c8c;
}

.has-mega:hover .mega {
  display: flex;
}

.mega {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 850px;
  background: #fff;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 999;
}

.mega-col {
  flex: 1;
  padding: 0 15px;
}

.mega-col h4 {
  color: #0b3c5d;
  margin-bottom: 10px;
}

.mega-col a {
  color: #333;
  padding: 6px 0;
}

.mega-col a:hover {
  color: #0b3c5d;
}

.highlight {
  background: #f5f8fb;
  border-radius: 6px;
}

.highlight p {
  font-size: 14px;
  color: #444;
}

.cta {
  margin-top: 10px;
  background: #0b3c5d;
  color: #fff !important;
  text-align: center;
  border-radius: 4px;
}