/* Explain: Theme design tokens (colors, fonts) — single source of truth - */
:root {
    --primary-color: #0F3885; /* Royal/Deep Blue */
    --primary-hover: #0a265d;
    --secondary-color: #1a202c; /* Dark Charcoal */
    --accent-color: #DE4523; /* Red/Orange Accent */
    --accent-hover: #c43b1c;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #1a202c;
    --text-muted: #4a5568;
    --border-color: #e2e8f0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}