:root {
  --brand: #69be94;
  --brand-dark: #57a97f;
  --text: #0f172a;
  --muted: #5b6573;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --radius: 8px;
  --maxw: 1200px;
  --border: #e6eaef;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lexend", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline:hover {
  background: #eef8f3;
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.pill {
  display: inline-block;
  border-radius: 999px;
  background: #eef8f3;
  color: #256f4f;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 10px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: 700;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section {
  padding: 56px 0;
  max-width: 100vw !important;
  margin-block: 0rem;
}

.hero {
  background: var(--bg-alt);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  margin-top: 8.5rem;
  max-width: 100vw !important;
}

.wp-site-blocks {
  padding-inline: 0 !important;
}

header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-size: 14px;
  color: #2b3340;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: #f5f5f5;
}

.nav a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav a.active {
  color: var(--brand);
  font-weight: 600;
}

footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 14px;
  color: #6b7685;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.table th,
.table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}

strong {
  font-weight: bolder;
}

.table th {
  background: #f7f9fb;
}

.notice {
  background: #fff6e6;
  border: 1px solid #ffe0a6;
  color: #5d3b00;
  border-radius: var(--radius);
  padding: 12px;
}

.list-check {
  list-style: none;
  margin-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.cta-band {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav ul {
    display: none;
  }
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    margin-top: 0rem;
    padding-inline: 1.5rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .section:last-of-type {
    padding-inline: 0;
  }

  .section:last-of-type > div {
    padding: 1.125rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .hero {
    margin-top: 8.5rem;
    padding: 56px 0;
  }
}
