html,
body,
*,
:root{
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 800px; /* Lebar ideal untuk kerapian */
            margin: 0 auto;
            padding: 20px 0;
        }

        /* Hero Section (Bagian Atas) */
        .hero-section {
            background: linear-gradient(135deg, #D9ED92 0%, #B5E48C 100%); /* Gradasi hijau segar */
            color: #2e5c3e;
            text-align: center;
            padding: 60px 20px;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .hero-section .logo {
            width: 160px;
            height: auto;
            margin-bottom: 15px;
            background: white;
            border-radius: 50%;
            padding: 5px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .hero-section h1 {
            font-size: 2.2em;
            font-weight: 700;
            margin: 10px 0 5px 0;
            color: #1a452a;
        }

        .hero-section .tagline {
            font-size: 1.1em;
            font-weight: 500;
            opacity: 0.9;
            margin-top: 0;
        }

        /* Konten Utama */
        section {
            padding: 40px 0;
        }

        h2 {
            text-align: center;
            color: #1a452a;
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .about-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
        }

        /* Tombol GoFood */
        .cta-section {
            text-align: center;
            padding-bottom: 60px;
        }

        .btn-gofood {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #00AA13; /* Warna Official Gojek */
            color: #fff;
            padding: 18px 40px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 170, 19, 0.3);
            border: 2px solid transparent;
        }

        .btn-gofood:hover {
            background-color: #fff;
            color: #00AA13;
            border: 2px solid #00AA13;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 170, 19, 0.4);
        }

        /* Footer */
        footer {
            background-color: #1a452a;
            color: #fff;
            text-align: center;
            padding: 30px 20px;
            margin-top: 20px;
        }
        
        footer .phone {
            font-size: 1.2em;
            font-weight: bold;
            color: #D9ED92;
        }

        /* Responsif untuk HP */
        @media (max-width: 600px) {
            .hero-section h1 { font-size: 1.8em; }
            .btn-gofood { width: 100%; }
        }