.mission-vision-preview {
  background-color: var(--light);
  padding: 3rem 1rem;
  text-align: center;
}

.mission-vision-preview h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-intro {
  color: var(--text-main);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-see-all {
  text-align: center;
  margin-top: 2rem;
}

.about-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 2.5rem 1rem;
  text-align: center;
}

.about-header h1 {
  margin: 0;
  font-size: 1.75rem;
}

.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mv-card {
  background-color: var(--white);
  border-left: 4px solid var(--secondary);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mv-card h2,
.mv-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.mv-card p {
  color: var(--text-main);
  line-height: 1.7;
  margin: 0;
}

.our-history {
  margin-bottom: 2.5rem;
}

.our-history h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.our-history p {
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.team {
  text-align: center;
  margin-bottom: 2rem;
}

.team h2 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.team-photo {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary);
  background-color: var(--light);
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0.25rem 0 0;
}

.team-role {
  font-size: 0.9rem;
  color: var(--text-main);
  margin: 0;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .about-header h1 {
    font-size: 2.25rem;
  }

  .mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }

  .team-photo {
    width: 10rem;
    height: 10rem;
  }
}
