  /* Optional: Custom styling for visual appeal */
        .owl-carousel .item {
            padding: 15px;
            /* Ensures content aligns in the visual space of a column */
        }
        .item-content {
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .item-content:hover {
            transform: translateY(-5px);
        }
        .slide-image {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }