:root {
  --bg: #f8faf8;
  --bg-card: #ffffff;
  --bg-hero: #f0f7f0;
  --green-50: #e8f5e9;
  --green-100: #c8e6c9;
  --green-200: #a5d6a7;
  --green-500: #2e7d32;
  --green-600: #1b5e20;
  --green-700: #0d3d12;
  --text: #1a2f1a;
  --text-muted: #4a5f4a;
  --border: #c5e1c5;
  --shadow: 0 4px 20px rgba(46, 125, 50, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.header-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--green-600);
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .header-nav {
    justify-content: center;
  }
}

/* Main */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  flex: 1;
}

.hero {
  background: var(--bg-hero);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.hero-title {
  font-size: 1.5rem;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text);
}

.content-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 225, 197, 0.6);
}

.block-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.section-content {
  font-size: 0.95rem;
  color: var(--text);
}

.section-content p {
  margin-bottom: 0.5rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.section-content ul {
  margin: 0.5rem 0 0 1.25rem;
}

.section-content li {
  margin-bottom: 0.35rem;
}

.highlight {
  background: var(--green-50);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-weight: 500;
}

a {
  color: var(--green-600);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem 0;
  margin-top: auto;
}

.footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col p,
.footer-col a {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-col a:hover {
  color: var(--green-600);
}

.footer-payments {
  background: var(--bg-hero);
  padding: 1rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.payments-strip {
  max-width: 100%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  display: inline-block;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (min-width: 600px) {
  .page {
    padding: 2.5rem 2rem 4rem;
  }
  .content-block {
    padding: 1.75rem 2rem;
  }
}
