/* About Page Specific Styles */

.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.about-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111111;
}

.about-subtitle {
  font-size: 1.25rem;
  color: rgba(17, 17, 17, 0.7);
  font-weight: 500;
  line-height: 1.8;
}

.mission-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.mission-card {
  background-color: white;
  border: 2px solid #111111;
  padding: 2rem;
  box-shadow: 4px 4px 0px 0px #111111;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  border-color: #007F8C;
}

.mission-card i {
  font-size: 2rem;
  color: #007F8C;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111111;
}

.mission-card p {
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
}

.stats-section {
  background-color: #111111;
  color: white;
  padding: 4rem 2rem;
  border: 2px solid #111111;
  margin-bottom: 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #007F8C;
  margin-bottom: 0.5rem;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.team-section {
  margin-bottom: 5rem;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111111;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: #E2E2DC;
  border: 2px solid #111111;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #111111;
  background-color: #007F8C;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.team-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: #111111;
}

.team-role {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 700;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}
