.features-section {
  background-color: var(--new-bg-green);
}
.feature-card {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.25s;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-new-icon {
  width: 65px;
  height: 65px;
  font-size: 30px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--new-green);
}

.feature-text h5 {
  margin-bottom: 8px;
}
.feature-text p {
  margin: 0;
  color: #555;
}