/* Explain: Theme design tokens with primary navy, gold accent, and white colors. - */
:root {
    --primary-color: #0b1b36;
    --primary-hover: #152c55;
    --secondary-color: #475569;
    --accent-color: #f5b023;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --surface-dark: #0b1b36;
    --text-color: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}