/* =========================================
   1. PAGE HEADER (Global Style)
   ========================================= */
.page-header {
    position: relative;
    height: 350px;
    /* Ganti gambar background sesuai keinginan */
    background: url('../img/about-banner.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.overlay-header {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Overlay gelap */
    z-index: 1;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.page-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 1rem;
    color: #ddd;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}