body {
    background: linear-gradient(135deg, #a8e063 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h3 {
    font-weight: 700;
    color: #2c3e50;
}

p {
    color: #34495e;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary,
.btn-primary:hover {
    background-color: #4caf50;
    border-color: #4caf50;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #388e3c;
    box-shadow: 0 6px 20px rgba(56, 142, 60, 0.5);
}

.btn-outline-primary {
    color: #4caf50;
    border-color: #4caf50;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #4caf50;
    color: #fff;
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

/* Cards */
.card-service {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(76, 175, 80, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
    padding: 20px;
    height: 100%;
}

.card-service:hover {
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #d0f0c0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: #388e3c;
    user-select: none;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-service h5 {
    margin: 0;
    font-weight: 600;
    color: #2e7d32;
}

.card-service h6 {
    color: #2e7d32;
}

.card-service p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Layout */
.header-section .col-md-6:first-child {
    padding-right: 3rem;
}

.header-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.7rem;
}

.header-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About section */
.about-list {
    list-style: disc;
    padding-left: 1.2rem;
}

.about-list li {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}


/* About Kami section style */
.about-kami {
    color: #2c3e50;
    background: rgba(255 255 255 / 0.84);
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
    line-height: 1.6;
    margin-bottom: 50px;
    font-size: 1rem;
}

.about-kami h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

.about-kami ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0 0;
}

.about-kami ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #388e3c;
}

.about-kami ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-size: 1.4rem;
    line-height: 1;
    top: 0;
}

/* Responsive image */
.header-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.2));
    border-radius: 20px;
}

/* Utilities */
@media (max-width: 767.98px) {
    .header-section .col-md-6:first-child {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .header-section h1 {
        font-size: 1.8rem;
    }
}



/* ================================================= */
/* 2. MEDIA QUERY (MOBILE - Max Width 767.98px) */
/* ================================================= */

/* Aturan ini menargetkan layar HP dan tablet kecil */
@media screen and (max-width: 767.98px) {
    
    /* 🔑 KUNCI UTAMA PERBAIKAN FONT */
    /* Mengatur ulang basis font: 1rem sekarang = 10px. */
    /* Semua elemen yang menggunakan unit 'rem' akan otomatis mengecil. */
    html {
        font-size: 10px; 
    }

    /* Padding & Layout adjustments */
    body {
        padding: 20px 10px; /* Padding dikurangi untuk mobile */
    }

    /* Menyesuaikan ukuran H1 secara spesifik */
    h1 {
        font-size: 2rem; /* Mobile: 1.8 * 10px = 18px */
    }

    h2, h3, h4, h5 {
        font-size: 1.8rem;
    }

    h6 {
        font-size: 1.4rem;
    }

    /* Menyesuaikan ukuran font pada elemen tabel agar muat */
    table {
        font-size: 0.8rem; /* 0.8 * 10px = 8px */
    }
    th, td {
        padding: 5px;
    }
    
    /* Menyesuaikan elemen spesifik yang mungkin tetap besar */
    .card-service p {
        font-size: 1.5rem; /* 1 * 10px = 10px */
    }

    p {
        font-size: 1.5rem;
    }
}