body {
            font-family: sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
        }
        header {
            background: #333;
            color: #ffffff;
            padding-top: 30px;
            min-height: 70px;
            border-bottom: #0779e4 3px solid;
        }
        header h1 {
            text-align: center;
            text-transform: uppercase;
            margin: 0;
        }
        .section {
            padding: 20px 0;
            border-bottom: 1px #ccc solid;
        }
        h2 {
            color: #0779e4;
            text-align: center;
        }
        .service-list, .pricing-list {
            list-style: none;
            padding: 0;
            text-align: center;
        }
        .service-list li, .pricing-list li {
            background: #e4e4e4;
            margin: 10px 0;
            padding: 15px;
            border-radius: 5px;
        }
        .contact-info {
            text-align: center;
        }
        footer {
            background: #333;
            color: #ffffff;
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
        }
		.action-buttons {
    text-align: center;
    margin: 25px 0;
}

.action-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.2s ease;
}

.btn-portal {
    background-color: #0779e4;
    color: #fff;
}

.btn-portal:hover {
    background-color: #055fb5;
}

.btn-topup {
    background-color: #28a745;
    color: #fff;
}

.btn-topup:hover {
    background-color: #1e7e34;
}
.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pricing-box {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    width: 280px;            /* bikin tidak melebar */
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.pricing-box h3 {
    text-align: center;
    margin-bottom: 14px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table td {
    padding: 8px 6px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}
.map-section {
    width: 100%;
    padding: 40px 20px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.map-card {
    flex: 1;
    min-width: 320px;
    background: #111;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.map-card h3 {
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.map-card iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 10px;

    /* DARK MODE MAP */
    filter: invert(90%) hue-rotate(180deg);
}

.map-button {
    display: block;
    margin-top: 12px;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background: #ffb703;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.map-button:hover {
    background: #ffd166;
}