:root {
  --bg: #f4f0e6;
  --bg-soft: #faf7ef;
  --panel: #fffdf7;
  --text: #1f2f24;
  --muted: #5f6f62;
  --line: #d8d2c3;
  --green: #3d7a4a;
  --green-dark: #2f613a;
  --green-soft: #e8f0e6;
  --shadow: 0 18px 50px rgba(38, 52, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(61, 122, 74, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f4ec 0%, #f1ecdf 100%);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px;
  text-align: center;
}

h1:first-of-type {
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

h1 + h1,
.wrap > h1:last-of-type {
  max-width: 780px;
  margin: 0 auto 18px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--text);
}

h2 {
  margin: 64px auto 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
}

p {
  margin: 0 auto 18px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.big {
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.45;
  color: var(--text);
  max-width: 720px;
}

.highlight {
  margin-top: 28px;
  margin-bottom: 24px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  font-weight: 700;
}

.buttons {
  margin-top: 34px;
  margin-bottom: 26px;
}

.buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.buttons a:hover {
  transform: translateY(-1px);
}

.primary {
  background: linear-gradient(180deg, #4a8a56 0%, #376d43 100%);
  color: #fdfbf5 !important;
  box-shadow: 0 10px 28px rgba(61, 122, 74, 0.18);
}

.secondary {
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(61, 122, 74, 0.22);
  color: var(--green-dark) !important;
  box-shadow: var(--shadow);
}

img {
  width: 100%;
  display: block;
  border-radius: 26px;
  margin: 38px 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(61, 122, 74, 0.08);
}

a {
  color: var(--green-dark);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

p a {
  color: var(--green-dark) !important;
  text-decoration: none !important;
  font-weight: 600;
}

p a:hover {
  color: var(--green) !important;
}

.wrap > p:last-child,
.wrap > p:nth-last-child(2) {
  font-size: 19px;
}

body > .wrap {
  padding-top: 42px;
  padding-bottom: 64px;
}

body > .wrap > p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .wrap {
    padding: 22px 18px;
  }

  h2 {
    margin-top: 52px;
  }

  p {
    font-size: 17px;
  }

  .buttons a {
    width: 100%;
    max-width: 320px;
  }

  img {
    border-radius: 18px;
    margin: 30px 0;
  }
}