/* =========================
   PAGE HERO GLOBAL
========================= */
.page-hero {
    padding: 40px 0 20px;
    /* atas diperbesar supaya tidak mepet navbar */
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #444;
}

.page-divider {
    width: 120px;
    height: 3px;
    background-color: #0992C2;
    margin-top: 12px;
    border-radius: 2px;
}

.page-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* =========================
   VISI MISI LAYOUT
========================= */

.visi-misi-container {
    display: flex;
    flex-direction: column;
}

/* =========================
   VISI & MISI BOX
========================= */

.visi-box,
.misi-box {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.misi-box {
    margin-bottom: 50px;
}

.box-icon {
    font-size: 40px;
    color: #0992C2;
    margin-bottom: 15px;
}

.visi-box h3,
.misi-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0992C2;
    margin-bottom: 20px;
}

.visi-box p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.misi-box ul {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Garis pemisah kecil antara Visi & Misi */
.section-divider-small {
    width: 60%;
    max-width: 400px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.18);
    margin: 2rem auto;
    /* jarak atas-bawah */
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .misi-box ul {
        padding-left: 0;
        text-align: center;
        list-style-position: inside;
    }

}