/* Explain: Theme design tokens with dark blue, teal, and cream palette */
:root {
    --primary-color: #0c4a6e; /* Dark Blue */
    --primary-hover: #082f49;
    --secondary-color: #0d9488; /* Teal */
    --secondary-hover: #0f766e;
    --accent-color: #f59e0b;
    --background-color: #fdfbf7; /* Cream */
    --surface-color: #ffffff;
    --text-color: #1e293b;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}
