@charset "UTF-8";

.about-hero {
  padding:140px 0 80px;
  background:linear-gradient(135deg, var(--bg-dark) 0%, #153d54 100%);
  text-align:center;
}

.about-hero h1 {
  font-size:2.5rem;
  color:var(--white);
  margin-bottom:15px;
}

.about-hero p {
  font-size:1.1rem;
  color:var(--primary-light);
}

/* Values */
.values-section { padding:80px 0; background:var(--white); }

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

.value-card {
  padding:40px 30px;
  border-radius:16px;
  background:var(--white);
  border:1px solid var(--border);
  text-align:center;
  transition:all 0.3s;
}

.value-card:hover {
  box-shadow:0 8px 30px var(--shadow);
  border-color:var(--primary);
  transform:translateY(-5px);
}

.value-icon {
  width:70px; height:70px;
  background:var(--primary-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:1.8rem;
  color:var(--primary-dark);
}

.value-card h3 {
  font-size:1.2rem;
  color:var(--bg-dark);
  margin-bottom:12px;
}

.value-card p {
  font-size:0.9rem;
  color:var(--text-mid);
  line-height:1.8;
}

/* Story */
.story-section { padding:80px 0; background:var(--bg-light); }

.story-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.story-text h2 {
  font-size:1.8rem;
  color:var(--bg-dark);
  margin-bottom:20px;
}

.story-text p {
  font-size:0.95rem;
  color:var(--text-mid);
  line-height:1.9;
  margin-bottom:15px;
}

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

.story-stat h4 {
  font-size:1.8rem;
  color:var(--primary-dark);
  font-weight:700;
}

.story-stat p {
  font-size:0.85rem;
  color:var(--text-mid);
}

/* Timeline */
.timeline-section { padding:80px 0; background:var(--white); }

.timeline {
  position:relative;
  max-width:800px;
  margin:0 auto;
}

.timeline::before {
  content:'';
  position:absolute;
  left:50%;
  top:0; bottom:0;
  width:2px;
  background:var(--border);
  transform:translateX(-50%);
}

.timeline-item {
  display:flex;
  justify-content:flex-end;
  padding-right:50%;
  position:relative;
  margin-bottom:40px;
}

.timeline-item:nth-child(even) {
  justify-content:flex-start;
  padding-right:0;
  padding-left:50%;
}

.timeline-dot {
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:16px; height:16px;
  background:var(--primary);
  border-radius:50%;
  border:3px solid var(--white);
  box-shadow:0 0 0 3px var(--primary);
}

.timeline-content {
  background:var(--bg-light);
  padding:20px 25px;
  border-radius:12px;
  max-width:350px;
  margin:0 25px;
}

.timeline-content h4 {
  font-size:1rem;
  color:var(--primary-dark);
  margin-bottom:8px;
}

.timeline-content p {
  font-size:0.85rem;
  color:var(--text-mid);
  line-height:1.7;
}

/* Team */
.team-section { padding:80px 0; background:var(--bg-light); }

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

.team-card {
  background:var(--white);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 15px var(--shadow);
  text-align:center;
  transition:all 0.3s;
}

.team-card:hover {
  transform:translateY(-5px);
  box-shadow:0 8px 25px var(--shadow-hover);
}

.team-card-img {
  height:200px;
  background:linear-gradient(135deg, var(--primary-light) 0%, var(--border) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:3rem;
  color:var(--primary-dark);
}

.team-card-body { padding:20px; }

.team-card-body h4 {
  font-size:1.05rem;
  color:var(--bg-dark);
  margin-bottom:5px;
}

.team-card-body p {
  font-size:0.85rem;
  color:var(--text-mid);
}

/* Responsive */
@media (max-width:1024px) {
  .values-grid { grid-template-columns:repeat(2, 1fr); }
  .story-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2, 1fr); }
}

@media (max-width:768px) {
  .about-hero h1 { font-size:1.8rem; }
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .timeline::before { left:20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left:50px;
    padding-right:0;
    justify-content:flex-start;
  }
  .timeline-dot { left:20px; transform:none; }
}
