/* Intro */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.about-label { border-color: var(--brand-accent); color: var(--brand-accent); }
.about-intro-content p {
  color: rgba(15,31,56,0.78);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-intro-side { position: relative; }
.about-intro-image {
  border-radius: 12px;
  height: 520px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.about-intro-stat-cards {
  margin-top: -80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-stat-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-stat-card strong {
  display: block;
  font-size: 20px;
  color: var(--brand-primary);
  font-weight: 800;
}
.about-stat-card span {
  font-size: 12px;
  color: rgba(15,31,56,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mission Vision */
.mission-vision-section { padding-top: 0; }
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mission-card {
  background: linear-gradient(150deg, #ffffff 0%, #f4f7fb 100%);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.mission-card h3 { color: var(--brand-primary); margin-bottom: 12px; }
.mission-card p { color: rgba(15,31,56,0.75); line-height: 1.8; }
.value-icon {
  margin-bottom: 16px;
  color: var(--brand-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: rgba(196,155,85,0.12);
  border-radius: 50%;
}

/* History */
.history-section { background: var(--brand-primary); }
.history-desc {
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}
.history-timeline-modern {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 8px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}
.timeline-card {
  position: relative;
  width: calc(50% - 38px);
  background: #fff;
  border-bottom: 2px solid #d4dde7;
  border-radius: 4px;
  padding: 16px 16px 14px;
}
.timeline-card.left { margin-right: auto; }
.timeline-card.right { margin-left: auto; }
.timeline-card::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-accent);
  box-sizing: border-box;
}
.timeline-card.left::after { right: -44px; }
.timeline-card.right::after { left: -44px; }
.timeline-year {
  font-size: 30px;
  line-height: 1;
  color: #204e7c;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}
.timeline-card h4 {
  font-size: 21px;
  line-height: 1.1;
  color: #132d4e;
  margin-bottom: 10px;
  font-weight: 700;
}
.timeline-card p { color: #274a71; line-height: 1.65; font-size: 15px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
}
.value-card .h3 { color: var(--brand-primary); }
.value-card p { color: rgba(15,31,56,0.75); line-height: 1.75; }
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196,155,85,0.45);
}

@media (max-width: 1100px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-stat-cards { margin-top: 16px; padding: 0; }
}
@media (max-width: 900px) {
  .mission-vision-grid,
  .values-grid { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; transform: none; }
  .timeline-card,
  .timeline-card.left,
  .timeline-card.right { width: calc(100% - 46px); margin-left: 46px; }
  .timeline-card.left::after,
  .timeline-card.right::after { left: -33px; right: auto; }
  .timeline-year { font-size: 24px; }
  .timeline-card h4 { font-size: 18px; }
  .timeline-card p { font-size: 14px; }
}