body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #222;
}
.site-wrapper {
  max-width: 1200px;
  margin: auto;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ccc;
}
.logo-container .top-logo {
  max-height: 50px;
}
.nav-links {
  display: flex;
  gap: 1rem;
}
.nav-link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.nav-button {
  padding: 0.5rem 1rem;
  border: 2px solid #000088;
  text-decoration: none;
  font-weight: bold;
  color: #000088;
}
.hero-banner {
  background: url('images/hero.jpg') center center / cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 2rem;
  text-align: center;
}
.hero-overlay h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}
.intro, .statement, .features {
  padding: 2rem;
  text-align: center;
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}
.feature {
  max-width: 400px;
  text-align: center;
}
.feature img {
  width: 100%;
  height: auto;
}
.feature h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
}
