/* Section À propos - fond clair */
.about-section.section-light {
    background-color: #ffffff;
    color: #0a192f;
    padding: 80px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #64f4ac 0%, #64b6f4 100%);
    /* background: var(--primary-gradient); */
    color: #0a192f;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 2.2rem;
    margin: 18px 0 10px;
    background: linear-gradient(90deg, #0a192f 0%, #1a3a5f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    text-align: justify;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}

.about-card h3 {
    margin-bottom: 10px;
    color: #0a192f;
}

.about-points {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #e5eef7;
    background-image: url('../img/about.gif');
    background-size : cover;
    background-position : center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image { min-height: 220px; }
}
