/* Explain: Theme design tokens (colors, fonts) — Dark blue and Red identity */
:root {
    --primary-color: #0e172a; /* Dark Navy matching image */
    --primary-hover: #172645;
    --secondary-color: #294073;
    --accent-color: #d11221; /* Red matching image */
    --accent-hover: #a80e1a;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #0f172a;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --font-heading: 'Heebo', sans-serif;
    --font-body: 'Heebo', sans-serif;
}
