*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-900: #1f4d2b;
  --green-700: #2f6b3a;
  --green-500: #4f9b5d;
  --cream: #f7f4ed;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #5f6b76;
  --border: #d9e2d8;
  --shadow: 0 12px 30px rgba(31, 77, 43, 0.08);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.legal-top {
  background: var(--green-900);
  color: #e8f2ea;
  font-size: 0.875rem;
  padding: 0.75rem 0;
}

.legal-top p {
  text-align: center;
}

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--green-900);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--green-700);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #e6f3e8;
  color: var(--green-700);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1rem;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.hero-card dl {
  display: grid;
  gap: 0.85rem;
}

.hero-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.hero-card dd {
  font-size: 0.95rem;
}

.section {
  padding: 3rem 0;
}

.section-white {
  background: var(--white);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.75rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.section-white .card {
  background: var(--cream);
}

.card h3 {
  color: var(--green-700);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.contact-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.footer {
  background: var(--green-900);
  color: #dce9df;
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer dl {
  display: grid;
  gap: 0.65rem;
}

.footer dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #a8c7b0;
}

.footer dd {
  font-size: 0.92rem;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #b7d0bd;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}
