/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

.mwJo-hero {
  padding: 60px 20px;
}

.mwJo-hero-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: stretch;
}

.mwJo-hero-left,
.mwJo-hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mwJo-hero-content {
  margin-bottom: 40px;
}

.mwJo-hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color:white;
}

.mwJo-hero-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color:white;
}

.mwJo-hero-content a {
  color: inherit;
  text-decoration: underline;
}

.mwJo-hero-buttons {
  display: flex;
  gap: 15px;
}

.mwJo-btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.mwJo-btn.mwJo-orange {
  background-color: #D86129;
  color: white;
  text-decoration:none;
}

.mwJo-btn.mwJo-call {
  background-color: #D86129;
  color: white;
  text-decoration:none;
}

.mwJo-hero-badges {
  flex-grow: 1;
}

.mwJo-hero-badges img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* FORM container */
.mwJo-hero-form {
  flex: 1;
  background: rgba(245, 245, 245, 0.9); /* light gray w/ opacity */
  padding: 20px;
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mwJo-hero-form iframe,
.mwJo-hero-form > div {
  flex-grow: 1;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .mwJo-hero-inner {
    flex-direction: column;
  }

  .mwJo-hero-left,
  .mwJo-hero-right {
    width: 100%;
  }

  .mwJo-hero-form {
    margin-top: 30px;
    padding: 20px;
    height: auto;
  }

  .mwJo-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .mwJo-btn {
    width: 100%;
    text-align: center;
  }
}