/* ========================================
   About (about.html)
   Page-specific styles for the About page
   ======================================== */

.pillar-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.timeline-section {
  position: relative;
  padding: 80px 0;
}

.founder-stat {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #05A34A, #66D1D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}
