        :root {
            --brand-green: #377038;
            --light-bg: #ecf0f3;
            --card-title-color: #4D733A;
            --text-main: #4a5568;
            --check-green: #2B8C4A;
        }

        body {
            background-color: var(--light-bg);
            font-family: 'Poppins', sans-serif;
            color: var(--text-main);
            margin: 0;
            padding: 0;
            padding-bottom: 3rem;
        }

        /* Hero Banner Section */
        .hero-banner {
            position: relative;
            background-image: url('../img/banner-about.jpg');
            /* Reuse existing background */
            background-size: cover;
            background-position: center;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            padding: 2rem 0;
            /* Padding inside the banner */
            min-height: 250px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 992px) {
            .hero-banner {
                min-height: 380px;
            }
        }

        /* The white title box on the left */
        .title-box {
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem 3rem 1.5rem 2rem;
            border-top-right-radius: 40px;
            border-bottom-right-radius: 40px;
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
            display: inline-block;
            margin-left: 0;
            max-width: 80%;
        }

        .title-box h2 {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 1.5rem;
            color: #212529;
            margin-bottom: 0.2rem;
        }

        .title-box h1 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 2.2rem;
            color: var(--brand-green);
            margin-bottom: 0;
            letter-spacing: 0.5px;
        }

        /* Right side laptop setup in header */
        .hero-image-wrapper {
            position: relative;
            z-index: 10;
        }

        .hero-image-wrapper img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            max-width: 100%;
        }

        /* Card Styles */
        .custom-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .custom-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .card-title-custom {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--card-title-color);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .card-title-custom i {
            font-size: 1.5rem;
            margin-right: 0.8rem;
        }

        .custom-card.bg-tujuan {
            background-image: url('../img/bg-tujuan.png');
            background-position: bottom right;
            background-repeat: no-repeat;
        }

        .custom-card.bg-manfaat {
            background-image: url('../img/bg-manfaat.png');
            background-position: bottom right;
            background-repeat: no-repeat;
        }

        .custom-card.bg-layanan {
            background-image: url('../img/bg-layanan.png');
            background-position: bottom right;
            background-repeat: no-repeat;
        }

        .custom-card.bg-komitmen {
            background-image: url('../img/bg-komitmen.png');
            background-position: bottom right;
            background-repeat: no-repeat;
        }

        /* Check list styles */
        .check-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .check-list li i {
            position: absolute;
            left: 0;
            top: 0.15rem;
            font-size: 1.1rem;
            color: var(--check-green);
        }

        /* Typography tweaks */
        .lh-custom {
            line-height: 1.7;
        }

        /* Responsive Hero */
        @media (max-width: 768px) {
            .title-box {
                padding: 1rem 1.5rem 1rem 1rem;
                border-top-right-radius: 20px;
                border-bottom-right-radius: 20px;
                margin-top: 2rem;
            }

            .title-box h2 {
                font-size: 1.2rem;
            }

            .title-box h1 {
                font-size: 1.6rem;
            }

            .hero-image-wrapper {
                margin-top: 1.5rem;
                text-align: center;
                padding-right: 1rem;
                padding-left: 1rem;
            }

            .custom-card {
                margin-bottom: 1rem;
            }
        }