         /* Reset dan dasar */
        body, html {
            margin: 0; padding: 0; background: #eee; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
        }

        /* Header aplikasi */
        header {
            position: sticky;
            top: 0;
             z-index: 1000;
            color:white;
            display: flex;
            align-items: center;
            padding: 10px 16px;
            background-color: #1c5b2f;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .kepala{display:flex}
        .content {
            font-family: Arial, sans-serif;
            margin: 20px;
            background-color: #f4f4f4;
        }
        .back-button {
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        .back-button svg {
            width: 24px;
            height: 24px;
        }
        .contact-card {
  
            display: flex;
            align-items: center;
            border-radius: 8px;
            margin-bottom: 15px;
            color: white;
            padding: 15px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
        }
        .icon {
            font-size: 30px;
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        .title {
            padding: 10px 16px;
            font-size:20px;
            font-weight: bold;
            flex-grow: 1;
        }        
        .divider {
            border-left: 3px solid rgba(255,255,255,0.7);
            height: 50px;
            margin: 0 15px;
        }
        /* Warna dan layout sesuai gambar */
        .bpbd { background: #f3b41c; }
        .pemadam { background: #1e53b5; }
        .pmi { background: #af0a11; }
        .pdam { background: #064171; }
        .darurat { background: #d70f15; }
        .ambulan { background: #e8e8e8; color: #d70f15; }
        .ambulan .icon { color: #d70f15; }
        .kepolisian { background: #003d7a; }
        .posko { background: #003e8a; }

        .contact-text {
            flex-grow: 1;
            display: flex;
            justify-content: space-between;
        }
        .phone-number {
            margin-right:10px;
            font-weight: normal;
            font-size: 1.1em;
            letter-spacing: 1px;
        }