
.feature-block {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.feature-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #222;
  letter-spacing: 0.5px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom:20px;
}

.feature-list li {
  padding: 0 0;
  border-bottom: 1px solid #e4e4e4;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #339633;
  display: block;
  margin-bottom: 0.35rem;
}

.feature-desc {
  margin: 0;
  padding-left: 1rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Optional subtle hover effect for extra polish */
.feature-list li:hover .feature-title {
  color: #0066cc;
  transition: color 0.2s ease;
}

.feature-list li {
  position: relative;
  padding-left: 2rem; /* space for the star */
}

.feature-list li::before {
  content: "★";            /* the star */
  position: absolute;
  left: 0;
  top: 0.2rem;             /* adjust vertically to taste */
  font-size: 1.2rem;
  color: #cc9900;          /* golden star */
  line-height: 1;
}

.engagement-levels {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.engagement-levels h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.engagement-levels .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: #444;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.level-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.level-card h3 {
  margin-top: 0;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.level-card p {
  color: #333;
  line-height: 1.55;
}

.level-card ul {
  padding-left: 1.2rem;
  margin: 1rem 0 1.25rem;
}

.level-card li {
  margin-bottom: 0.5rem;
}

.best-for {
  font-size: 0.95rem;
  color: #555;
}

/* Subtle color cues (optional but nice) */
.casual {
  border-top: 5px solid #9fc9b4;
}

.ongoing {
  border-top: 5px solid #e3c16f;
}

.deep {
  border-top: 5px solid #7fa6c9;
}

/* 📱 Tablet */
@media (max-width: 900px) {
  .levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .levels-grid {
    grid-template-columns: 1fr;
  }

  .level-card {
    padding: 1.5rem;
  }
}

