
.plan-grid {
  display: grid;
  align-items: center;
  justify-content: center; /* Center items horizontally */
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


/* Individual plan card */
.plan-card {
   background: #fff;
    border: 1px solid #abcff8;
  padding: 20px 10px;
  border-radius: 8px;
  text-align: center;
}

/* Responsive typography */
@media (max-width: 600px) {
  .headies h2 {
    font-size: 1.5rem;
  }

  .headies .description {
    font-size: 0.95rem;
  }

  .plan-card {
    padding: 1.5rem 1rem;
  }
}


  .checklist li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  list-style: none;
}

.checklist li::before {
  content: '✓';
  color: #27ae60;
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  top: 0;
  line-height: 1;
}

  .highlight,
  blockquote {
    color: #0a3d62;
    font-weight: 700;
  }