:root {
  --bg: #f5f7f4;
  --text: #13241c;
  --muted: #506156;
  --brand: #0d7045;
  --brand-dark: #0a5837;
  --card: #ffffff;
  --border: #dfe6df;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.hero {
  margin-top: 18px;
  border-radius: 24px;
  background: linear-gradient(120deg, #0f5f3d, #137346 58%, #f2c94c);
  color: #fff;
  padding: 34px 30px;
}

.hero-inner {
  display: flex;
  gap: 22px;
  align-items: center;
}

.logo {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
}

h1 {
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.subtitle {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 650px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: #ffffff;
  color: var(--brand-dark);
}

.btn-primary:hover {
  background: #f2f6f3;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.content {
  margin-top: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
}

.content h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.content p,
.content li {
  color: #334338;
  line-height: 1.6;
}

.content ul {
  margin-top: 8px;
}

.footer {
  margin-top: auto;
  padding: 16px 0 20px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-links {
  display: flex;
  gap: 12px;
}

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

@media (max-width: 640px) {
  .hero {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .hero-inner {
    gap: 14px;
    align-items: flex-start;
  }

  .logo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
