.hero {
  background-image: url("../images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stats-section {
  background-color: var(--gray);
  text-align: center;
}

.stats-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.stat-item {
  padding: 30px 20px;
  background-color: var(--light);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.stat-number span {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--accent);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.4;
}
.timeline-wrap {
  position: relative;
}
.timeline-wrap::before {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--light);
  border: 4px solid var(--primary);
  border-radius: 50%;
  top: 30px;
  right: -12px;
}

.timeline-item:nth-child(even)::after {
  left: -12px;
}

.timeline-content {
  padding: 30px;
  background-color: var(--light);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto;
}

.lead {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  color: #1a237e;
}

.problem-statement {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-statement {
  background-color: #f5f7ff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid #1a237e;
}

.closing-statement {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #1a237e;
  margin-top: 40px;
}
strong {
  color: #1a237e;
}
.fin-resources {
  background: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .timeline::before {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding: 20px 0;
  }
  .timeline-item::after {
    content: none;
  }
  .timeline-item:nth-child(even) {
    left: 0;
  }
  .timeline-item::after {
    left: 21px;
  }
  .timeline-item:nth-child(even)::after {
    left: 21px;
  }
}
