/* About Page Styles */

.about-section {
  margin: 80px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.about-section h1 {
  font-size: 2.4rem;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: #1e73be;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #1e73be;
  display: inline-block;
  padding-bottom: 5px;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Timeline */
.timeline {
  border-left: 3px solid #1e73be;
  margin: 30px 0;
  padding-left: 40px;
  position: relative;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-color: #1e73be;
  border-radius: 50%;
}

.timeline-item .year {
  font-weight: bold;
  color: #1e73be;
  margin-bottom: 5px;
  display: inline-block;
  margin-left: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .timeline {
    padding-left: 15px;
  }
}
