/* aboutus.css - Additional styles for About Us page */

.page-header {
  background: #2c3e50;
  color: white;
  padding: 60px 0;
  text-align: center;
}

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

.about-content h2,
.about-content h3 {
  color: #2c3e50;
  margin-top: 40px;
}

.timeline {
  margin-top: 40px;
  border-left: 3px solid #e74c3c;
  padding-left: 30px;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
}

.timeline-item .year {
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 5px;
}

.timeline-item .desc {
  color: #555;
}