 /* Custom scrollbar for aesthetics */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-thumb { background: #cdefff; border-radius: 4px; }
        ::-webkit-scrollbar-track { background: #f0f0f0; }

        /* General Body Styling */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #dff4fc; /* Soft Ivory Background */
            color: #414380; /* Dark Charcoal Text */
            scroll-behavior: smooth;
        }

        /* Utility for Section Headers */
        .section-header {
            font-family: 'Montserrat', sans-serif;
            color: #414380;
        }

        /* Custom Wave Pattern (Abstract Shapes) for Hero/CTA */
        .wave-bg {
            background-image: radial-gradient(circle at 10% 20%, rgba(90,200,250,0.1) 0%, rgba(107,203,119,0.05) 90%);
        }

        /* Floating Animation */
        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(0, -10px); }
            100% { transform: translate(0, 0); }
        }
        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        /* Animation class for scroll-triggered effects */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Blue Gradient Button */
        .btn-primary-gradient {
            background: linear-gradient(135deg, #5AC8FA 0%, #007bff 100%);
            transition: all 0.3s ease;
        }
        .btn-primary-gradient:hover {
            background: linear-gradient(135deg, #007bff 0%, #5AC8FA 100%);
            box-shadow: 0 8px 25px rgba(90, 200, 250, 0.4);
            transform: translateY(-2px);
        }

        /* Custom Green Gradient Button */
        .btn-secondary-gradient {
            background: linear-gradient(135deg, #6BCB77 0%, #4CAF50 100%);
            transition: all 0.3s ease;
        }
        .btn-secondary-gradient:hover {
            background: linear-gradient(135deg, #4CAF50 0%, #6BCB77 100%);
            box-shadow: 0 8px 25px rgba(107, 203, 119, 0.4);
            transform: translateY(-2px);
        }

        /* Custom Card Hover Effect */
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #5AC8FA;
        }

        /* Simulated Multipage Navigation: Hide all pages by default */
        .page-content {
            display: none;
        }
        .page-content.active {
            display: block;
        }
    