 .products-area {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .product-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            border: none;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
       
        .product-icon {
            width: 100px;
            height: 100px;
            /* background: linear-gradient(105deg, #33f3d5 0%, #200bdd 100%); */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }
        
        .product-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .product-card p {
            color: #7f8c8d;
             font-size: 0.8rem;
            line-height: 1.2;
            margin: 0;
        }
         /* Animation alternative - Effet de respiration */
        .product-icon-breathe {
            animation: breathe 3s ease-in-out infinite;
        }
        
        @keyframes breathe {
            0%, 100% { 
                transform: scale(1);
                opacity: 1;
            }
            50% { 
                transform: scale(1.08);
                opacity: 0.8;
            }
        }

  @keyframes notification {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.3;
                transform: scale(1.2);
            }
        }
        /* Animation de rotation subtile */
        .product-icon-rotate {
            animation: subtleRotate 4s linear infinite;
        }
        
        @keyframes subtleRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .row {
            margin: 0;
        }
        
        [class*="col-"] {
            padding: 15px;
        }
        
        /* Couleurs différentes pour chaque type d'assurance */
        .product-card:nth-child(1) .product-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .product-card:nth-child(2) .product-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .product-card:nth-child(3) .product-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .product-card:nth-child(4) .product-icon { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .product-card:nth-child(5) .product-icon { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .product-card:nth-child(6) .product-icon { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        .product-card:nth-child(7) .product-icon { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
        .product-card:nth-child(8) .product-icon { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
        .product-card:nth-child(9) .product-icon { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
        .product-card:nth-child(10) .product-icon { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
        .product-card:nth-child(11) .product-icon { background: linear-gradient(135deg, #fdbb2d 0%, #22c1c3 100%); }
        .product-card:nth-child(12) .product-icon { background: linear-gradient(135deg, #e0c3fc 0%, #9bb5ff 100%); }
        .product-card:nth-child(13) .product-icon { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
        .product-card:nth-child(14) .product-icon { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
        .product-card:nth-child(15) .product-icon { background: linear-gradient(135deg, #ff8a80 0%, #ea4c89 100%); }