
.landing-bg {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically instead of spacing out */
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

body {
  font-family: 'STIX Two Text', serif;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: #3B748F;
  letter-spacing: 0.1em;
  font-size: 2.5rem;
}

.cta-group a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  background: #3B748F;
  padding: 1rem 2.5rem;
  border-radius: 9px;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-group p {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.6;
}

@media only screen and (min-width: 344px) and (max-width: 539px){

  h1 {
    font-size: 2rem;
  }
  .landing-bg {
    padding: 0 1rem;
  }
  img {
    width: 75%;
  }
  .cta-group p {
    font-size: 1.1rem;
  }

}

@media only screen and (min-width: 540px) and (max-width: 767px){

  h1 {
    font-size: 2rem;
  }
  .landing-bg {
    padding: 0 1rem;
  }
  img {
    width: 55%;
  }
  .cta-group p {
    font-size: 1.1rem;
  }

}
