/* custom.css */
html, body {
  height: 100%;
}
#page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#content-wrap {
  flex: 1;
}
footer {
  margin-top: auto;
}


/* /css/custom.css */
body {
  font-family: Arial, sans-serif;
}

.hero {
  background: url('/assets/hero-banner.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 60px 15px;
}

.hero h1 {
  font-size: 2rem;
  font-weight: bold;
}

.hero p {
  font-size: 1rem;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 20px;
  }
  .hero h1 {
    font-size: 3em;
  }
  .hero p {
    font-size: 1.2em;
  }
}

.cta-btn {
  margin-top: 20px;
}

footer {
  background: #004080;
  color: white;
  padding: 20px;
  text-align: center;
}

