.about-hero {
  text-align: center;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  animation: fadeDown 0.8s ease-out;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
  max-width: 1100px;
}

.feature-box {
  flex: 1 1 280px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.feature-box h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
}

.feature-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}