        /* Gaya kustom untuk efek hover pada tombol */
        .btn-primary {
            transition: background-color 0.3s ease-in-out;
        }
        .btn-primary:hover {
            background-color: #4338ca; /* Warna indigo yang sedikit lebih gelap saat di-hover */
        }