        /* Base styles */
        body {
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Custom animations */
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .text-gradient {
            background: linear-gradient(90deg, #037F06, #CFB01A);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .news-card {
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .news-card:hover .news-img {
            transform: scale(1.05);
        }

        .news-img {
            transition: transform 0.5s ease;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Hero section overlay */
        .hero-gradient {
            background: linear-gradient(to right, rgba(3, 127, 6, 0.7), rgba(207, 176, 26, 0.5));
        }

        /* Custom button styles */
        .btn-primary {
            background: linear-gradient(90deg, #037F06, #037F06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            background: linear-gradient(90deg, #CFB01A, #CFB01A);
            transform: translateY(-2px);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
        }

        .btn-primary:hover::after {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }

        /* Badge styles */
        .badge {
            position: relative;
            overflow: hidden;
        }

        .badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: translateX(-100%);
        }

        .badge:hover::after {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }
