
/* Features Grid (About page version) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-icon {
  font-size: 28px;
  color: #0f3b75;
  margin-bottom: 15px;
}
.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #002b49;
}
.feature p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}