.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 50px 20px;
  background: #ffffff;
  text-align: center;
}
.feature {
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature svg {
  margin-bottom: 14px;
}
.feature h4 {
  margin: 8px 0 6px;
  font-size: 16px;
  font-weight: bold;
  color: #2e476e; /* brand orange */
}
.feature p {
  font-size: 14px;
  color: #555;
  margin: 0;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .features {
    grid-template-columns: 1fr;
  }
}
