.why-us {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}

.subtitle {
  margin-top: 8px;
  margin-bottom: 60px;
  color: #777;
  font-size: 16px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card Base */
.why-card {
  padding: 45px 30px;
  border-radius: 22px;
  text-align: center;
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-12px);
}

/* Card Colors (IMPORTANT FIX) */
.mint {
  background: #e9fbf8;
}
.pink {
  background: #fff3f8;
}
.blue {
  background: #eaf4ff;
}
.lavender {
  background: #f5f2ff;
}

/* Icon */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon-wrap img {
  width: 38px;
}

/* Text */
.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.why-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.why-card a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 32px;
  }
}
