/* About Page Specific Styles */

/* Hero: inherit from .hero; don't change top spacing */
.hero.about-hero .hero-content {
  max-width: 800px;
}

/* Sections */
.about-section {
  padding: 60px 0; /* section rhythm, does not affect top of page */
  background-color: #ffffff;
}

/* Content container for readable line length */
.about-section .about-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--dark-gray);
}

.about-section h2 {
  font-size: 36px;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.about-section .about-content p {
  margin-bottom: 14px;
}

/* Mission points as neat cards */
.mission-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .mission-points {
    grid-template-columns: 1fr;
  }
}

.mission-point {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mission-point h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.mission-point p {
  margin: 0;
  color: #555;
}

/* Subtle divider between sections on wide screens */
.about-section + .about-section {
  border-top: 1px solid #f0f2f6;
}
