.trackfeature {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.trackfeature .feat {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.trackfeature .feat::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.features_gen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.features-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.features-item i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.features-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.features-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .features_gen {
    flex-direction: column;
    align-items: center;
  }
}
