.hero-image {
    /* Menentukan gambar background */
    background: url('assets/image/Home/WhatsApp Image 2025-11-04 at 01.54.50_94882bf4.jpg') center/cover no-repeat; 
    /* ... properti layout lainnya ... */
}

/* Pseudo-elemen untuk overlay transparan */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Warna hitam semi-transparan (Nilai 0.4 dapat diubah, semakin besar semakin gelap) */
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2; /* Memastikan teks di atas overlay */
    /* ... properti teks lainnya ... */
}