/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* CSS Variables for colors and fonts */

.bannerContainer {
  --primary-color: #22577A;
  --text-gray: #808693;
  --bg-white: #FFFFFF;
  --font-family: "DM Sans", sans-serif;

  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-white);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  max-width: 1050px;
  width: 100%;
  padding: 18px;
  gap: 24px;
  margin: auto;
  margin-top: 4rem ;
  margin-bottom: 4rem ; 
  box-sizing: border-box;
}

.bannerImageWrapper {
  flex-shrink: 0;
}

.bannerImageWrapper svg {
  max-width: 140px;
  height: auto;
  display: block;
}

.bannerContent {
  flex: 1;
  text-align: left;
}

.bannerTitle {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: var(--font-family);
}

.bannerDescription {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
  font-family: var(--font-family);
  margin: 0px;
}

.bannerAction {
  flex-shrink: 0;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 18px;
  border-radius: 18px;
  transition: opacity 0.2s ease;
  font-size: 1rem;
  font-family: var(--font-family);
}

.btnPrimary:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bannerContainer {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .bannerContent {
    text-align: center;
  }

  .bannerImageWrapper svg {
    max-width: 180px;
    margin: 0 auto;
  }

  .bannerAction {
    width: 100%;
  }

  .btnPrimary {
    justify-content: center;
    width: 100%;
  }
}

/* Large screen adjustments */
@media screen and (min-width: 1620px) {
  /* .bannerContainer {
    max-width: 1470px;
  } */

  .bannerTitle {
    font-size: 24px !important;
  }

  .bannerDescription {
    font-size: 21px;
  }

  .btnPrimary {
    font-size: 18px;
    padding: 12px;
  }
}

