
        .article-content {
            width: 100%;
            padding-left: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            
        }
        
        @media (min-width: 992px) {
            .row {
                display: flex;
            }
        
            .col-md-8 {
                width: 150%;
                padding-right: 10px; /* Beri sedikit jarak jika perlu */
            }
        
            .col-md-4 {
                width: 4%;
            }
        }        
        
        
        .article-content p {
            text-align: justify;
            margin-bottom: 15px;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 10px;
            border: 2px solid #ddd;
            padding: 5px;
        }
        
        /* Tambahan untuk responsivitas */
        @media (max-width: 768px) {
            .article-content {
                padding: 20px 5%;
            }
        }
        
        
        

        /* Styling khusus untuk section-tengah */
.section-tengah {
    background-color: #f0f8ff; /* Warna biru muda yang lembut */
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid #d1e7ff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.section-tengah .section-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.section-tengah .section-text {
    flex: 1;
    padding-left: 20px;
}

.section-tengah h3 {
    color: #333; /* Warna biru untuk judul */
    font-size: 20px;
    margin-bottom: 10px;
}

.section-tengah p {
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.section-tengah .section-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .section-tengah .section-content {
        flex-direction: column;
        text-align: center;
    }

    .section-tengah .section-text {
        padding-left: 0;
    }

    .section-tengah .section-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-bottom: 15px;
    }
}

/* Styling khusus untuk section-akhir */
.section-akhir {
    background-color: #fff5e6; /* Warna latar oranye muda */
    padding: 25px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid #ffcc99;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.section-akhir .section-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 20px;
}

.section-akhir .section-text {
    flex: 1;
}

.section-akhir h3 {
    color: #ff6600; /* Warna oranye lebih kontras */
    font-size: 22px;
    margin-bottom: 10px;
}

.section-akhir p {
    font-size: 16px;
    color: #333;
    text-align: justify;
}

/* Gambar pada section-akhir */
.section-akhir .section-image {
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .section-akhir .section-content {
        flex-direction: column;
        text-align: center;
    }

    .section-akhir .section-text {
        padding-left: 0;
    }

    .section-akhir .section-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin-bottom: 15px;
    }
}

/* Button di section-akhir */
.section-akhir .btn {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
    background-color: #ff6600; /* Warna oranye */
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.section-akhir .btn:hover {
    background-color: #cc5200; /* Warna lebih gelap saat hover */
    transform: scale(1.05);
}




        .center-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 20px auto;
            /* Memberikan jarak vertikal antara gambar dan elemen lainnya */
            border: 2px solid #ddd;
            /* Memberikan border pada gambar */
            border-radius: 8px;
            /* Memberikan sudut melengkung pada border */
        }

        .section-text h3 {
            margin: 0 0 10px;
        }

        .btn {
            display: inline-block;
            padding: 10px 15px;
            color: #fff;
            background-color: #007bff;
            text-decoration: none;
            border-radius: 4px;
        }

        .btn:hover {
            background-color: #0056b3;
        }

        .section-akhir {
            text-align: center;
        }

        a {
            text-decoration: none;
            color: #007bff;
        }

        a:hover {
            text-decoration: underline;
        }

        .meta-info {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            text-align: center;
            /* Posisi tanggal */
        }

        .title-divider {
            border-top: 10px solid #ddd;
            margin: 20px 0;
        }

        .breadcrumb {
            font-size: 14px;
            margin-bottom: 20px;
            padding: 10px;
            border-radius: 5px;
        }

        .breadcrumb-link {
            color: #C8AAAA;
            text-decoration: none;
            margin-right: 3px;
            /* Memberikan jarak antar link */
        }

        .breadcrumb-link:hover {
            text-decoration: underline;
        }

        .breadcrumb-current {
            color: #6c757d;
            font-weight: bold;
        }

        .recent-article {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .recent-article .thumbnail {
            flex-shrink: 0;
        }

        .recent-article .thumbnail img {
            width: 100px;
            /* Ukuran gambar seragam */
            height: 70px;
            object-fit: cover;
            /* Memastikan gambar tetap proporsional */
            border-radius: 5px;
        }

        .article-title {
            font-size: 14px;
            font-weight: bold;
            color: #000;
            text-decoration: none;
            display: block;
            line-height: 1.2;
        }

        .article-title:hover {
            color: #007bff;
            text-decoration: underline;
        }

        .sidebar-title {
            font-size: 12px;
            font-weight: bold;
            border-bottom: 2px solid #E5D0AC;
            /* Garis bawah berwarna biru */
            padding-bottom: 5px;
            margin-bottom: 15px;
        }

        /* Membungkus gambar agar responsif */
        .responsive-image {
            width: 100%;
            /* Pastikan gambar memenuhi lebar parent */
            max-width: 600px;
            /* Batasi ukuran maksimum */
            height: auto;
            /* Pertahankan rasio aspek */
            display: block;
            /* Hilangkan celah di bawah gambar */
            margin: 10px auto;
            /* Pusatkan gambar */
            border-radius: 8px;
        }

        /* Pastikan gambar tetap responsif di layar kecil */
        @media (max-width: 768px) {
            .responsive-image {
                max-width: 100%;
                border-radius: 5px;
            }
        }

        /* Sidebar tetap di posisi atas */
        .sticky-sidebar {
            position: sticky;
            top: 10px;
            /* Sesuaikan jarak dari atas */
            max-height: 90vh;
            /* Hindari terlalu panjang */
            overflow-y: auto;
            /* Tambahkan scroll jika perlu */
        }
 