/* About Page Specific Styles */
.page-header {
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.pt-0 {
  padding-top: 0;
}

/* Split Layout reuse from home.css */
.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.split-text { flex: 1; }
.split-image { flex: 1; }
.glass-image-wrapper {
  border-radius: 20px;
  padding: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.glass-image-wrapper img { width: 100%; border-radius: 12px; display: block; }
.split-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.split-text p { color: var(--text-muted); margin-bottom: 20px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  padding: 20px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.bg-darker {
  background-color: rgba(0, 0, 0, 0.03);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mv-card {
  padding: 50px 40px;
  text-align: center;
}

.mv-card i {
  font-size: 3rem;
  color: #a78bfa;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--text-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  color: var(--text-muted);
}

.team-social a:hover {
  color: white;
}

@media (max-width: 768px) {
  .split-layout {
    flex-direction: column-reverse;
  }
}
