body {
  margin: 0;
  font-family: 'Merriweather', serif;
  background-color: #fff;
}

.mega-header {
  background-color: #000;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
}

.nav-left a,
.nav-right a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: gold;
}

.logo img {
  height: 45px;
  width: 173px !important;
  display: block;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  min-width: 330px;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: center;
    min-width: unset;
    gap: 15px;
  }

  .logo img {
    margin: 10px 0;
  }
}


.hero-background {
  background-image: url('https://cdn-fjgjn.nitrocdn.com/BrXJCINxzOmYTEshGlrauLUjGznALaLE/assets/images/optimized/rev-c2f8da6/network1.com/wp-content/uploads/2022/05/Depositphotos_309260126_XL-scaled.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.overlay-content {
    max-width: 1140px;
    height: 50vh;
    margin: 0 auto;
}

