
    .infographic {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      width: 100%;
      max-width: 2000px;
    }

    .card {
      position: relative;
      width: 380px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 40px 20px 60px;
      text-align: center;
      transition: all 0.3s ease;
    }
    
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50px;
      clip-path: polygon(0 100%, 50% 0, 100% 100%);
    }

    .card:nth-child(1)::before { background: #fbbf24; }
    .card:nth-child(2)::before { background: #3b82f6; }
    .card:nth-child(3)::before { background: #10b981; }
    .card:nth-child(4)::before { background: #ef4444; }

    
    .card-1 {
      position: relative;
      width: 900px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      padding: 40px 20px 60px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .card-1:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .card-1::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50px;
      clip-path: polygon(0 100%, 50% 0, 100% 100%);
    }

    .card-1:nth-child(1)::before { background: #fbbf24; }
    .card-1:nth-child(2)::before { background: #3b82f6; }
    .card-1:nth-child(3)::before { background: #10b981; }
    .card-1:nth-child(4)::before { background: #ef4444; }

    .icon {
      font-size: 45px;
      margin-bottom: 20px;
      color: #111;
    }

    h2 {
      margin-bottom: 15px;
      font-size: 20px;
      font-weight: 600;
    }

    p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .number {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      color: #111;
      font-weight: bold;
      padding: 6px 18px;
      border-radius: 20px;
      font-size: 13px;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    }