/* Shared stylesheet for all legal/info pages */
:root {
  --green: #0d2818;
  --green-mid: #1e5230;
  --gold: #e8a020;
  --text: #222;
  --muted: #555;
  --border: #e0e0e0;
  --bg: #f8f8f6;
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

/* ── Header ── */
.site-header {
  background: var(--green);
  color: white;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 17px;
}

.site-header .logo-icon { font-size: 24px; }

.header-nav { display: flex; gap: 4px; }

.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  background: rgba(255,255,255,0.12);
  color: white;
}

/* ── Hero strip ── */
.page-hero {
  background: var(--green);
  color: white;
  padding: 32px 20px 28px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.page-hero h1 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  margin-bottom: 6px;
}

.page-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* ── Content wrapper ── */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 36px 20px 60px;
}

/* ── Sections ── */
.section { margin-bottom: 36px; }

.section h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 14px;
}

.section h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 16px 0 6px;
  color: var(--green-mid);
}

.section p { margin-bottom: 10px; color: var(--muted); }

.section ul,
.section ol {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 10px;
}

.section li { margin-bottom: 5px; }

.section a { color: var(--green-mid); }
.section a:hover { color: var(--gold); }

/* ── Info card ── */
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(30,82,48,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--green);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--green-mid); }

/* ── Alert/note box ── */
.note-box {
  background: #fffbea;
  border: 1px solid #f5c842;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #7a5c00;
  margin-bottom: 16px;
}

/* ── Footer ── */
.site-footer {
  background: var(--green);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 20px 16px;
  font-size: 12px;
}

.site-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin: 0 8px;
}
.site-footer a:hover { color: var(--gold); }

.footer-links { margin-bottom: 8px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }

/* ── Mobile ── */
@media (max-width: 600px) {
  .header-nav a { padding: 5px 7px; font-size: 12px; }
  .page-content { padding: 24px 16px 48px; }
}
