/* Style for the banner */
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.7; /* Sedikit transparansi pada gambar */
}

/* Overlay to darken the image for better text visibility */
.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Gelapkan gambar untuk teks */
    z-index: 2;
}

.banner h1, .banner p {
    position: relative;
    z-index: 3;
}
