.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Centrer verticalement les éléments */
    justify-content: center; /* Centrer horizontalement les éléments */
    padding: 50px;
    gap: 20px;
    animation: fadeIn 1s ease-in-out;
    min-height: 30vh; /* S'assurer que la section prend toute la hauteur de l'écran */
}

.left, .right {
    background-color: #fff;
    color: #333;
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.left {
    background-color: #84a558;
    color: white;
    animation: slideInLeft 1s ease-in-out;
}

.left h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.left p {
    font-size: 1em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.left button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease;
}

.left button:hover {
    background-color: #0056b3;
}

.right {
    background-color: #fff;
    animation: slideInRight 1s ease-in-out;
}

.right h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.right ul {
    list-style: none;
    padding: 0;
}

.right li {
    font-size: 1em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.right li:nth-child(1) {
    animation-delay: 0.3s;
}

.right li:nth-child(2) {
    animation-delay: 0.6s;
}

.right li:nth-child(3) {
    animation-delay: 0.9s;
}

.right li:nth-child(4) {
    animation-delay: 1.2s;
}

.right li span {
    color: #28a745;
    font-size: 1.5em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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