/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #166534; /* NGO Green */
    --primary-hover: #14532d;
    --secondary-color: #059669; /* Emerald Green Accent */
    --secondary-hover: #047857;
    --background-color: #ffffff; /* Clean White */
    --surface-color: #f8fafc; /* Very soft off-white surface */
    --text-color: #111827; /* High contrast dark gray/black */
    --text-muted: #4b5563; /* Accessible gray */
    --border-color: #e5e7eb;
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
}