@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Work Sans', sans-serif;
}

.font-display {
    font-family: 'Work Sans', sans-serif;
}

.bg-cleo-gradient {
    background: linear-gradient(135deg, #2D6B4A 0%, #4DAB7C 100%);
}

/* Custom Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 8.5rem;
}

@media (min-width: 640px) {
    html {
        scroll-padding-top: 9rem;
    }
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Custom Accordion Styles if needed beyond Tailwind */
[data-state="open"] svg {
    transform: rotate(180deg);
}

/* Infinite Carousel Animation */
@keyframes infinite-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.animate-infinite-scroll {
    animation: infinite-scroll 40s linear infinite;
}
