* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root {
  --text: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --soft: #f6f7f9;
  --border: #e5e7eb;
  --brand: #1e3a8a; /* subtle navy/blue; adjust if you want */
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  text-align: center; /* fixes the “not centered” feeling */
}

.brand {
  display: inline-block; /* makes centering predictable */
  max-width: min(820px, 100%);
  height: auto;
}

.tagline {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Sections */
.section {
  padding: 44px 0;
}

.section.alt {
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #111827; /* neutral, not “ad green” */
  letter-spacing: 0.2px;
}

p {
  color: #1f2937;
  max-width: 72ch;
  margin: 0 auto; /* keeps paragraphs centered in the column */
}

/* Lists */
.bullets {
  list-style: none;
  margin-top: 10px;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #9ca3af;
}

/* Contact */
.contact-card {
  max-width: 560px;
  margin: 12px auto 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px 18px;
}

.contact-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.label {
  width: 90px;
  color: var(--muted);
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
