/* Your custom css code goes here */

.checklist-container {
  display: flex;
  justify-content: center;
  gap: 160px; /* Increased horizontal gap */
  flex-wrap: wrap;
  margin-top: 60px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 35px; /* More vertical spacing between items */
}

.item {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  color: #7b36f4;
  font-size: 22px; /* Bigger font size */
  font-weight: 500;
}

.tick {
  color: #4cd964;
  font-size: 30px; /* Bigger tick */
  margin-right: 18px; /* More space between tick and text */
}
