.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; /* Adjust padding as needed */
    text-align: center;
}

.btn::after {
    content: '';
    background-image: url('https://kajabi-storefronts-production.kajabi-cdn.com/kajabi-storefronts-production/file-uploads/themes/2157739727/settings_images/e8536-4a77-25a5-0ec4-307a0db1463_noun-arrow-3771846_1_.png'); /* Replace with your image path */
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 40px; /* Adjust based on your image size */
    height: 40px; /* Adjust based on your image size */
    margin-left: 10px; /* Space between text and image */
}

.btn:hover {
    transform: scale(1.05);
}

.btn:hover::after {
    transform: translateX(5px); /* Move image slightly on hover */
}