.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.feature-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
}
.feature-card img {
  max-width: 48px;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
}

.hoisting-wrapper h2.section_heading {
  text-align: center;
  color: #123B72;
  margin-bottom: 50px;
}