/* Style du texte et titres */
    .text-highlight { color: #2ecc71; position: relative; }
    .bg-soft-success { background-color: #e8f7ee; border-radius: 50px; font-weight: 600; font-size: 0.85rem; }
    .dot { height: 8px; width: 8px; background-color: #2ecc71; border-radius: 50%; display: inline-block; }

    /* Cartes de statistiques */
    .stat-card { border-left: 3px solid #2ecc71; padding-left: 15px; }

    /* Design de l'image asymétrique */
    .custom-img-shape {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        object-fit: cover;
        height: 500px;
        width: 100%;
    }

    /* Carte flottante sur l'image */
    .floating-card {
        position: absolute;
        bottom: 30px;
        left: -20px;
        background: white;
        border-radius: 12px;
        min-width: 200px;
        animation: float 3s ease-in-out infinite;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .x-small { font-size: 0.75rem; }

    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .custom-img-shape { height: 350px; border-radius: 20px; }
        .floating-card { left: 20px; }
    }