  .claimer-container {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 0rem auto;
      background-color: #ddd;
      padding: 2rem 1rem;
  }

  .claimer {
      background: white;
      border-radius: 1rem;
      box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.2);
      flex: auto;
      max-width: 15rem;
      padding: 1rem;
      text-align: center;
      transition: transform 0.3s;
  }

  .claimer:hover {
      transform: translateY(-.5rem);
  }

  .claimer img {
      width: 20rem;
      height: 10rem;
      max-width: 100%;
      max-height: auto;
      object-fit: contain;
      object-position: center;
      margin-bottom: 12px;
  }

  .claimer h2 {
      font-size: 1.8rem;
      color: #2b5fc0;
      margin: 10px 0 5px;
  }

  .claimer p {
      color: #555;
      font-size: 1rem;
      margin: 0;
  }

  @media (max-width: 700px) {
      .claimer-container {
          align-items: center;
      }
  }
