:root {
  --primary-color: #2e7d32;
  --light-bg: #f4f7f5;
  --text-color: #222;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: var(--light-bg);
  color: var(--text-color);
}

header {
  background: #fff;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: relative;
}

.brand {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.2em;
}

nav {
  display: flex;
  gap: 1em;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

main {
  padding: 2em;
}

footer {
  background: #dcedc8;
  text-align: center;
  padding: 1em;
  margin-top: 3em;
  font-size: 0.9em;
  color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    padding: 1em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.hero {
  text-align: center;
  padding: 4em 2em;
  background: #e8f5e9;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.2em;
}

.cta-button {
  margin-top: 2em;
  padding: 1em 2em;
  background: var(--primary-color, #2e7d32);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
}
/* --- Donate page --- */
.donate-wrap { max-width: 980px; margin: 0 auto; padding: 1rem; }
.donate-grid { display: grid; gap: 24px; }
@media (min-width: 900px){ .donate-grid { grid-template-columns: 1fr 320px; } }

.card {
  background: #fff; border-radius: 14px; padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.donate-header { text-align: center; margin-bottom: 16px; }
.donate-header h1 { margin: 0; color: var(--primary-color); }
.donate-sub { color: #6b7280; margin-top: 4px; font-size: .95rem; }

.field { display: grid; gap: 8px; margin-top: 14px; }
.field label { font-weight: 600; color: #1f2937; }
.input, .select, .textarea {
  width: 100%; padding: .7em .85em; border: 1px solid #d1d5db; border-radius: 10px;
  background: #fff; outline: none;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(46,125,50,.15); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid #d1d5db; border-radius: 9999px; padding: .45em .9em; cursor: pointer;
  background: #fff; font-weight: 600;
}
.chip[aria-pressed="true"] { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

.toggle {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer; user-select: none;
}
.toggle input { appearance: none; width: 42px; height: 24px; border-radius: 999px; position: relative; background: #e5e7eb; outline: none; transition: background .2s; }
.toggle input::after {
  content:""; position:absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.2); transition: transform .2s;
}
.toggle input:checked { background: var(--primary-color); }
.toggle input:checked::after { transform: translateX(18px); }

.btn-primary { display:block; width:100%; margin-top: 12px; }
.help-text { color:#6b7280; font-size: .9rem; }

.sidebar .hint { color:#374151; }
.sidebar ul { margin: .4rem 0 0 1rem; color:#4b5563; }
.badge-secure {
  display:inline-flex; align-items:center; gap:8px; padding:.35em .6em; border-radius: 999px;
  background:#ecfdf5; color:#065f46; font-weight:600; font-size:.85rem;
}
