.about__section {
    max-width: 85em;
    margin: 0 auto;
    padding: 2em;
    background-color: white;
}

.about__heading h4 {
    font-size: 2.5em;
    color: #0056F1;
    text-align: center;
}

.about__heading p {
    /* 2 naar 25*/
    font-size: 1em;
    color: #333;
    margin-bottom: 1em;
    text-align: center;
}

.about__card_layout {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 2em;
}

.card {
    background: white;
    /* 8 naar 75 */
    padding: 1.75em;
    border-radius: 0.5em;
    flex: 1;
    max-width: 32em;
    min-height: 15em;
    /* 2 naar 25*/
    box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
    gap: 1em;
    display: flex;
    flex-direction: column;
    transition: ease-in-out 0.2s;
}


.card:hover {
    transform: scale(1.02);
}


.about__timeline {
    margin-top: 2em;
    text-align: left;
}

.timeline__item {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 1.5em;
    padding: 0.2em;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.timeline__title {
    font-weight: 700;
    font-size: 1.3em;
}

.year {
    font-size: 1.5em;
    font-weight: bold;
    color: #0056F1;
}

footer {
    background: #0056F1;
    color: white;
    padding: 2em;
    margin-top: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    text-align: center;
}

/* Footer styles */
.footer-title {
    font-weight: bold;
    font-size: 1.4em;
}

.footer-description {
    font-size: 1em;
}

/* About card styles */
.card-title {
    font-weight: 700;
    font-size: 1.5em;
}

.card-description {
    font-size: 1em;
    line-height: 1.5;
}

@media (max-width: 50em) {
    .about__card_layout {
        flex-direction: column;
    }

    .timeline__item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 35em) {
    .about__heading h1 {
        font-size: 2em;
    }
}

.card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.about__card_layout.visible .card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about__card_layout.visible .card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about__card_layout.visible .card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.about__timeline.visible .timeline__item {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}