.why-item {
  background-color: #4b76b5;
  color: white;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 320px; /* ✅ ارتفاع ثابت */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .why-item {
    height: 300px; /* ✅ للجوال */
  }
}

.why-inner {
  padding: 24px;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-inner .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.why-inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.why-inner p {
  font-size: 0.95rem;
  color: #f1f1f1;
  margin: 0;
}
