html, body {
  background-color: white;
}
.about-us {
    /* border-width: 1px;
  border-color: red;
  border-style: solid; */
  display: flex;
  flex-direction:column;
  flex-basis: 100%;
  background-color: #f1f1f1; /* light gray */
}
.about-us h1 {
  align-items:start;
  color:#363636; /* charcoal */
  padding-left:20px;
}
.about-us p {
  justify-content: center;
  font-size: 1.1rem;
  color: #363636; /* charcoal */
  padding: 0 12px;
  margin: 12px 18px;
}
.meet-team {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}
.meet-team h1 {
  align-items:start;
  color:#363636; /* charcoal */
  padding-left:20px;
}

.list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding: 20px;
}

.list-item {
  display: flex;
  flex-direction: column;
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-content img {
  width: 100%;
  height: auto;
  display: block;
}

.text-content {
  padding: 16px;
}

.text-content h2 {
  margin: 0 0 10px;
  font-size: 1.4em;
}

.text-content p {
  margin: 0 0 10px;
  color: #555;
}

.text-content a {
  color: #007BFF;
  text-decoration: none;
}

@media (max-width: 768px) {
  .list-container {
    flex-direction: column;
    align-items: center;
  }
}