:root {
            --dark-bg: #1a1a1a;
            --primary-green: #a7f3d0;
            --secondary-green: #4ade80;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-bg);
            color: white;
            line-height: 1.6;
        }
        
        .nav-link:hover {
            color: var(--primary-green);
        }
        
        .btn-primary {
            background-color: var(--primary-green);
            color: var(--dark-bg);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-green);
            transform: translateY(-2px);
        }
        
        .section-divider {
            border-top: 2px solid var(--primary-green);
            opacity: 0.3;
            margin: 4rem 0;
        }
        
        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu.active {
            max-height: 500px;
        }

        /* Galeri */
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-slider {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
            padding: 20px 0;
        }
        
        .gallery-item {
            min-width: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            background: #1a1a1a;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
        }
        
        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }
        
        .gallery-image:hover {
            opacity: 0.9;
        }
        
        .gallery-caption {
            padding: 15px;
            color: #f5f5f5;
        }
        
        .gallery-title {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(30, 30, 30, 0.7);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background: rgba(50, 50, 50, 0.9);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .more-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 30px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            text-decoration: none;
        }
        
        .more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        @media (max-width: 768px) {
            .gallery-item {
                min-width: 250px;
            }
            
            .gallery-image {
                height: 180px;
            }
            
            .nav-btn {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-item {
                min-width: 200px;
            }
            
            .gallery-image {
                height: 150px;
            }
        }
/* Kondisi Eksisting */
/* :root {
            --dark-bg: #121212;
            --darker-bg: #0a0a0a;
            --accent-color: #a7ff83;
            --text-color: #e0e0e0;
            --text-secondary: #b0b0b0;
        } */

        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } */

        /* body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            min-height: 100vh;
            padding: 2rem;
        } */

        .container_eksisting {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-section {
            flex: 1;
            /* min-width: 300px; */
        }

        .gallery-grid {
            display: flex;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
            width: 90%;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .content-section {
            flex: 1;
            min-width: 300px;
            /* background-color: var(--darker-bg); */
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            margin-left: 100px;
            width: 100%;
        }

        .section-title {
            color: var(--accent-color);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        .list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .list-item::before {
            content: '•';
            color: var(--accent-color);
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }

        .list-text {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        /* Tuujuan Program */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        /* body {
            font-family: 'Poppins', sans-serif;
            background-color: #0f172a;
            color: #e2e8f0;
        } */
        
        .card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .highlight {
            background-image: linear-gradient(to right, #86efac, #4ade80);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

