        :root {
            --primary: #0056b3;
            --primary-light: #e7f1ff;
            --secondary: #6c757d;
            --white: #ffffff;
            --bg-light: #f8f9fa;
            --text-dark: #212529;
            --text-muted: #6c757d;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s ease;
        }
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            scroll-behavior: smooth;
        }

        /* --- Navbar --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background: var(--white);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
          }

        .logo-bgn {
            width: 46px;
            height: 46px;
            object-fit: contain;
            flex-shrink: 0;
          }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* --- Hero Section --- */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 10%;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                        url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&q=80&w=2000');
            background-size: cover;
            background-position: center;
            margin-top: 60px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 800;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn-primary {
            padding: 14px 32px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
        }

        .btn-primary:hover {
            background: #004494;
            transform: translateY(-2px);
        }

        /* --- General Section Style --- */
        section {
            padding: 100px 8%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- Struktur Tim (Focus) --- */
        .tim-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .tim-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }

        .tim-card:hover {
            transform: translateY(-10px);
        }

        .tim-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background-color: #eee;
        }

        .tim-info {
            padding: 25px;
        }

        .tim-info h3 {
            margin-bottom: 10px;
            font-size: 1.4rem;
            color: var(--primary);
        }

        .tim-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .btn-outline {
            padding: 10px 20px;
            border: 2px solid var(--primary);
            color: var(--primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            background: transparent;
            width: 100%;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* --- Modal --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 20px;
        }

        .modal-content {
            background: var(--white);
            width: 100%;
            max-width: 650px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.8);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            z-index: 10;
        }

        .modal-body {
            max-height: 85vh;
            overflow-y: auto;
        }

        .modal-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .modal-text {
            padding: 30px;
        }

        .modal-text h2 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .modal-desc {
            color: var(--text-muted);
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .member-list-title {
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            color: var(--secondary);
        }

        .member-list {
            list-style: none;
        }

        .member-item {
            padding: 12px 0;
            border-bottom: 1px solid #f9f9f9;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 500;
        }

        .member-number {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* --- Others --- */
        .visi-misi { background-color: var(--bg-light); }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

        .card-simple {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 8% 20px;
            text-align: center;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .menu-toggle { display: block; }
            .hero-content h1 { font-size: 2.2rem; }
            .grid-2 { grid-template-columns: 1fr; }
            section { padding: 60px 5%; }
        }
