.aboutus-hero {
  background: #ffff;
  border-top: 2px rgb(228, 242, 253) solid;
  padding: 4rem 1rem 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 60vh;
}

.aboutus-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2c5879;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.aboutus-team-title {
  font-family: 'Playfair Display', serif;
  align-items: center;
  font-size: 2.5rem;
  color: #2c5879;
  font-weight: 700;
  margin: 1.5rem 0;
  text-align: center;
}

.aboutus-desc {
  max-width: 850px;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.aboutus-team {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.aboutus-member {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(44, 88, 121, 0.10);
  padding: 2rem 1.5rem;
  max-width: 360px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.aboutus-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(44, 88, 121, 0.08);
}

.aboutus-member-name {
  font-weight: 700;
  color: #2c5879;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.aboutus-member-role {
  color: #e2b887;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.aboutus-member-desc {
  font-size: 0.98rem;
  color: #444;
}

@media (min-width: 768px) {
  .aboutus-team {
    flex-direction: row;
  }

  .aboutus-hero {
    padding: 2rem 2rem 1rem 2rem;
  }
}