.values-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.values-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.value-card {
    flex: 0 0 auto;
    width: 300px;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.value-title {
    font-family: 'Grand Hotel', cursive;
    color: var(--color-beige);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--color-black);
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5 - 2rem * 5)); /* Ajuster en fonction du nombre de cartes */
    }
}

/* Masquer la barre de défilement */
.values-container::-webkit-scrollbar {
    display: none;
}

.values-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
