#about-page {
	padding: 4vw;
	background-color: #e9e7ed;
	color: black;
	font-family: sans-serif;
}

#about-page h1, #about-page h2 {
	color: #545454;
	text-align: center;
}

#about-page p {
	font-size: 1.4vw;
	max-width: 70vw;
	margin: 1vw auto;
	text-align: center;
}
#agent-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.agent-card {
  width: 260px;
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.agent-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
