/* Efek awal sebelum muncul */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Saat sudah muncul */
.section-animate.show {
    opacity: 1;
    transform: translateY(0);
}
