    /* GLOBAL STYLE */

    body {
        font-family: 'IBM Plex Mono', monospace;
        margin: 0;
        background: #fcf2de;
        color: #111;
    }

    /* NAVBAR */
    .navbar {
        background: #111;
        color: white;
        padding: 15px 0;
        position: sticky;
        top: 0;
    }

    .nav-container {
        max-width: 1000px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }

    .logo a {
        color: white;
        text-decoration: none;
        font-weight: bold;
    }

    .nav-menu {
        list-style: none;
        display: flex;
        gap: 30px;
    }

    .nav-menu a {
        color: #ccc;
        text-decoration: none;
    }

    .nav-menu a.active,
    .nav-menu a:hover {
        color: white;
        border-bottom: 2px solid white;
    }

    /* SECTION */
    section:not(.hero-full) {
        max-width: 800px;
        margin: auto;
        padding: 40px 20px;
        text-align: center;
    }

    /* BUTTON */
    button {
        background: #555;
        color: white;
        border: none;
        padding: 12px 20px;
        margin-top: 20px;
        border-radius: 5px;
        cursor: pointer;
    }

    button:hover {
        background: #333;
    }

    /* FOOTER */
    footer {
        text-align: center;
        padding: 30px;
        border-top: 1px solid #ccc;
    }

    .section-label {
        font-size: 14px;
        color: #777;
        margin-bottom: 10px;
        text-align: left;
    }

    .about {
        text-align: left;
    }

    .about h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about p {
        line-height: 1.7;
        margin-bottom: 15px;
    }


    /* biar konten rapi di tengah */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* typography */
    .hero-full h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .hero-full h2 {
        font-size: 32px;
        margin: 20px 0;
    }

    .tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .subtitle {
        font-style: italic;
        margin-bottom: 20px;
    }

    /* button */
    .hero-full button {
        background: #555;
        color: white;
        padding: 14px 28px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
    }

    .hero-full button:hover {
        background: #333;
    }
    /* WHY SECTION */
    .why {
        text-align: left;
    }

    .why h3 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .why-item {
        margin-bottom: 25px;
    }

    .why-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .why-item p {
        line-height: 1.7;
    }

    /* SERVICES */
    .services {
        text-align: left;
    }

    .service-list {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .service-list li {
        margin-bottom: 10px;
        font-size: 16px;
    }

    /* TITLE */
    .title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    /* PRICE SECTION */
    .pricelist {
        max-width: 800px;
        margin: auto;
        padding: 40px 20px;
    }

    /* BOX */
    .price-box {
        margin-bottom: 60px;
    }

    .price-box h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .duration {
        color: #bbb;
        margin-bottom: 10px;
    }

    .price-box hr {
        border: 0;
        border-top: 1px solid #444;
        margin: 20px 0;
    }

    .price-box p {
        font-size: 18px;
        margin: 10px 0;
    }

    /* BUTTON */
    .price-box button {
        background: #555;
        color: #fff;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        margin-top: 15px;
        cursor: pointer;
    }

    .price-box button:hover {
        background: #777;
    }

    /* CTA */
    .cta {
        text-align: center;
        margin-top: 60px;
    }

    .cta p {
        color: #aaa;
        margin-bottom: 20px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .btn {
        background: #555;
        color: white;
        padding: 12px 20px;
        border-radius: 6px;
        text-decoration: none;
    }

    .btn:hover {
        background: #777;
    }

    /* ABOUT PAGE */
    .about-page {
        max-width: 800px;
        margin: auto;
        padding: 40px 20px;
    }

    .about-page .title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .about-image img {
        width: 100%;
        border-radius: 5px;
    }

    /* TEXT */
    .about-page h2 {
        margin-top: 20px;
        font-size: 26px;
    }

    .about-page p {
        line-height: 1.8;
        margin: 15px 0;
    }

    /* LIST */
    .about-list {
        margin-top: 15px;
        padding-left: 20px;
    }

    .about-list li {
        margin-bottom: 10px;
    }

    /* DIVIDER (garis putus-putus kayak gambar) */
    .divider {
        border-top: 1px dashed #444;
        margin: 30px 0;
    }

    /* CTA BUTTON */
    .cta {
        display: flex;
        gap: 20px;
        margin-top: 30px;
    }

    .btn:hover {
        background: #777;
    }

    /* RESPONSIVE MOBILE */
    @media (max-width: 768px) {

        /* HERO */
        .hero-full {
            padding: 20px;
            height: 100vh;
            display: flex;
            justify-content: center;
        align-items: center;
        }

        .hero-full h1 {
            font-size: 32px;
        }

        .hero-full h2 {
            font-size: 22px;
        }

        .tagline {
            font-size: 12px;
        }

        .subtitle {
            font-size: 14px;
        }

        /* BUTTON */
        .hero-full button {
            width: 100%;
            max-width: 250px;
        }

        /* SECTION UMUM */
        section {
            padding: 30px 15px;
        }

        /* ABOUT */
        .about h3,
        .why h3,
        .services h3 {
            font-size: 24px;
        }

        .about p,
        .why p {
            font-size: 14px;
        }

        /* NAVBAR */
        .nav-container {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .nav-menu {
            flex-direction: column;
            gap: 10px;
        }

        /* PRICELIST */
        .price-box p {
            font-size: 16px;
        }

        .title {
            font-size: 28px;
        }

        /* CTA BUTTON */
        .cta-buttons {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            text-align: center;
            display: inline-block;
            margin-top: 15px;
        }
    }