
       
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
        }
        
        .full-screen {
            height: 100vh;
            min-height: 600px;
        }
        
        .floating-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }
        
        .pulse-green {
            animation: pulse-green 3s infinite;
        }
        
        @keyframes pulse-green {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(13, 127, 60, 0.7);
                transform: scale(1);
            }
            70% { 
                box-shadow: 0 0 0 20px rgba(13, 127, 60, 0);
                transform: scale(1.05);
            }
        }
        
        .slide-up {
            animation: slideUp 1.5s ease-out;
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0; 
                transform: translateY(60px);
            }
            to { 
                opacity: 1; 
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 2s ease-out 0.5s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .slideshow-container {
            height: 35vh;
            min-height: 250px;
        }
        
        .slide {
            display: none;
            width: 100%;
            height: 100%;
        }
        
        .slide.active {
            display: block;
            animation: slideIn 0.8s ease-in-out;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .dot.active {
            background-color: #059669 !important;
            transform: scale(1.2);
        }
        
        @media (max-width: 768px) {
            .slideshow-container {
                height: 30vh;
                min-height: 200px;
            }
            
            .floating-animation {
                display: none;
            }
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #f0f9ff 100%);
        }


        
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
        }
        
        .floating-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }
        
        .pulse-green {
            animation: pulse-green 2s infinite;
        }
        
        @keyframes pulse-green {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(13, 127, 60, 0.7);
                transform: scale(1);
            }
            70% { 
                box-shadow: 0 0 0 15px rgba(13, 127, 60, 0);
                transform: scale(1.05);
            }
        }
        
        .slide-up {
            animation: slideUp 1s ease-out;
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0; 
                transform: translateY(30px);
            }
            to { 
                opacity: 1; 
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 1.2s ease-out 0.3s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .bounce-in {
            animation: bounceIn 1.5s ease-out 0.6s both;
        }
        
        @keyframes bounceIn {
            0% { 
                opacity: 0; 
                transform: scale(0.3);
            }
            50% { 
                opacity: 1; 
                transform: scale(1.1);
            }
            100% { 
                opacity: 1; 
                transform: scale(1);
            }
        }