.about-hero {
  background: linear-gradient(135deg, #0FAC75 0%, #0d8c5e 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10%, 10%); }
}

.about-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
}

.about-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  position: relative;
}

.about-mission {
  padding: 70px 0;
  background: #f8f9fa;
}

.about-mission .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.about-mission .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.about-mission .section-title p {
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

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

.mission-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-card .icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}

.mission-card .icon-wrap.green { background: linear-gradient(135deg, #0FAC75, #0d8c5e); }
.mission-card .icon-wrap.blue { background: linear-gradient(135deg, #4A90D9, #357ABD); }
.mission-card .icon-wrap.orange { background: linear-gradient(135deg, #F5A623, #E0961E); }

.mission-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.mission-card p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-story {
  padding: 70px 0;
  background: #fff;
}

.about-story .container {
  max-width: 900px;
}

.about-story h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.about-story p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, #0FAC75 0%, #0d8c5e 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.about-team {
  padding: 70px 0;
  background: #f8f9fa;
}

.about-team .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.about-team .section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.about-team .section-title p {
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

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

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 32px;
  color: #fff;
}

.team-card .avatar.green { background: linear-gradient(135deg, #0FAC75, #0d8c5e); }
.team-card .avatar.blue { background: linear-gradient(135deg, #4A90D9, #357ABD); }
.team-card .avatar.orange { background: linear-gradient(135deg, #F5A623, #E0961E); }
.team-card .avatar.purple { background: linear-gradient(135deg, #9B59B6, #8E44AD); }
.team-card .avatar.teal { background: linear-gradient(135deg, #1ABC9C, #16A085); }

.team-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.team-card .role {
  color: #0FAC75;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.team-card p {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-cta {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.about-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.about-cta p {
  color: #888;
  max-width: 600px;
  margin: 0 auto 30px;
}

.about-cta .btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: #0FAC75;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.about-cta .btn-primary:hover {
  background: #0d8c5e;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-hero { padding: 50px 0 40px; }
  .about-hero h1 { font-size: 2rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .about-mission { padding: 50px 0; }
  .about-story { padding: 50px 0; }
  .about-stats { padding: 40px 0; }
  .about-team { padding: 50px 0; }
}
