/* Section principale */
.Reseau {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Infrastructure */
.infrastructure {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.infrastructure:nth-child(1) {
    animation-delay: 0.2s;
}

.infrastructure:nth-child(2) {
    animation-delay: 0.4s;
}

.infrastructure div {
    width: 48%;
}

/* Titre des sections */
h2 {
    color: #2a3d66; /* Bleu foncé */
    font-size: 28px;
    font-weight: 500;
}

/* Paragraphe remplacé par des div significatives */
.objectif-description,
.vision-description {
    color: #4a4a4a; /* Gris foncé pour le texte */
    font-size: 16px;
    line-height: 1.8;
}

/* Appel à l'action (CTA) */
.cta {
    background: linear-gradient(to bottom, #007bff, #4facfe); /* Bleu professionnel */
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.6s;
}

.cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta button {
    background-color: white;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta button:hover {
    background-color: #cec326;
    color: white;
}

/* Image de CTA */
.cta img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

/* Animation de l'apparition des éléments */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
