body {
    font-family: 'Lato', sans-serif;
    background-color: #F6F9FC;
    color: #333333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
.font-poppins {
    font-family: 'Poppins', sans-serif;
}
.font-lato {
    font-family: 'Lato', sans-serif;
}
.bg-primary { background-color: #0A2540; }
.text-primary { color: #0A2540; }
.bg-accent { background-color: #00B5E2; }
.text-accent { color: #00B5E2; }
.border-accent { border-color: #00B5E2; }

/* Header shadow on scroll */
.header-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

/* Testimonial Carousel styles */
.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
