/* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-color: #2563eb; --primary-dark: #1d4ed8; --secondary-color: #64748b; --accent-color: #f59e0b; --success-color: #10b981; --warning-color: #f59e0b; --error-color: #ef4444; --text-primary: #1e293b; --text-secondary: #64748b; --text-light: #94a3b8; --bg-primary: #ffffff; --bg-secondary: #f8fafc; --bg-tertiary: #f1f5f9; --border-color: #e2e8f0; --border-light: #f1f5f9; --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); --radius-sm: 0.375rem; --radius-md: 0.5rem; --radius-lg: 0.75rem; --radius-xl: 1rem; --transition: all 0.2s ease-in-out; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--text-primary); background-color: var(--bg-primary); } .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; } /* Header and Navigation */ .header { background: var(--bg-primary); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; display: flex; justify-content: space-between; align-items: center; height: 70px; } .nav-brand { display: flex; flex-direction: column; } .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin: 0; } .logo-subtitle { font-size: 0.75rem; color: var(--text-secondary); margin-top: -4px; } .nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; } .nav-link { text-decoration: none; color: var