.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 2rem;
    background-color: #b9e7bf;
    padding: 1rem;
    border-radius: 21px;
}

.responsive-img {
    width: 100%;
    max-width: 400px; /* Maximum width for large screens */
    height: auto;
    border-radius: 10px; /* Optional: rounded corners */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.responsive-img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .image-container {
        flex-direction: column; /* Stack images on smaller screens */
        gap: 10px;
    }
}
