/* Custom carousel styles */
.custom-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex-shrink: 0;
    width: 25%;
    box-sizing: border-box;
    padding: 10px;
}

.carousel-nav {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.prev-arrow, .next-arrow {
    cursor: pointer;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
    }
}