.meet-container {
  width: 60%;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #333;
}

.intro-section h1 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.family-photo {
  max-width: 100%;
  width: 40rem;
  height: 20rem;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bio-section,
.faith-family-section,
.career-section,
.boards-section {
  margin-bottom: 3rem;
}

.bio-section h2,
.faith-family-section h2,
.career-section h2,
.boards-section h2 {
  font-size: 1.5rem;
  color: var(--contrast);
  margin-bottom: 1rem;
}

.bio-section p,
.faith-family-section p,
.boards-section p,
.career-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.timeline {
  position: relative;
  margin-left: 1rem;
  border-left: 3px solid var(--blue);
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--light-blue);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background-color: var(--light-blue);
  border-left-color: var(--contrast);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 0.75rem;
  width: 14px;
  height: 14px;
  background-color: var(--contrast);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--blue);
}

.timeline-item h3 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.boards-list ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.boards-list h3 {
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

@media (max-width: 700px) {
  .meet-container {
    width: 90%;
    padding: 1.5rem 0.5rem;
  }

  .intro-section h1 {
    font-size: 1.5rem;
    text-align: center;
  }

  .intro-section p {
    font-size: 1rem;
    text-align: center;
  }

  .family-photo {
    width: 100%;
    height: auto;
    border-radius: 6px;
  }

  .bio-section h2,
  .faith-family-section h2,
  .career-section h2,
  .boards-section h2 {
    font-size: 1.25rem;
    text-align: center;
  }

  .bio-section p,
  .faith-family-section p,
  .boards-section p {
    font-size: 0.95rem;
    text-align: left;
  }

  .timeline {
    padding-left: 1rem;
    margin-left: 0;
  }

  .timeline-item {
    padding-left: 0.75rem;
    margin-left: 0;
  }

  .timeline-item h3 {
    font-size: 1rem;
  }

  .timeline-item p {
    font-size: 0.95rem;
  }

  .boards-list h3 {
    font-size: 1.05rem;
    text-align: left;
  }

  .boards-list ul {
    padding-left: 1rem;
  }

  .boards-list li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
} 