
    <style>
        /* --- COPY BASE VARIABLES DARI INDEX.php --- */
        :root {
            --primary-blue: #0A2463;
            --secondary-blue: #3E92CC;
            --accent-gold: #D4AF37;
            --text-dark: #1e293b;
            --bg-body: #f8fafc;
            --white: #ffffff;
            --gradient-blue: linear-gradient(135deg, #0A2463 0%, #3E92CC 100%);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-dark); background: var(--bg-body); }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--primary-blue); }

        /* --- NAVIGATION (Sama) --- */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: rgba(10, 36, 99, 0.95); padding: 1rem 5%;
        }
        .nav-container { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
 .logo { 
            font-size: 1.6rem; 
            font-weight: 800; 
            color: var(--white); 
            display: flex; 
            align-items: center; 
            gap: 12px; /* Jarak antara gambar dan teks */
            text-decoration: none; /* Hilangkan garis bawah karena pakai tag <a> */
        }
        
        /* Mengatur ukuran gambar logo */
        .logo-img {
            height: 45px; /* Sesuaikan tinggi logo */
            width: auto;  /* Lebar menyesuaikan proporsional */
            object-fit: contain;
        }

        .logo-accent { 
            color: var(--accent-gold); 
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5); 
        }      
        .back-link { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
        .back-link:hover { color: var(--accent-gold); transform: translateX(-5px); }

        /* --- DETAIL HERO --- */
        .detail-hero {
            padding: 10rem 5% 4rem;
            background: radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
                        linear-gradient(135deg, #0f2e75 0%, #05102e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .detail-hero h1 { font-size: 3rem; color: white; margin-bottom: 1rem; }
        .breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
        .breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
        
        /* --- CONTENT LAYOUT --- */
        .content-section {
            padding: 4rem 5%;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr; /* Kiri konten, Kanan Sidebar */
            gap: 4rem;
        }

        /* Artikel Utama */
        .main-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem; }
        .main-content p { margin-bottom: 1.5rem; font-size: 1.05rem; color: #475569; }
        .main-content ul { margin-bottom: 2rem; padding-left: 1.5rem; }
        .main-content li { margin-bottom: 0.8rem; color: #475569; }
        
        .feature-box {
            background: white; padding: 2rem; border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05); border-left: 4px solid var(--secondary-blue);
            margin: 2rem 0;
        }

        /* Sidebar Sticky */
        .sidebar { position: sticky; top: 100px; height: fit-content; }
        
        .contact-card {
            background: white; padding: 2rem; border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05);
            text-align: center;
        }
        .btn-full {
            display: block; width: 100%; padding: 1rem; margin-top: 1rem;
            background: var(--gradient-blue); color: white; text-decoration: none;
            border-radius: 10px; font-weight: 600; transition: 0.3s;
        }
        .btn-full:hover { opacity: 0.9; transform: translateY(-3px); }

        /* Footer Simple */
/* --- FOOTER STYLES (Gunakan ini di semua halaman detail) --- */
footer { 
    background: #020617; 
    color: #94a3b8; 
    padding: 6rem 5% 2rem; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    margin-top: 4rem; /* Jarak dari konten atas */
}

.footer-content { 
    max-width: 1280px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* 4 Kolom */
    gap: 2.5rem; 
    margin-bottom: 4rem; 
    text-align: left; /* Kembalikan ke rata kiri */
}

.footer-section h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.2rem; font-family: 'Montserrat', sans-serif; }
.footer-section p { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.6; }
.footer-section a { color: #94a3b8; display: block; margin-bottom: 0.8rem; transition: color 0.3s; text-decoration: none; }
.footer-section a:hover { color: var(--accent-gold); transform: translateX(5px); display: inline-block; }

/* Social Icons */
.social-links { display: flex; gap: 15px; margin-top: 1.5rem; }
.social-link { width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: background 0.3s; text-decoration: none; }
.social-link:hover { background: var(--accent-gold); }

/* Map Style */
.footer-map iframe { width: 100%; height: 200px; border-radius: 15px; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.9rem; }

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; }
}
        @media (max-width: 768px) {
            .content-section { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
    </style>