<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800;900&display=swap" rel="stylesheet">

<style>
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Nunito', Arial, sans-serif; }

  .perks-section {
    background: #f7f8fa;
    padding: 40px 60px 56px;
  }

  .perk-grid {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    align-items: stretch;
  }

  .perk-card {
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 14px;
    padding: 24px 24px;
    flex: 1;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
  }
  .perk-card:hover { background: #fff; transform: translateY(-3px); }

  .perk-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .perk-icon.green { background: #bcebd7; }
  .perk-icon.blue  { background: #e0f4ff; }
  .perk-icon.purple { background: #eef0f5; }
  .perk-icon.yellow { background: #fdefc3; }
  .perk-icon.teal  { background: #c8eef0; }

  .perk-card h3 { font-size: 16px; font-weight: 800; color: #1B75BC; margin-bottom: 6px; }
  .perk-card p  { font-size: 14px; color: #686868; line-height: 1.55; }

  /* ── Tablet: 2-3 wrap ── */
  @media (max-width: 900px) {
    .perks-section { padding: 40px 32px 48px; }
    .perk-grid { flex-wrap: wrap; justify-content: center; }
    .perk-card { flex: 1 1 calc(33% - 14px); min-width: 180px; max-width: none; }
  }

  /* ── Mobile: full-width stacked ── */
  @media (max-width: 560px) {
    .perks-section { padding: 32px 20px 40px; }
    .perk-grid { flex-direction: column; gap: 12px; }
    .perk-card {
      display: flex;
      align-items: flex-start;
      text-align: left;
      gap: 16px;
      padding: 18px 16px;
    }
    .perk-icon { flex-shrink: 0; margin: 0; }
    .perk-card h3 { font-size: 16px; margin-bottom: 4px; }
    .perk-card p  { font-size: 14px; }
  }
</style>