body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f9;
    margin: 10;
    padding: 0;
    color: #333;
}
.container {
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center; /* TAMBAHKAN BARIS INI */
}
.header {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.search-box {
    background: #f1f3f4;
    padding: 12px;
    border-radius: 25px;
    margin: 10px;
    font-size: 14px;
    color: #5f6368;
    display: flex;
    align-items: center;
}
.contact-card {
    margin: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.btn-call { background-color: #2563eb; color: white; border-radius: 10px; padding: 12px; font-weight: bold; display: block; margin: 10px 0; text-decoration: none; }
.btn-wa { background-color: #25d366; color: white; border-radius: 10px; padding: 12px; font-weight: bold; display: block; margin: 10px 0; text-decoration: none; }
.footer {
    background: #0f172a;
    color: white;
    padding: 20px 10px;
    font-size: 12px;
    margin-top: 10px;
}
.hero-logo {
    width: 100% !important; /* Menambah !important untuk memaksa perintah ini */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.hero-section {
    text-align: center !important;
}

/* =========================================
   KODE CSS UNTUK ACCORDION FAQ
   ========================================= */

/* 1. Sembunyikan jawaban secara default */
.faq-answer {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    border-left: 3px solid #27ae60; 
    line-height: 1.6;
}

/* 2. Tampilkan jawaban saat item FAQ memiliki class 'active' */
.faq-item.active .faq-answer {
    display: block !important;
}

/* 3. Atur tampilan pertanyaan agar terlihat bisa diklik */
.faq-question {
    cursor: pointer;
    padding: 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    user-select: none; 
}

/* 4. Efek hover saat mouse di atas pertanyaan */
.faq-question:hover {
    background-color: #f1f1f1;
}

/* 5. Tambahkan simbol indikator (+ / -) di sebelah kanan */
.faq-question::after {
    content: '\002B'; 
    font-size: 18px;
    color: #777;
    font-weight: bold;
}

/* 6. Ubah simbol menjadi Minus (-) saat FAQ terbuka */
.faq-item.active .faq-question::after {
    content: '\2212'; 
    color: #27ae60;
}

/* 7. Beri sedikit jarak antar item FAQ */
.faq-item {
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

/* Pengaturan dasar tombol agar rapi */
.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: white !important;
    margin: 10px 5px;
    transition: transform 0.2s;
}

/* Update Desain Tombol Sesuai Gambar (Bentuk Kapsul) */
.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px; /* Membuat sudut sangat bulat seperti kapsul */
    font-family: 'Arial', sans-serif; /* Anda bisa ganti dengan font yang mirip di gambar */
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    margin: 15px auto;
    width: 80%; /* Lebar tombol bisa disesuaikan */
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Efek bayangan halus */
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Warna Hijau WhatsApp sesuai gambar */
.whatsapp-button {
    background-color: #2ecc71 !important; 
}

/* Warna Biru Telepon sesuai gambar */
.phone-button {
    background-color: #007bff !important;
}

/* Ukuran Ikon */
.button-icon {
    margin-right: 15px;
    font-size: 24px;
}

/* Gaya Teks di Tombol */
.button-text {
    font-size: 18px;
}

/* Mengubah semua logo di dalam tombol menjadi putih */
.button-icon i {
    color: #ffffff !important;
    opacity: 1 !important;
}