.question-image {
    max-width: 30%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.question-image:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.99) ;
    z-index: 9999;
}
@media (max-width: 768px) {
    .question-image {
        max-width: 100%;
    }
}