/* =========================================
   LAYOUT HALAMAN (NO SIDEBAR)
   ========================================= */

.custom-page-container {
    width: 100%;
    background: #fff;
    min-height: 60vh; /* Agar footer tidak naik jika konten dikit */
}

/* Wrapper Tengah */
.custom-page-wrapper {
    max-width: 800px; /* Lebar ideal untuk membaca tanpa sidebar */
    margin: 0 auto;   /* KUNCI: Membuat posisi di tengah layar */
    padding: 50px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================================
   TYPOGRAPHY & ELEMENT
   ========================================= */

/* Judul Halaman */
.custom-page-header {
    text-align: center; /* Judul rata tengah */
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.custom-page-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 0;
}

/* Gambar Utama */
.custom-page-image {
    margin-bottom: 30px;
    text-align: center;
}

.custom-page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Isi Konten */
.custom-page-content {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
}

.custom-page-content p {
    margin-bottom: 25px;
}

.custom-page-content h2, 
.custom-page-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

/* List (ul/ol) biar rapi */
.custom-page-content ul, 
.custom-page-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}
.custom-page-content li {
    margin-bottom: 10px;
}

/* =========================================
   RESPONSIF MOBILE
   ========================================= */
@media (max-width: 991px) {
    
    /* FIX JARAK ATAS (Agar tidak ketutup Header Sticky) */
    .custom-page-wrapper {
        padding-top: 100px; /* Turunkan konten di HP */
        padding-left: 15px;
        padding-right: 15px;
    }

    .custom-page-title {
        font-size: 28px; /* Judul lebih kecil di HP */
    }

    .custom-page-content {
        font-size: 16px; /* Font baca lebih kecil sedikit */
    }
}