<style>
  .zoho-container {
      display: flex;
      justify-content: center;  /* Horizontal centering */
      align-items: center;      /* Vertical centering */
      width: 100%;
      padding: 20px 0;          /* Ample space above and below */
      box-sizing: border-box;   /* Prevent content from overflowing */
      overflow: visible;        /* Ensure image isn't cut */
  }

  .zoho-stamp {
      width: 120px;             /* Default desktop size */
      height: auto;             /* Maintain aspect ratio */
      display: block;
  }

  @media (max-width: 1024px) {
      .zoho-stamp {
          width: 110px;         /* Tablet size */
      }
  }

  @media (max-width: 768px) {
      .zoho-stamp {
          width: 90px;          /* Mobile size */
      }
  }
</style>

<div class="zoho-container">
    <img src="zoho-certified.png" alt="Zoho Certified Partner" class="zoho-stamp">
</div>
