 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
        }

        /* ================= pem-konten FULL SCREEN ================= */
        .pem-konten {
            height: 100vh;
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
        }

        .konten {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background-image: url("../images/bg-header-web.jpg");
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover; 
        }

        .kontainer-judul {
            text-align: center;
            margin-bottom: 40px;
        }

        .judul-utama {
            font-size: 4rem;
            color: #1a4d2e;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .sub-judul {
            font-size: 1.5rem;
            font-weight: 100;
            color: #555;
        }

        .kontainer-tombol {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 800px;
            width: 100%;
        }

        .tombol {
            padding: 15px 20px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            min-width: 200px;
            text-align: center;
            transition: 0.3s;
        }

        .tombol:hover {
            transform: translateY(-3px);
        }

        .tombol-merah { background: #e53935; }
        .tombol-biru { background: #1e88e5; }
        .tombol-oranye { background: #fb8c00; }

        /* ================= NAVIGATION ================= */
        .navigasi-footer {
            background-color: #2e7d32;
            padding: 15px 0;
            position: relative;
            transition: 0.3s;
        }

        .navigasi-footer.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .kontainer-navigasi {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-weight: bold;
            margin-right: auto;
        }

        .ikon-logo {
            width: 40px;
            height: 40px;
            background: white;
            color: #2e7d32;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: bold;
        }

        .menu-navigasi {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .item-navigasi {
            color: white;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 4px;
        }

        .item-navigasi:hover {
            background: rgba(255,255,255,0.15);
        }

        /* ================= MAIN CONTENT ================= */
        main {
            padding: 20px 20px;
            max-width: 1250px;
            margin: 0px auto;
        }

        main h1 {
            margin-bottom: 10px;
        }

        main h5 {
            font-weight: normal;
            color: #555;
        }

        .header-title-konten {
            text-align: center;
            margin-bottom: 20px;
        }

        .header-title-konten h1 {
            color: #2c7a7b;
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .header-title-konten p {
            color: #718096;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .judul-utama {
                font-size: 2.2rem;
            }

            .menu-navigasi {
                flex-wrap: wrap;
                justify-content: center;
            }

            .kontainer-navigasi {
                flex-direction: column;
                gap: 15px;
            }

            .header-title-konten h1 {
                font-size: 2rem;
            }

            .logo {
                margin-right: 0;
            }
        }
        
        /* Animasi Masuk - Base Class */
        .animasi-masuk {
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        /* Variasi Animasi Masuk */
        .animasi-masuk-dari-atas {
            animation-name: masukDariAtas;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
        }
        
        .animasi-masuk-dari-bawah {
            animation-name: masukDariBawah;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
        }
        
        .animasi-masuk-dari-kiri {
            animation-name: masukDariKiri;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
        }
        
        .animasi-masuk-dari-kanan {
            animation-name: masukDariKanan;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
        }
        
        .animasi-masuk-memudar {
            animation-name: masukMemudar;
            animation-duration: 1s;
            animation-timing-function: ease-in-out;
        }
        
        /* Animasi Masuk dengan Delay untuk Tombol */
        .animasi-masuk-tertunda-1 {
            animation-name: masukDariBawah;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
            animation-delay: 0.2s;
        }
        
        .animasi-masuk-tertunda-2 {
            animation-name: masukDariBawah;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
            animation-delay: 0.4s;
        }
        
        .animasi-masuk-tertunda-3 {
            animation-name: masukDariBawah;
            animation-duration: 0.8s;
            animation-timing-function: ease-out;
            animation-delay: 0.6s;
        }
        
        /* Keyframes untuk Animasi */
        @keyframes masukDariAtas {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes masukDariBawah {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes masukDariKiri {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes masukDariKanan {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes masukMemudar {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /*  <!-- footer --> */

        .pembungkus-utama-footer {
            max-width: 1200px;
            margin: 40px auto;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
        }
        
        .pembungkus-utama-footer section.bagian-kiri {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .judul-utama-footer {
            font-size: 2rem;
            color: #1a4d2e;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .kontak-list {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .item-kontak {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .ikon-kontak {
            width: 40px;
            height: 40px;
            background-color: #1a4d2e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 1.2rem;
        }
        
        .ikon-kontak ion-icon {
            font-size: 20px;
        }
        
        .detail-kontak {
            flex: 1;
        }
        
        .label-kontak {
            font-weight: 600;
            color: #1a4d2e;
            margin-bottom: 5px;
        }
        
        .nilai-kontak {
            color: #4a5568;
            font-size: 1rem;
        }
        
        .tombol-unduh {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #1a4d2e;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 30px;
            border: none;
            cursor: pointer;
        }
        
        .tombol-unduh:hover {
            background-color: #143821;
            transform: translateY(-2px);
        }
        
        .bagian-kanan {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            background-color: #f9fafb;
        }
        
        .animasi-helpdesk {
            width: 100%;
            max-width: 400px;
            height: 400px;
            position: relative;
        }
        
        .cs-representatif {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            background-color: #fdbcb4;
            border-radius: 50%;
            z-index: 2;
        }
        
        .cs-representatif::before {
            content: "";
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 40px;
            background-color: #1a4d2e;
            border-radius: 20px 20px 0 0;
        }
        
        .cs-representatif::after {
            content: "";
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 30px;
            background-color: #1a4d2e;
            border-radius: 15px 15px 0 0;
        }
        
        .cs-mata {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            display: flex;
            justify-content: space-between;
        }
        
        .mata {
            width: 15px;
            height: 15px;
            background-color: #333;
            border-radius: 50%;
            animation: berkedip 4s infinite;
        }
        
        @keyframes berkedip {
            0%, 90%, 100% {
                transform: scaleY(1);
            }
            95% {
                transform: scaleY(0.1);
            }
        }
        
        .cs-senyum {
            position: absolute;
            top: 65px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 15px;
            border-bottom: 3px solid #333;
            border-radius: 50%;
        }
        
        .meja {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 250px;
            height: 20px;
            background-color: #8b4513;
            border-radius: 5px;
        }
        
        /* Komputer */
        .monitor {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 80px;
            background-color: #2d3748;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .layar {
            width: 110px;
            height: 60px;
            background-color: #63b3ed;
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }
        
        .chat-di-layar {
            position: absolute;
            bottom: 5px;
            left: 5px;
            width: 100px;
            height: 50px;
        }
        
        .chat-item {
            position: absolute;
            background-color: white;
            padding: 3px 5px;
            border-radius: 5px;
            font-size: 8px;
            animation: muncul-chat 6s infinite;
        }
        
        .chat-item:nth-child(1) {
            bottom: 0;
            left: 0;
            width: 60px;
            animation-delay: 0s;
        }
        
        .chat-item:nth-child(2) {
            bottom: 15px;
            right: 0;
            width: 50px;
            animation-delay: 2s;
        }
        
        .chat-item:nth-child(3) {
            bottom: 30px;
            left: 0;
            width: 70px;
            animation-delay: 4s;
        }
        
        @keyframes muncul-chat {
            0%, 100% {
                opacity: 0;
            }
            10%, 90% {
                opacity: 1;
            }
        }
        
        /* Gelembung Chat */
        .gelembung-chat {
            position: absolute;
            background-color: white;
            border-radius: 15px;
            padding: 10px 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
            color: #333;
            animation: melayang 4s ease-in-out infinite;
        }
        
        .gelembung-chat::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 20px;
            width: 15px;
            height: 15px;
            background-color: white;
            transform: rotate(45deg);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
            z-index: -1;
        }
        
        .gelembung-1 {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .gelembung-2 {
            top: 40%;
            right: 10%;
            animation-delay: 1s;
        }
        
        .gelembung-3 {
            top: 60%;
            left: 15%;
            animation-delay: 2s;
        }
        
        @keyframes melayang {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        .indikator-mengetik {
            position: absolute;
            bottom: 30px;
            right: 20%;
            display: flex;
            gap: 5px;
        }
        
        .titik {
            width: 10px;
            height: 10px;
            background-color: #1a4d2e;
            border-radius: 50%;
            animation: mengetik 1.5s infinite;
        }
        
        .titik:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .titik:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes mengetik {
            0%, 60%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            30% {
                transform: scale(1.5);
                opacity: 0.7;
            }
        }
        
        .footer-bank {
            background-color: white;
            padding: 20px 50px;
            border-top: 1px solid #e2e8f0;
        }
        
        .alamat-kantor {
            color: #4a5568;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .alamat-kantor ion-icon {
            color: #1a4d2e;
        }
        
        .teks-hak-cipta {
            color: #718096;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .pembungkus-utama-footer {
                grid-template-columns: 1fr;
                margin: 20px;
            }
            
            .bagian-kanan {
                min-height: 300px;
            }
            
            .judul-utama-footer {
                font-size: 1.8rem;
            }
            
            .bagian-kiri {
                padding: 30px;
            }
            
            .bagian-kanan {
                padding: 30px;
            }
        }