
   /* Header SK yang modern */
        .header-sk {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
            font-weight: bold;
            color: #2c3e50;
            padding: 20px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: #000;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease;
        }
        
        .header-sk .judul {
            font-size: 1.5em;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .header-sk p {
            font-size: 1em;
            margin: 4px 0;
        }
        
        /* Struktur organisasi menggunakan grid layout */
        .org-structure {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 20px;
        }
        
        /* Gaya modern untuk setiap kolom */
        .org-column {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        /* Gaya modern untuk setiap bagian dalam kolom */
        .org-section {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .org-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        /* Gaya judul dengan warna */
        .org-section h3 {
            margin: 0;
            color: #3498db;
            font-size: 1.2em;
            border-bottom: 2px solid #3498db;
            padding-bottom: 5px;
        }
        
        /* Nama anggota */
        .org-section p {
            margin: 5px 0;
            color: #555;
            font-size: 1em;
        }
        
        /* Animasi untuk fade-in */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive untuk layar lebih kecil */
        @media (max-width: 768px) {
            .org-structure {
                grid-template-columns: 1fr;
            }
        }
