/* ============================
   GLOBAL RESET
============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f6f6f4;
  color: #1f2a1f;
}

/* ============================
   TYPOGRAPHY
============================ */
h1, h2, h3 {
  margin: 0 0 0.75rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* ============================
   LINKS & BUTTONS
============================ */
a {
  color: #2b6cb0;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button,
.cta {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}


/* ============================
   HEADER / NAV
============================ */
.site-header {
  background: #2e3b2f;
  color: white;
  padding: 1rem 1.5rem;
}

.site-header .logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.site-header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-header a {
  color: white;
  font-weight: 500;
}

.site-header .cta {
  margin-left: auto;
}

/* Mobile menu stack */
@media (max-width: 768px) {
  .site-header nav {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================
   FOOTER
============================ */
footer {
  background: #2e3b2f;
  color: white;
  padding: 2rem;
  text-align: center;
}
