.about-hero {
  background: linear-gradient(135deg, #fef9ef 0%, #fff3e5 100%);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}
.about-hero h1 {
  font-size: 2.8rem;
  color: #1e2f3a;
  margin-bottom: 16px;
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #5f6c75;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 50px 0;
}
.reason-card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: 0.2s;
}
.reason-card:hover {
  transform: translateY(-5px);
}
.reason-icon {
  font-size: 2.5rem;
  color: #f26b4f;
  margin-bottom: 20px;
}
.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.reason-card p {
  color: #3e5a6b;
  line-height: 1.6;
}
.story-section {
  background: white;
  border-radius: 32px;
  padding: 48px;
  margin: 40px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.story-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e2f3a;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin: 50px 0;
  text-align: center;
}
.stat {
  flex: 1;
  min-width: 150px;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f26b4f;
}
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .story-section {
    padding: 28px;
  }
}
