/* Centering container */
.bannerContainer {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width 100%;
  padding: 0 1rem;
}

#jdpBanner {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content vertically */
  justify-content: center;
  font-family: montserrat;
  font-size: 1.15rem;
  color: inherit;
  font-weight: 500;
}

#outerJdpImageContainer {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center image and text */
  text-align: center;
}

#jdpImageContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
}

#jdpBanner img {
  max-width: 100px;
  height: auto;
  margin-bottom: 8px;
  margin-top: -10px; 
  margin-left: 2rem;
  margin: -10px 0 8px 2rem;
  position: relative;
  z-index: 1; 
}

#jdpBanner h3 {
  color: #ffffff !important;
  line-height: 1.2;
  margin-left: -1rem;  
}

#jdpDisclaimer {
  font-size: 0.7rem;
  color: #ffffff !important;
  text-align: center;
}

#jdpDisclaimer a {
  color: #ffffff !important;
  font-weight: 600 !important;
}

#jdpBanner .large-text{ 
  font-size: 1.65rem;
}

#jdpBanner .yellow-bold {
  color: #f6b334 !important;
  font-weight: 800;
}

@media (max-width: 580px) {
  #jdpBanner {
    font-size: 0.65rem;
  }

  #jdpImageContainer {
    display: flex;
    flex-direction: column;
  }

  #jdpBanner h3 { 
    font-size: 0.96rem;    
    margin-left: 0;  
  }

  #jdpDisclaimer {
    font-size: 0.60rem;
  }

  #jdpBanner .large-text{ 
    font-size: 1rem;
  }

  #jdpBanner img {
    margin: .5rem 0 8px 0px;
  }
}