    /* ========================================================================
    1. HERO BANNER - FULL WIDTH STABLE
    ======================================================================== */
    .hero-about-wrapper {
        /* Memberi jarak agar gambar tidak tertutup oleh Navbar yang melayang */
        margin-top: 70px; 
        width: 100%;
        overflow: hidden; /* Mencegah munculnya scroll horizontal (ruang putih di samping) */
        background-color: #000066; /* Warna dasar biru gelap IBS untuk transisi kalau gambar loading */
    }

    /* Memastikan gambar mengunci diri ke lebar penuh tanpa celah */
    .hero-about-wrapper img {
        width: 100% !important;
        height: auto !important; /* Proporsi akan terjaga walau di-zoom 500% sekalipun */
    }

    @media (max-width: 900px) {
        .hero-about-wrapper {
            margin-top: 60px; /* Jarak dari atas untuk layar HP biasanya lebih kecil */
        }
    }

    /* ========================================================================
       2. SPLIT LAYOUT (VISION MISSION & BRIEF)
       ======================================================================== */
    .global-split-section {
        display: flex;
        flex-wrap: wrap; 
    }

    .left-sidebar {
        background-color: #000066;
        color: white;
        padding: 100px 5%;
    }

    .sidebar-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 50px;
    }

    .vm-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .vm-icon {
        font-size: 2rem;
        margin-right: 25px;
        color: #66ccff;
    }

    .right-content {
        background-color: #ffffff;
        padding: 100px 8%;
    }

    .brief-title {
        font-size: 2.6rem;
        font-weight: bold;
        color: #222;
        margin-bottom: 40px;
        display: inline-block;
        border-bottom: 4px solid #000066; /* Garis otomatis sesuai panjang teks */
        padding-bottom: 15px;
    }

    .brief-text p {
        font-size: 1.1rem;
        color: #444;
        line-height: 2;
        margin-bottom: 20px;
        text-align: justify;
    }

    /* COUNTER STYLING */
    .inner-counter-box {
        border-top: 1px solid #eaeaea;
        padding-top: 40px;
        margin-top: 40px;
    }

    .inner-count-num {
        font-size: 2.8rem;
        font-weight: 800;
        color: #000066;
    }

    .inner-count-label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #777;
    }

    /* ========================================================================
    3. CORPORATE VALUES - JINMAX STYLE (3 COLUMNS)
    ======================================================================== */
    .values-section-jinmax {
        padding: 60px 0 20px 0; /* Perkecil padding atas dan bawah banget */
        background-color: #ffffff;
        text-align: center;
        border-top: 1px solid #eee;
    }

    .value-card-jinmax {
        padding: 10px 20px; /* Kurangi padding dalam kartu */
        margin-bottom: 10px; /* Kurangi margin bawah kartu */
    }

    .value-card-jinmax:hover {
        transform: translateY(-5px);
    }

    .value-card-jinmax h4 {
        font-size: 1.6rem;
        font-weight: 800;
        color: #000066; /* Kita pakai Navy Blue IBS agar lebih selaras */
        text-transform: uppercase;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

    /* Garis kecil di bawah judul value ala Jinmax */
    .value-card-jinmax h4::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background-color: #66ccff; /* Warna biru muda IBS */
    }

    .value-card-jinmax p {
        font-size: 1.05rem;
        color: #555;
        line-height: 1.8;
        text-align: center; /* Jinmax menggunakan rata tengah untuk teks pendek */
    }

    /* ========================================================================
       4. TEAM MANAGEMENT
       ======================================================================== */
    .team-section {
        background-color: #f9f9f9;
        padding: 40px 0 80px 0; /* Perkecil padding atas agar rapat dengan Values di atasnya */
    }

    .team-header-title {
        font-size: 2.6rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px; /* Kurangi jarak judul ke foto tim */
    }

    .team-card {
        background: #fff;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        text-align: center;
        margin-bottom: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .team-card:hover { transform: translateY(-10px); }
    
    .team-img-wrapper {
        height: 350px;
        overflow: hidden;
    }
    
    .team-img {
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        object-position: top center;
    }
    
    .team-info { padding: 25px 20px; }
    .team-name { font-size: 1.25rem; font-weight: 700; }
    .team-role { font-size: 1.25rem; font-weight: 600; color: #000066; }

    @media (max-width: 991px) {
        .left-sidebar, .right-content { padding: 60px 20px; }
        .values-section { padding: 60px 20px; }
    }