/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #0F766E;
    --primary-hover: #0d655e;
    --secondary-color: #FDFBF7;
    --accent-color: #F4C430;
    --background-color: #FDFBF7;
    --surface-color: #ffffff;
    --text-color: #1F2937;
    --text-muted: #4b5563;
    --border-color: rgba(15, 118, 110, 0.15);
    
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}