.appear-animation {
    opacity: 0;
    transform: translateY(20px); /* Starting position for the animation */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.appear-animation.active { /* Class to trigger the animation */
    opacity: 1;
    transform: translateY(0);
}
