/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #eef3ef;
  color: #1e2a23;
  line-height: 1.6;
}

/* SHELL */
.page-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* HERO */
.hero {
  margin-bottom: 60px;
}

.logo-wrap {
  margin-bottom: 30px;
}

.logo {
  width: 56px;
  height: auto;
  opacity: 0.9;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f8a78;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #1e2a23;
}

/* SECTIONS */
.section {
  margin-bottom: 50px;
}

.section h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
  color: #2f4739;
}

.section p {
  margin-bottom: 14px;
  color: #2a3b31;
}

.section ul {
  margin-top: 10px;
  padding-left: 18px;
}

.section li {
  margin-bottom: 6px;
  color: #2a3b31;
}

/* EXAMPLE CARD */
.example-card {
  background: #f6f9f6;
  border: 1px solid #d8e3db;
  padding: 16px 18px;
  border-radius: 8px;
  margin: 14px 0 18px;
}

.example-card p {
  margin-bottom: 6px;
}

.example-card p:last-child {
  margin-bottom: 0;
}

/* FOOTER */
.footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #d8e3db;
}

.footer a {
  color: #2f4739;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}
