/* Override global flex so this page centers normally */
main.main-content {
  display: block !important;
  padding: 0;
  margin: 0;
}

/* Hero intro */
.features-hero {
  max-width: 800px;
  margin: 3rem auto 2rem;
  text-align: center;
}
.features-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.features-hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: white;
  opacity: 0.9;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 2rem auto 4rem;
}

/* Individual feature cards */
.feature-card {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.feature-card i {
  margin-bottom: 1rem;
  color: #48c6ef;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .features-hero {
    margin: 2rem 1rem 1.5rem;
  }
  .features-grid {
    gap: 1.5rem;
    margin: 1.5rem 1rem 3rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
}
