/* ... [CSS sebelumnya dipertahankan] ... */

/* Penambahan untuk Hero Section */
.header {
    background: #4a4e69; 
    color: white;
    padding: 0; /* Hapus padding agar gambar hero memenuhi */
}
.hero-image {
    background-image: url('images/hero.jpg'); /* Ganti dengan path gambar Anda */
    background-size: cover;
    background-position: center;
    height: 450px; /* Tinggi hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1; /* Agar teks muncul di atas */
}
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Overlay gelap agar teks terbaca */
    z-index: 2;
}
.hero-text {
    position: relative;
    z-index: 3;
    color: white;
    padding: 20px;
}
.hero-text h1 {
    font-size: 2.8em;
    margin-bottom: 5px;
}

/* Style untuk Main Content / Deskripsi */
#about-kagawa {
    padding: 40px 0;
    text-align: center;
}
.section-title {
    color: #4a4e69;
    font-size: 2em;
    margin-bottom: 10px;
}
.description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #555;
}
.feature-gallery {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}
.feature-card {
    flex-basis: 30%;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.feature-card h3 {
    color: #a52a2a;
}