.about-hero {
  padding: 60px 0;
  background: linear-gradient(
    180deg,
    rgba(183, 28, 28, 0.04) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.about-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.about-hero-text {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-stats {
  padding: 60px 0;
}

.about-stat-card {
  text-align: center;
  padding: 24px;
}

.about-stat-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.about-mission {
  padding: 80px 0;
  background: var(--gray);
}

.about-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
}

.about-section-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.about-value-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: transform 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  background: rgba(183, 28, 28, 0.1);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-value-icon i {
  font-size: 22px;
  color: var(--red);
}

.about-value-card h5 {
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
}

.about-value-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.about-team {
  padding: 80px 0;
}

.team-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.2s ease;
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar i {
  font-size: 40px;
  color: #aaa;
}

.team-card h5 {
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), rgba(183, 28, 28, 0.2));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(183, 28, 28, 0.3);
}

.timeline-content {
  background: var(--gray);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s;
}

.timeline-content:hover {
  transform: translateX(4px);
}

.timeline-date {
  display: inline-block;
  background: rgba(183, 28, 28, 0.1);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-content h5 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 32px;
  }

  .timeline::before {
    left: 11px;
  }

  .timeline-marker {
    left: -32px;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .timeline-content {
    padding: 20px;
  }
}
