header {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background-color: #f5f5dc;
  gap: 2rem;
}

header img {
  height: 180px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-banner {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Lobster', cursive;
  color: #333;
  text-align: center;
  margin: 0;
}

.page-banner-sub {
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Lobster', cursive;
  color: #333;
  text-align: center;
  margin: 0;
}

.page-subtitle {
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  color: #555;
  margin-top: 10px;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner-text {
    width: 100%;
    align-items: center;
  }

  header img {
    max-width: 95%;
    height: auto;
    margin-bottom: 1rem;
  }
}




