@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
 }
 
 .animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
 }
 
 /* .text-shadow-sm {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 } */