.features {
  padding: 100px 0;
  background: #f9fafc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #4A00E0;
  margin-bottom: 12px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: #6b6b6b;
  margin-bottom: 60px;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(74,0,224,0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(142,45,226,0.15), rgba(74,0,224,0.15));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(142,45,226,0.1);
}

.feature-card h3 {
  font-size: 20px;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
