    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: "Segoe UI", sans-serif;
    background: #f8f9fa;
    color: #333;
}

    body {
            font-family: "Poppins", sans-serif;
            margin: 0;
            background: #f5f5f5;
        }
        .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar .logo img {
    height: 45px;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;   
}

.navbar nav a:hover {
    color: #007bff;
}

/* CONTAINER DROP-DOWN UTAMA */
.dropdown {
    position: relative; /* Penting! Menetapkan posisi relatif untuk drop-down content */
    display: inline-block;
}

/* Tombol Drop-down (Tautan Profile) */
.dropdown .dropbtn {
    /* Menggunakan style yang sama dengan tautan navigasi lainnya */
    padding: 0 15px; 
    text-decoration: none;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    /* Menghilangkan margin jika ada agar align dengan menu lain */
}

/* Container Sub-menu (Kotak putih) */
.dropdown-content {
    /* Sembunyikan secara default */
    display: none; 
    
    /* Posisi Sub-menu */
    position: absolute;
    top: 100%; /* Tempatkan tepat di bawah tombol */
    left: -15px; /* Sesuaikan posisi horizontal, geser sedikit ke kiri */

    /* Styling Kotak */
    background-color: #ffffff;
    min-width: 150px; /* Lebar minimum kotak */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Efek bayangan */
    padding: 10px 0;
    border-radius: 8px; /* Sudut membulat */
    z-index: 100;
}

/* Styling Tautan di dalam Sub-menu */
.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block; /* Agar setiap tautan mengisi lebar kotak */
    font-weight: 400;
}

/* Efek hover pada tautan sub-menu */
.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--blue); /* Gunakan warna aksen Anda */
}

/* Tampilkan sub-menu saat hover pada dropdown container */
.dropdown:hover .dropdown-content {
    display: block;
}

.btn-daftar {
    background: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
}
.btn-daftar:hover { background: #0056b3; }

        header {
            background: white;
            padding: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        header h2 {
            color: #1e3a8a;
            font-weight: 700;
            margin: 0;
        }
        .container {
            max-width: 800px;
            margin: 40px auto;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            margin-top: 90px;
            
        }
        .title {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 25px;
        }
        label {
            font-weight: 600;
            margin-bottom: 5px;
            display: block;
        }
        input, textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: 10px;
            margin-bottom: 15px;
            font-size: 15px;
            outline: none;
        }
        textarea {
            min-height: 130px;
            resize: vertical;
        }
        button {
            width: 100%;
            padding: 14px;
            background: #1e3a8a;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
        }
        button:hover {
            background: #153075;
        }
        .info-box {
            margin-top: 30px;
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
        }
        .info-box h3 {
            margin: 0 0 10px;
            color: #1e3a8a;
        }
        .info-box p {
            margin: 5px 0;
            font-size: 15px;
        }
        .icon {
            color: #1e3a8a;
            margin-right: 8px;
        }

        .site-footer {
    background-color: #0d284a; /* Biru gelap seperti di gambar */
    color: #ffffff; /* Teks putih */
    padding: 30px 0;
    font-family: Arial, sans-serif; /* Ganti dengan font yang Anda gunakan */
}

/* Container untuk kolom */
.foot-inner {
    display: flex;
    justify-content: space-around; /* Jarak antar kolom */
    max-width: 1200px; /* Lebar maksimal konten */
    margin: 0 auto;
    padding: 0 20px;
}

/* Styling setiap kolom */
.foot-col {
    padding: 0 15px;
    /* Lebar diatur agar pas untuk 3 kolom */
    flex-basis: 33.33%; 
    max-width: 33.33%;
}

/* Judul Kolom (Bantuan, Hubungi Kami) */
.col-title {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* --- Kolom Info Kiri (foot-info) --- */
.logo-text-bold {
    font-weight: bold;
    display: block;
    font-size: 1.2em;
    line-height: 1.2;
}
.logo-text-light {
    font-size: 0.8em;
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
}
.group-name {
    font-size: 1.4em;
    font-weight: bold;
    margin: 15px 0 10px 0;
}
.address {
    font-size: 0.9em;
    margin-bottom: 20px;
}
.visitor-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85em;
    line-height: 1.5;
}

/* --- Kolom Bantuan & Hubungi Kami --- */
.link-list, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li, .contact-list li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.link-list a, .contact-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.link-list a:hover, .contact-list a:hover {
    color: #1e90ff; /* Contoh hover warna biru */
}

.contact-icon {
    margin-right: 5px;
}

/* --- Copyright --- */
.foot-copyright {
    text-align: center;
    padding: 20px 0 0 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Garis tipis di atas copyright */
    font-size: 0.9em;
}

/* small helpers */
.mt{margin-top:20px}
.link-more{text-decoration:none;color:var(--blue);font-weight:700}

@media (max-width: 850px) {
    .lokasi-container { 
        flex-direction: column;
     }

    
    .maps-area {
        height: 300px; 
        flex: none;
    }

    .kontak-area {
        flex: none;
        padding: 30px 20px;
    }
}
