
        /* Neon Animations */
        @keyframes neon-text-pulse-hero {
            0%, 100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #FFFF00, 0 0 20px #FFFF00, 0 0 25px #FFFF00; }
            50% { text-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 25px #FFFF00, 0 0 35px #FFFF00, 0 0 45px #FFFF00; }
        }

        @keyframes neon-pulse-green-btn {
            0%, 100% { box-shadow: 0 0 4px #39FF14, 0 0 8px #39FF14, 0 0 12px #90EE90; }
            50% { box-shadow: 0 0 8px #39FF14, 0 0 16px #39FF14, 0 0 24px #90EE90; }
        }
        @keyframes neon-pulse-yellow-btn {
            0%, 100% { box-shadow: 0 0 4px #FFFF00, 0 0 8px #FFFF00, 0 0 12px #FFFFAA; }
            50% { box-shadow: 0 0 8px #FFFF00, 0 0 16px #FFFF00, 0 0 24px #FFFFAA; }
        }
        @keyframes neon-pulse-white-btn {
            0%, 100% { box-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #39FF14; text-shadow: 0 0 2px #39FF14; }
            50% { box-shadow: 0 0 8px #fff, 0 0 16px #fff, 0 0 24px #39FF14; text-shadow: 0 0 4px #39FF14, 0 0 6px #39FF14; }
        }
        
        @keyframes neon-pulse-icon-yellow {
            0%, 100% { filter: drop-shadow(0 0 2px #FFFF00) drop-shadow(0 0 4px #FFFF00); }
            50% { filter: drop-shadow(0 0 4px #FFFF00) drop-shadow(0 0 8px #FFFF00); }
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/1920/1080?random=1');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #FFFFFF;
            text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #FFFF00, 0 0 40px #FFFF00, 0 0 50px #FFFF00;
            animation: neon-text-pulse-hero 2.5s infinite alternate;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            text-shadow: 0 0 5px rgba(255,255,255,0.6); 
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Neon Buttons Overrides */
        .btn-primary { /* Neon Green */
            background-color: #39FF14;
            color: #004d00; 
            border: 1px solid #39FF14;
            text-shadow: 0 0 3px rgba(0, 77, 0, 0.5);
            animation: neon-pulse-green-btn 1.8s infinite alternate;
        }
        .btn-primary:hover {
            background-color: #32CD32; 
            color: #003300;
            box-shadow: 0 0 10px #39FF14, 0 0 20px #39FF14, 0 0 30px #90EE90;
        }

        .btn-secondary { /* Neon Yellow */
            background-color: #FFFF00;
            color: #666600; 
            border: 1px solid #FFFF00;
            text-shadow: 0 0 3px rgba(102, 102, 0, 0.5);
            animation: neon-pulse-yellow-btn 1.8s infinite alternate;
        }
        .btn-secondary:hover {
            background-color: #FFEA00; 
            color: #4d4d00;
            box-shadow: 0 0 10px #FFFF00, 0 0 20px #FFFF00, 0 0 30px #FFFFAA;
        }

        .btn-success { /* Neon White with Green Accent */
            background-color: #FFFFFF;
            color: #39FF14; 
            border: 1px solid #39FF14;
            animation: neon-pulse-white-btn 1.8s infinite alternate;
        }
        .btn-success:hover {
            background-color: #f0f0f0;
            color: #32CD32;
            box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #39FF14;
        }


        /* About Section */
        .about-section {
            background-color: #f8fafc;
        }
        
        .section-padding .text-center h2 {
            color: #222; 
            text-shadow: 0 0 5px rgba(57, 255, 20, 0.6), 0 0 8px rgba(57, 255, 20, 0.4); 
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .mission-goals {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .goal-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .goal-item .goal-icon {
            width: 28px; /* Slightly larger for better visibility of effect */
            height: 28px;
            flex-shrink: 0;
            margin-top: 0; /* Adjusted alignment */
            fill: #FFFF00; 
            filter: drop-shadow(0 0 3px #FFFF00) drop-shadow(0 0 6px #FFFF00);
            animation: neon-pulse-icon-yellow 2.2s infinite alternate;
        }
        .goal-item .goal-icon path[stroke="white"] {
            stroke: #666600; /* Darker stroke for better contrast on yellow fill */
        }


        /* Articles Section */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .article-content h3, .event-content h3 {
            color: #333;
            text-shadow: 0 0 5px rgba(255, 255, 0, 0.6), 0 0 8px rgba(255, 255, 0, 0.4); 
        }

        .article-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 8px rgba(57, 255, 20, 0.5), 0 0 16px rgba(57, 255, 20, 0.4), 0 0 24px rgba(57, 255, 20, 0.3);
        }

        .article-image {
            width: 100%;
            height: 225px;
            object-fit: cover;
        }

        .article-content {
            padding: 20px;
        }

        .article-content h3 {
            margin-bottom: 10px;
        }

        .article-lead {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #39FF14; 
            text-decoration: none;
            font-weight: 600;
            transition: gap 0.3s ease, text-shadow 0.3s ease;
            text-shadow: 0 0 3px rgba(57, 255, 20, 0.7), 0 0 5px rgba(144, 238, 144, 0.5);
        }

        .read-more:hover {
            gap: 10px;
            text-shadow: 0 0 5px #39FF14, 0 0 10px #39FF14, 0 0 15px #90EE90;
        }

        .arrow-icon {
            width: 16px;
            height: 16px;
            /* stroke is currentColor, will inherit from .read-more */
            filter: drop-shadow(0 0 2px #39FF14); 
        }

        /* Events Section */
        .events-section {
            background-color: #f8fafc;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 8px rgba(255, 255, 0, 0.5), 0 0 16px rgba(255, 255, 0, 0.4), 0 0 24px rgba(255, 255, 0, 0.3);
        }

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .event-content {
            padding: 20px;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            cursor: pointer;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: none;
            border: none;
        }

        /* Contact Section */
        .contact-section {
            background-color: #f8fafc;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e7eb;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #39FF14; /* Neon green focus */
            box-shadow: 0 0 5px #39FF14;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 20px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            accent-color: #39FF14; /* Neon green checkbox */
        }

        .checkbox-group label {
            font-size: 14px;
            line-height: 1.4;
        }

        .checkbox-group a {
            color: #39FF14; /* Neon green link */
            text-decoration: underline;
        }
         .checkbox-group a:hover {
            text-shadow: 0 0 3px #39FF14;
        }


        /* Map Section */
        .map-section iframe {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: 10px;
        }

        .address-info {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
        }
        .address-info a {
            color: #39FF14; /* Neon green link */
        }
        .address-info a:hover {
            text-decoration: underline;
            text-shadow: 0 0 3px #39FF14;
        }


        /* Footer Neon Accents */
        .main-footer .footer-section h3 {
            color: #FFFF00; /* Neon Yellow */
            text-shadow: 0 0 5px #FFFF00, 0 0 10px #FFFFAA;
        }

        .footer-links a:hover {
            color: #FFFF00; /* Neon Yellow */
            text-shadow: 0 0 5px #FFFF00;
        }

        .social-icon {
            background-color: transparent;
            border: 2px solid #39FF14; 
            color: #39FF14; 
            line-height: 36px; /* Adjust for border */
            box-shadow: 0 0 3px #39FF14, 0 0 5px #39FF14 inset; 
        }
        .social-icon:hover {
            background-color: #39FF14;
            color: #003300; 
            box-shadow: 0 0 8px #39FF14, 0 0 16px #39FF14, 0 0 5px #90EE90 inset;
            transform: scale(1.1);
        }


        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 36px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn { /* This will apply to all buttons, including neon ones */
                width: 250px;
            }

            .articles-grid,
            .events-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .mission-goals {
                grid-template-columns: 1fr;
            }

            .section-padding {
                padding: 60px 0;
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .container {
                padding: 0 15px;
            }
        }
    