/* Typography & Base Styling */
body {
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #F5F1EB;
  color: #2E2E2E;
}
h1 {
  color: #A68F4C; /* AW Gold */
  font-weight: 500;
}
h2 {
  font-weight: 400;
  margin-top: 0;
}
a {
  color: #849795; /* AW Aqua */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Header Section */
header {
  background: url('img/banner.jpg') no-repeat center center;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 25vh; /* Full viewport height */
  /*height: auto;*/
  display: flex;
  align-items: flex-start; /* Keeps content at top */
  justify-content: center;
  }
  /*padding: 60px 20px;
  text-align: center;
  color: white;*/
/*.logo {
  max-width: 200px;
  margin-bottom: 20px;
}*/
/*.tagline {
  font-size: 1.2em;
  font-weight: 300;
}*/
/* Main Content */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh; /* Adjust as needed */
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
/* Footer */
footer {
  background-color: #2E2E2E;
  color: white;
  padding: 30px 20px;
  font-size: 0.9em;
}
.footer-content {
  max-width: 800px;
  margin: auto;
}
/* Other styles... */

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    background-size: contain;
    background-position: center top;
    min-height: auto;
  }
}