@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); body { font-family: 'Poppins', sans-serif; line-height: 1.6; } /* Custom animations */ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-in { animation: fadeIn 0.6s ease-out forwards; } /* Custom button styles */ .btn-primary { transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(245, 158, 11, 0.3); } /* Custom card hover effect */ .card-hover { transition: all 0.3s ease; } .card-hover:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }