/* Carrousel */
.list {
    display: flex;
    padding: 0;
    list-style: none;
    overflow: hidden;
    position: relative;
    width: 900px;
    margin-left: 30px;
    scroll-behavior: smooth;
}

.item {
    flex: 0 0 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item .content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.item .content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px auto;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}