
/* Provides a smooth scrolling effect when anchor links are clicked */
html {
    scroll-behavior: smooth;
}

/* Base styles for the sticky CTA button, initially hidden off-screen */
.sticky-cta {
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

/* Class to make the sticky CTA visible by sliding it into view */
.sticky-cta.visible {
    transform: translateY(0);
}
