        /* Kolom Informasi Rekening */
        .info-box {
            display: none; /* Sembunyikan default */
            background: rgba(133, 127, 105, 0.6);
            padding: 20px;
            border-radius: 15px;
            color: white;
            width: 80%;
            margin: 20px auto;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.5s ease-in-out;
        }

        /* Animasi fade-in */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Styling animasi Thanks GIF */
        .thanks-gif {
            display: none;
            margin-top: 20px;
            width: 150px;
            animation: fadeIn 0.8s ease-in-out;
        }