body {
/*            background-image: url('https://santuybro.com/img/BG-5.webp'); */
            background: radial-gradient(circle, #ffffff, #16213e);
            /*background-size: cover;
            background-position: center;*/
            color: white;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
        }
        @media (max-width: 768px) {
            body {
                background-image: url('https://santuybro.com/img/bg-mobile1.webp');
                background-size: auto;
                background-size: 100% !important;
            }
        }
        h1 {
            text-align: center;
            margin-bottom: 20px;
        }
        h2 {
            margin: 10px 0;
        }
        p {
            margin: 5px 0;
        }
        img {
            width: 100%;
            height: auto;
            max-width: 90%;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .content {
            text-align: center;
        }
        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around; /* Agar konten lebih merata */
        }
        
        .col-lg-3 {
            flex: 0 0 23%;
            margin-bottom: 10px;
        }
        
        @media (max-width: 768px) {
            .col-lg-3 {
                flex: 0 0 100%; /* Tampilkan dalam satu kolom di mobile */
            }
        }
        .info-box {
            background: linear-gradient(to bottom, #39a358 0%, #069430 100%);
            border-radius: 0px 8px 0px 8px;
            padding: 15px;
            margin: 15px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            text-align: center;
        }
        .logo {
            max-width: 200px;
            margin: 0 auto 20px;
            display: block;
        }
        .button-container {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .button {
            background: linear-gradient(90deg, #3bd18b, #14c773);
            color: white;
            padding: 10px 20px;
            margin: 0 10px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s, transform 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: inline-block;
            font-weight: bold;
        }
        
        .button:hover {
            background: linear-gradient(90deg, #42a677, #0c9655);
            transform: translateY(-3px);
        }
        /* Kontainer tombol */
        .button-container {
            display: flex;
            justify-content: center; /* Membuat tombol sejajar di tengah */
            align-items: center;
            flex-wrap: wrap; /* Membolehkan tombol-botton membungkus ke bawah jika diperlukan */
            gap: 10px; /* Menambahkan jarak antar tombol */
            margin-bottom: 20px;
        }
        /* Media Query untuk tampilan mobile */
        @media (max-width: 768px) {
            .button-container {
                text-align: center; /* Mengatur tombol agar rata tengah */
                margin-top: 20px; /* Memberikan jarak atas agar lebih rapi */
            }

            .button {
                font-weight: bold;
                display: block; /* Mengubah tombol menjadi block agar lebih fleksibel */
                width: 80%; /* Lebar tombol 80% dari container */                
                padding: 12px; /* Menambah padding agar tombol lebih besar di layar kecil */
            }
        }
        .teks-berjaalan {
            border-bottom: 1px dashed #069430;
            padding: 0.3rem;
            margin-bottom: 0.9rem;
        }
        
        .teks-berjaalan h1, .teks-berjaalan h2, .teks-berjaalan h3, .teks-berjaalan h4, .teks-berjaalan h5, .teks-berjaalan h6, .teks-berjaalan p, .teks-berjaalan strong{
            padding: 0;
            margin: 0;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        /* Lightbox style */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .lightbox-content {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            overflow: auto;
        }

        .lightbox img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .lightbox .close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
        }

        /* Pagination style */
        .pagination {
            margin: 20px 0;
            text-align: center;
            width: 100%; 
            clear: both;
        }
        .pagination a, .pagination strong {
            display: inline-block;
            margin: 0 5px;
            padding: 10px 15px;
            border-radius: 5px;
        }
        .pagination a {
            color: white;
            padding: 10px 15px;
            margin: 0 5px;
            text-decoration: none;
            border: 1px solid #444;
            border-radius: 5px;
        }
        .pagination a:hover {
            background-color: #444;
        }
        .pagination strong {
            padding: 10px 15px;
            margin: 0 5px;
            border: 1px solid #3bd18b;
            border-radius: 5px;
            background-color: #3bd18b;
            color: white;
        }
        .center-text {
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}
.article-content {
    background: linear-gradient(to bottom, #39a358 0%, #069430 50%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

/* Menambahkan sedikit padding dan margin agar konten lebih rapih */
.article-content p {
    font-size: 1.1em; /* Ukuran font sedikit lebih besar agar lebih mudah dibaca */
}