.checkmark-list {
      list-style-type: none; /* Remove default bullets */
      padding-left: 0; /* Remove padding on the left */
}

.checkmark-list li {
      position: relative;
      padding-left: 25px; /* Add some space for the checkmark */
}

.checkmark-list li::before {
      content: '\2713'; /* Unicode for checkmark */
      position: absolute;
      left: 0;
      top: 3px;
      color: #ffa500;
      font-size: 16px; 
      font-weight: bold;
}

.card {
    border-radius: 20px;
}

