body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h2 {
    text-align: center;
    color: #2d12c7;
    margin: 50px 0;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section#histoire {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

NotreHistoire.p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

p strong {
    color: #141fb9;
}

@media (max-width: 800px) {
    section#histoire {
        padding: 30px 15px;
    }
    p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 2.4rem;
    }
    p {
        font-size: 1rem;
    }
}