/* ─── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14pt;
  background: #2c751f;
  color: #fff;
  min-height: 100vh;
}

/* ─── Page wrapper ──────────────────────────────────────── */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 1rem 2rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── Logo ──────────────────────────────────────────────── */
.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  width: 92%;
  height: auto;
  display: block;
}

/* ─── Info box ──────────────────────────────────────────── */
.info-box {
  margin-top: 20px;
  text-align: center;
  line-height: 1.7;
}

.biz-name {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.info-box a {
  color: #fff;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* ─── Rates box ─────────────────────────────────────────── */
.rates-box {
  margin-top: 1.2em;
  text-align: center;
  line-height: 1.7;
}

.rates-box a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.rates-box a:hover {
  opacity: 0.85;
}

.rates-note {
  font-size: 0.78em;
  color: #d4edcf;
  margin-top: 0.2em;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Header ────────────────────────────────────────────── */
header {
  background: #1a3a5c;
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.6rem;
  letter-spacing: 0.04em;
}

header .tagline {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #b8cfe8;
}

/* ─── Sections ──────────────────────────────────────────── */
main section {
  padding: 2.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

main section:last-child { border-bottom: none; }

h2 {
  font-size: 1.5rem;
  color: #1a3a5c;
  margin-bottom: 0.8rem;
}

ul { padding-left: 1.4rem; }
li { margin-bottom: 0.3rem; }

/* ─── Footer ────────────────────────────────────────────── */
footer {
  background: #1a3a5c;
  color: #b8cfe8;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
}
