
    h1 {
      font-weight: 900;
      font-size: 2.5rem;
      margin-bottom: 2rem;
      text-align: center;
    } 

    .cards-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1300px;
      margin: 0 auto;
    }

    .card {
      /* background-color: #f4f7fb; */
      background-color: #f8f8f8;

      width: 100%;
      max-width: 400px;
      border-radius: 6px;
      box-shadow: 0 6px 10px rgba(9, 42, 85, 0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
      /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    }

    .card:hover {
      /* transform: translateY(-6px); */
      /* box-shadow: 0 12px 20px rgba(9, 42, 85, 0.15); */
    }

    /* .card-image {
      background-color: #0075ff;
      width: 100%;
      height: 180px;
    } */
     .card-image {
          background-color: #0075ff;
          width: 100%;
          height: 180px;
          position: relative;
          overflow: hidden;
          
        }

        .card-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }




    .overlay-badge {
      height: 80px;
      width: 320px;
      position: absolute;
      top: 170px;
      left: 150px;
      padding-left: 25px;
      padding-top: 8px;
      transform: translateX(-50%);
      background-color: #f8f8f8;
      /* background-color: grey; */
      color: black;
      /* padding: 8px 18px; */
      /* padding-left:  */
      /* border-radius: 10px; */
      font-size: 30px;
      font-weight: 600;
      line-height: 1;


      /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); */
      z-index: 5;
      /* display: flex; */
       align-items: center;
      justify-content: center;
      /* text-align: center;   */
    }

    .card-content {
      /* padding: 2.5rem 2rem 2rem 2rem; */
      padding: 2rem;
      flex-grow: 1;
      margin-top: 10px;
    }

    .card-description {
      font-size: 0.9rem;
      color: #3e3e3e;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    ul.checklist {
      padding-left: 0;
      margin: 0;
      list-style: none;
    }

    ul.checklist li {
      display: flex;
      align-items: center;
      font-weight: 600;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
      color: #222;
    }

    ul.checklist li svg {
      width: 30px;
      height: 30px;
      fill: #73ff00;
      margin-right: 8px;
      background-color: #d6ebff;
      border-radius: 3px;
      box-shadow: 0 0 3px #73ff0093;
    }

    @media (max-width: 768px) {
      .cards-container {
        flex-direction: column;
        align-items: center;
      }
    }