/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.background-image {
    background-size: cover; /* Menyesuaikan ukuran gambar */
    background-position: center; /* Memusatkan gambar */

    position: relative; /* Menjadikan posisi relatif untuk overlay */
}

.overlay {
    position: absolute; /* Posisi absolut untuk overlay */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Warna hitam dengan transparansi */
    z-index: 1; /* Menempatkan overlay di atas gambar */
}

.content-left-wrapper {
    position: relative; /* Menjadikan posisi relatif untuk konten */
    z-index: 2; /* Menempatkan konten di atas overlay */
}

@media (max-width: 768px) {
    .background-image {
        height: auto; /* Mengatur tinggi otomatis mengikuti gambar */
        max-height: 300px; /* Tinggi minimum 300px */
    }
}
