 /* Global Styles */
 body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
}

.NosValeurs {
    padding: 50px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    border-radius: 8px;
    max-width: 1200px;
}

.NosValeurs h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0f0830;
}

.values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1.5s ease-out;
}

.value {
    background: #ffffff;
    border: 2px solid #0078ff;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: rotateIn 1s ease-out;
}

.value:hover {
    transform: scale(1.05) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 120, 255, 0.3);
}

.value img {
    width: 50px;
    margin-bottom: 15px;
    animation: zoomIn 1s ease-out;
}

.value h3 {
    font-size: 1.5rem;
    color: #0078ff;
    margin-bottom: 10px;
    font-weight: bold;
}

.value p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-30deg);
        opacity: 0;
    }
    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}