/* =====================
   About Page Styles
   ===================== */

.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  padding: 5rem 0 4rem;
}

.page-header h1 {
  margin: 0.5rem 0 1rem;
  font-size: 2.5rem;
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats-section {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}