:root {
  --blue: #1F4E79;
  --green: #4F8A3B;
  --teal: #2F8F9D;
  --sage: #EAF3EC;
  --warm: #F7F6F2;
  --gold: #E0A800;
  --ink: #1f2933;
  --muted: #5f6b76;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
}

a {
  color: var(--blue);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #d9e4dd;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--blue);
}

.logo {
  width: 64px !important;
  height: 48px !important;
  object-fit: contain !important;
  display: block;
  flex-shrink: 0;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.92rem;
  color: var(--green);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: var(--blue);
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  text-decoration: underline;
}

.hero {
  background:
    linear-gradient(90deg, rgba(31, 78, 121, 0.92), rgba(47, 143, 157, 0.74)),
    url("assets/forest-path-placeholder.svg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 22px;
}

.eyebrow {
  color: #ffe7a6;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  margin: 12px 0 18px;
}

h2,
h3 {
  line-height: 1.25;
}

.lead {
  font-size: 1.18rem;
  max-width: 740px;
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(0.96);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 22px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.form-card {
  background: var(--white);
  border: 1px solid #d9e4dd;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(31, 78, 121, 0.07);
}

.card h3 {
  margin-top: 0;
  color: var(--blue);
}

.band {
  background: var(--sage);
  border-top: 1px solid #d9e4dd;
  border-bottom: 1px solid #d9e4dd;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: 52px;
  align-items: start;
}

.two-col > div:first-child {
  max-width: 500px;
}

.form-card {
  width: 100%;
  max-width: 650px;
  justify-self: end;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin: 8px 0;
}

.form-card label {
  display: block;
  font-weight: 700;
  margin: 16px 0 6px;
  color: var(--blue);
}

.form-card label:first-child {
  margin-top: 0;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #bdc9c3;
  border-radius: 10px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(47, 143, 157, 0.2);
  border-color: var(--teal);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.notice {
  background: #fff8df;
  border: 1px solid #ead07b;
  padding: 14px 16px;
  border-radius: 12px;
}

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 34px 22px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer a {
  color: var(--white);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 20px 0 16px;
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 700;
}

.trust-points span {
  display: inline-block;
}

@media (max-width: 820px) {
  .header-inner {
    display: block;
  }

  .nav {
    margin-top: 14px;
  }

  .two-col {
    display: block;
  }

  .two-col > div:first-child {
    max-width: none;
    margin-bottom: 30px;
  }

  .form-card {
    max-width: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 46px 22px;
  }

  .section {
    padding: 38px 22px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 15px 18px;
  }

  .logo {
    width: 54px !important;
    height: 42px !important;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.86rem;
  }

  .nav {
    gap: 13px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding: 38px 18px;
  }

  .section {
    padding: 32px 18px;
  }

  .card,
  .form-card {
    padding: 20px;
    border-radius: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }
}