A man with a new idea svg

Here is a simple SVG design for a "Man with a New Idea" concept:

<svg width="200" height="200">
  <!-- Background -->
  <rect x="0" y="0" width="200" height="200" fill="#f0f0f0" rx="20" />

  <!-- Man -->
  <g transform="translate(50, 50)">
    <circle cx="0" cy="0" r="30" fill="#3498db" />
    <path d="M 0 30 L 20 30 L 20 60 L 0 60 Z" fill="#3498db" />
    <path d="M 0 60 L 10 70 L 10 80 L 0 80 Z" fill="#3498db" />
    <path d="M 20 60 L 30 70 L 30 80 L 20 80 Z" fill="#3498db" />
  </g>

  <!-- Lightbulb -->
  <g transform="translate(70, 70)">
    <circle cx="0" cy="0" r="10" fill="#fff" />
    <path d="M 0 10 L 10 10 L 10 20 L 0 20 Z" fill="#fff" />
    <path d="M 0 20 L 5 25 L 5 30 L 0 30 Z" fill="#fff" />
  </g>

  <!-- Idea Bubble -->
  <g transform="translate(80, 80)">
    <circle cx="0" cy="0" r="20" fill="#fff" />
    <path d="M 0 20 L 20 20 L 20 40 L 0 40 Z" fill="#fff" />
    <text x="0" y="30" font-size="14" font-family="Arial" fill="#333">New Idea</text>
  </g>
</svg>

This design features a simple illustration of a man with a lightbulb moment, surrounded by a thought bubble with the words "New Idea". The man is represented by a blue circle with a simple body shape, and the lightbulb is a white circle with a small flame on top. The idea bubble is a white circle with a curved shape and the text "New Idea" written inside. You can adjust the design as needed to fit your specific use case.