@media (max-width: 768px) {
    .btn-responsive {
        padding: 8px 12px;
        font-size: 14px;
        width: 75%; 
        max-width: 300px; 
     }
    }
    
    .button-container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    }
    
    
    img {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    img:hover {
        transform: scale(1.1); /* Slightly enlarges the image */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    }