
<style>
  .custom-module {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    top; 0;
  }

  .cards-container {
    display: flex;
    gap: 150px; /* Reduced for smaller screens */
    justify-content: center;
    align-items: center;
    top: 0;
    padding-top: 0;
  }

  .card {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
        padding-top: 0;

  }

  .number-box {
    width: 160px;
    height: 120px;
    background-color: #f66652;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevents shrinking */
        padding-top: 0;


  }

  .number-box span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: white;
  }

  .rich-text {
    margin-top: 15px;
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .cards-container {
      gap: 30px;
    }

    .card {
      width: 140px;
    }

    .number-box {
      width: 120px;
      height: 90px;
      border-radius: 20px;
    }

    .number-box span {
      font-size: 40px;
    }
  }

  @media (max-width: 480px) {
    .cards-container {
      flex-direction: column;
      gap: 20px;
    }

    .card {
      width: 100%;
      max-width: 200px;
    }

    .number-box {
      width: 100px;
      height: 80px;
      border-radius: 15px;
    }

    .number-box span {
      font-size: 35px;
    }
  }
</style>
