.image-showcase {
    margin: 40px 0;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.img-fluid-shadow {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
    height: auto;
}

    .img-fluid-shadow:hover {
        transform: translateY(-5px);
    }

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text {
    flex-basis: 50%;
}

.hero-image {
    flex-basis: 40%;
    text-align: center;
}

@@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-image, .hero-text {
        flex-basis: 100%;
    }
}