.program-card {
    display: flex;
    align-items: center;
    background-color: #f7931e;
    color: white;
    padding: 10px 30px;
    height: 80px;
    border-radius: 100px;
    width: fit-content;
    max-width: 190px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }

  .number {
    font-size: 25px;
    font-weight: bold;
    margin-right: 20px;
  }

  .text-content {
    display: flex;
    flex-direction: column;
  }

  .title {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
  }

  .description {
    font-size: 10px;
    line-height: 1.4;
  }





  /* ---- */

  .program-card2 {
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    height: 80px;
    padding: 10px 30px;
    border-radius: 100px;
    width: fit-content;
    max-width: 200px;
    border: 1px solid #f7931e;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    font-family: Arial, sans-serif;
  }

  .number2 {
    font-size: 25px;
    color: #f7931e;

    font-weight: bold;
    margin-right: 20px;
  }

  .text-content2 {
    display: flex;
    flex-direction: column;
  }

  .title2 {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 5px;
  }

  .description2 {
    font-size: 10px;
    line-height: 1.4;
  }