.counter-container {
    text-align: center;
  align-items: center;
  gap: 5px; /* Space between + and number */
}

.plus-sign {
    font-size: 90px;
    color: #073c72;
    font-weight: 800;
    align-self: flex-start;
}
.key-number {
    display: flex
;
    align-items: center;
}
.counter {
    font-size: 90px;
    font-weight: 800;
    color: #073c72;
    transition: all 0.3s ease;
}
.counter-container p {
    font-size: 21px;
    font-weight: 500;
}
@keyframes countUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.counter.animated {
  animation: countUp 1s ease-out;
}

.propos-cont{
    text-align: center;
}

article.key-numbers {
    display: flex
;
    justify-content: space-around;
    padding: 1em 10em;
}
article.poles {
    padding: 3em 4em;
}

.poles {
    display: flex
;
gap:2em;
    justify-content: center;
}
.pole-1 {
    width: 33.33%;
    border: 1px solid #dbd0d0;
    padding: 1em;
    box-shadow: 1px 3px 4px #d5d3d3;
    border-radius: 4px;
    background-color: #fafafd;
        display: flex
;
    flex-direction: column;
    justify-content: center;
}
.pole-1 h2 {
    font-size: 35px;
    font-weight: 700;
    color: #004359;
}
.pole-1.pole-3 p {
    font-size: 22px;
    text-align: justify;
}
.pole-1 p {
    font-size: 20px;
}
