/* Styles pour la section About moderne */
.card-about-simple {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-about-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-about-icon i {
    font-size: 2rem;
}

/* Styles pour hero-with-stats */
.about-stats-row {
    margin-top: 40px;
}

.about-stat-card {
    text-align: center;
    padding: 20px 10px;
}

.about-stat-icon {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.about-stat-icon i {
    font-size: 1.5rem;
    color: #024430;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'FontAwesome' !important;
    font-weight: 900 !important;
}

.about-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #024430;
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-stat-label {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

.about-stat-card:hover .about-stat-icon {
    background: #024430;
    transform: scale(1.05);
}

.about-stat-card:hover .about-stat-icon i {
    color: #ffffff;
}

/* Séparateur en bas pour les sections centrées */
.title-line-bottom {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.title-line-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #024430;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .about-stats-row .col-lg-2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .card-about-simple {
        padding: 30px 20px;
    }
    
    .card-about-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-about-icon i {
        font-size: 1.5rem;
    }
    
    .about-stat-icon {
        width: 56px;
        height: 56px;
    }
    
    .about-stat-icon i {
        font-size: 1.25rem;
    }
    
    .about-stat-value {
        font-size: 1.75rem;
    }
    
    .about-stat-label {
        font-size: 0.85rem;
    }
}
