.section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: #4CAF50;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature {
  flex: 1 1 calc(33.333% - 40px);
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fafafa;
  transition: transform 0.3s;
  text-align: center; /* Centering text */
}

.feature:hover {
  transform: scale(1.05);
}

.feature h3 {
  margin-top: 0;
}

.feature p {
  margin: 10px 0 0;
}
