/* ===== Base ===== */
body {
  font-family: system-ui, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #111;
}

h1, h2, h3 {
  color: #333;
  margin-top: 0;
}

main {
  max-width: 800px;
  margin: 48px auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* ===== Navigation ===== */
.site-nav {
  margin-top: 16px;
  text-align: center;
}

.site-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #007acc;
  font-weight: bold;
  padding-bottom: 2px;
}

.site-nav a.active {
  border-bottom: 2px solid #007acc;
}

/* ===== Buttons ===== */
.button,
button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  background: #007acc;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #005fa3;
}

/* ===== Forms ===== */
input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

/* ===== Messages ===== */
.thankyou {
  background: #e0f7e9;
  border: 1px solid #77c493;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  color: #046837;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 30px;
  color: #777;
  font-size: 0.9em;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: system-ui, Arial, sans-serif; /* force consistent font */
  font-size: 1em; /* force consistent size */
  box-sizing: border-box; /* ensures padding doesn't mess with width */
}
