@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Class to be applied via JavaScript */
.fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Ensure the image container handles the transition cleanly */
.faq-imagewrap-main {
    overflow: hidden;
}