:root {
  --color-primary: #1f5e2c;
  --color-secondary: #4caf50;
  --color-accent: #a5d6a7;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-muted: #6f747a;
  --color-border: #e7ece8;
  --shadow-soft: 0 10px 28px rgba(10, 30, 18, 0.1);
  --radius-md: 12px;
  --radius-lg: 18px;
  --container-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: #f9fafb;
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(100% - 2.4rem, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: 5.25rem 0;
}

.section__heading {
  margin-bottom: 2rem;
}

.section__heading--center {
  text-align: center;
}

.section__heading h2 {
  font-size: clamp(1.55rem, 2.05vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.section__heading p {
  color: var(--color-muted);
  max-width: 60ch;
  font-size: 0.94rem;
}

.section__eyebrow {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.78rem 1.3rem;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(31, 94, 44, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(31, 94, 44, 0.4);
}

.btn--ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

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

.btn--full {
  width: 100%;
}

.btn--size {
  font-size: 1.2rem;;
}
