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

:root {
  --green:      #2d7d46;
  --green-dark: #1a5230;
  --green-pale: #e8f5ed;
  --text:       #111827;
  --muted:      #6b7280;
  --bg:         #f8fafc;
  --white:      #ffffff;
  --radius:     14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.legal-header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.legal-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
}

.legal-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* MAIN */
.legal-main {
  padding: 60px 0 80px;
}

.legal-container {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 52px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.legal-container--narrow {
  max-width: 640px;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.legal-date {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 600;
}

.legal-lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 36px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin: 32px 0 10px;
}

p {
  font-size: .97rem;
  color: #374151;
  margin-bottom: 14px;
}

a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

ul li {
  font-size: .97rem;
  color: #374151;
  background: var(--green-pale);
  border-radius: 10px;
  padding: 10px 14px;
}

/* CONTACT */
.contact-card {
  background: var(--green-pale);
  border: 1.5px solid #b7dfca;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 36px;
}

.contact-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-email {
  display: inline-block;
  margin-top: 14px;
  background: var(--green);
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 800;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: background .15s, transform .15s;
}
.contact-email:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.contact-topics h2 { margin-bottom: 16px; }

.contact-note {
  margin-top: 28px;
  background: #fffbe8;
  border: 1.5px solid #fde68a;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: .93rem;
  color: #92400e;
}

/* FOOTER */
.legal-footer {
  background: #111827;
  padding: 24px 0;
  text-align: center;
}

.legal-footer p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.legal-footer a {
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-decoration: none;
  margin: 0 6px;
}
.legal-footer a:hover { color: var(--white); }

@media (max-width: 600px) {
  .legal-container { padding: 28px 20px; }
  h1 { font-size: 1.7rem; }
}
