.a-propos-section {
    padding: 60px 20px;
    background-color: #f5fbf7;
}

.a-propos-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.a-propos-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.a-propos-content {
    flex: 1 1 400px;
    max-width: 600px;
}

.a-propos-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.a-propos-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2a2a2a;
}

.a-propos-liste {
    list-style: none;
    padding: 0;
}

.a-propos-liste li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #2a2a2a;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.a-propos-liste li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* === Animations === */
.animate-left,
.animate-up,
.animate-zoom {
    opacity: 0;
    transition: all 0.8s ease;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-up {
    transform: translateY(40px);
}

.animate-zoom {
    transform: scale(0.9);
}

.animate-left.visible,
.animate-up.visible,
.animate-zoom.visible {
    opacity: 1;
    transform: none;
    will-change: auto;
}

/* Cascade */
.cascade li:nth-child(1) { transition-delay: 0.1s; }
.cascade li:nth-child(2) { transition-delay: 0.2s; }
.cascade li:nth-child(3) { transition-delay: 0.3s; }
.cascade li:nth-child(4) { transition-delay: 0.4s; }

.cascade li.visible {
    opacity: 1;
    transform: translateY(0);
}
