/* Initial style for elements with slide-up animation */
[slide-up] {
    opacity: 0;
    transform: translateY(24px);
    /* Start 20px below */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Initial style for elements with slide-left animation */
[slide-left] {
    opacity: 0;
    transform: translateX(-24px);
    /* Start 20px to the left */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hide Webflow badge */
.w-webflow-badge {
    display: none !important;
}