@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; } .feature-card:hover .icon-box { transform: scale(1.1); transition: transform 0.3s ease; } .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } @media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr; } } .search-box input:focus { box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3); } .dark .search-box input:focus { box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.5); } .hero h1 { text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } .dark .hero h1 { text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); }