@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --green: #2D7A4F;
  --green-light: #3a9e66;
  --green-pale: #e8f5ee;
  --green-hero: #1D9E75;
  --black: #111111;
  --gray: #6b7280;
  --gray-light: #f4f4f2;
  --white: #ffffff;
  --border: #e2e2de;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Epilogue', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--black);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-size: 14px; font-weight: 500; color: var(--gray);
  text-decoration: none; padding: 8px 16px; border-radius: 8px; transition: all 0.2s;
}
.nav-link:hover { color: var(--black); background: var(--gray-light); }
.nav-link.active { color: var(--green); }

.nav-cta {
  background: var(--black); color: var(--white);
  font-size: 14px; font-weight: 500; padding: 10px 20px;
  border-radius: 8px; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green); }

/* LEGAL PAGES */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 80px;
}

.legal-page .page-label {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}

.legal-page h1 {
  font-family: 'Epilogue', sans-serif;
  font-size: 38px; font-weight: 900; letter-spacing: -1.5px;
  color: var(--black); margin-bottom: 8px; line-height: 1.1;
}

.legal-page .stand {
  font-size: 13px; color: var(--gray); margin-bottom: 48px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}

.legal-page h2 {
  font-family: 'Epilogue', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--black);
  margin: 36px 0 12px; letter-spacing: -0.3px;
}

.legal-page p {
  font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 14px;
}

.legal-page ul {
  margin: 8px 0 16px 20px;
}

.legal-page ul li {
  font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 6px;
}

.legal-page a { color: var(--green); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Epilogue', sans-serif; font-weight: 900;
  font-size: 18px; color: var(--black); letter-spacing: -0.5px;
}
.footer-logo span { color: var(--green); }

.footer-links { display: flex; gap: 24px; }

.footer-link {
  font-size: 13px; color: var(--gray);
  text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--black); }

@media (max-width: 700px) {
  nav { padding: 0 20px; }
  .nav-links .nav-link { display: none; }
  .legal-page { padding: 40px 20px 60px; }
  .legal-page h1 { font-size: 28px; }
  footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
