
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.section-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3rem;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.people-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.person {
  flex: 1 1 200px;
  text-align: center;
}

.person img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.person img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.person div {
  min-height: 100px;
  overflow: visible;
  text-align: center;
}

.navbar {
  background-color: #f9f9f9;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.nav-link:hover {
  border-bottom: 2px solid #007BFF;
}

blockquote {
  background: #f7f7f7;
  padding: 1rem 1.5rem;
  border-left: 4px solid #007BFF;
  font-style: italic;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
