.about-page { padding-top: 100px; min-height: 100vh; }

/* Hero */
.about-hero {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: var(--white);
  padding: 4rem 0 4.5rem;
  text-align: center;
}
.about-hero h1 { font-size: 3rem; margin-bottom: 0.75rem; }
.about-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto 1.25rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Intro / story */
.about-intro { padding: 4rem 0; }
.section-header { text-align: center; }
.section-title { font-size: 2rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.section-description { color: var(--text-light); max-width: 780px; margin: 0 auto; }
.copy { max-width: 820px; margin: 2rem auto 0; }
.copy p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }

/* What we do */
.what-we-do { padding: 4rem 0; background: var(--light-color); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.service-card {
  background: var(--white); border-radius: 12px; padding: 1.5rem;
  box-shadow: var(--shadow-light); transition: var(--transition); text-align: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }
.service-card .icon { font-size: 1.6rem; color: var(--primary-color); margin-bottom: 0.75rem; }
.service-card h3 { color: var(--text-dark); margin-bottom: 0.4rem; }
.service-card p { color: var(--text-light); }

/* Values */
.values { padding: 4rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.value-card {
  background: var(--white); border-radius: 12px; padding: 1.5rem; text-align: center;
  box-shadow: var(--shadow-light); transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }
.value-card i { font-size: 1.6rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.value-card h4 { color: var(--text-dark); margin-bottom: 0.3rem; }
.value-card p { color: var(--text-light); }

/* Stats */
.stats { padding: 3.5rem 0; background: var(--light-color); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; text-align: center; }
.stat {
  background: var(--white); border-radius: 12px; padding: 1.5rem;
  box-shadow: var(--shadow-light);
}
.stat .number { display: block; font-size: 2rem; font-weight: 800; color: var(--primary-color); }
.stat .label { color: var(--text-light); }

/* Team */
.team { padding: 4rem 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.member-card {
  background: var(--white); border-radius: 12px; padding: 1rem; text-align: center;
  box-shadow: var(--shadow-light); transition: var(--transition);
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }
.member-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; margin-bottom: 0.75rem; }
.member-card h4 { color: var(--text-dark); margin: 0; }
.member-card .role { color: var(--text-light); font-size: 0.95rem; }

/* CTA */
.about-cta { padding: 4rem 0; background: var(--dark-color); }
.cta-box {
  background: var(--gradient-primary); color: var(--white); border-radius: 16px;
  padding: 2rem; text-align: center; box-shadow: var(--shadow-medium);
}
.cta-box h3 { color: var(--white); margin-bottom: 0.25rem; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 { font-size: 2rem; }
}
