/* Custom Hero Styling */
.modular-hero.hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 50vh; /* Tinggi minimal 50% layar */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Penyesuaian untuk Layar Kecil (Mobile) */
@media (max-width: 768px) {
    .modular-hero.hero {
        min-height: 60vh; /* Tinggi sedikit lebih besar di mobile */
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .modular-hero.hero h1 {
        font-size: 2rem; /* Ukuran teks lebih kecil */
    }
}
