/* NEDEN PROFIX */
.why-profix {
  max-width: 1400px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-profix-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.why-box {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box i {
  font-size: 32px;
  color: #2C873A;
  margin-bottom: 10px;
}

.why-box h4 {
  font-size: 16px;
  color: #222;
  margin: 10px 0 6px;
}

.why-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

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

@media (max-width: 768px) {
  .why-profix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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