.committee_container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 25px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Section styling */
.committee_container section {
  padding: 20px;
  margin-bottom: 30px;
  border-left: 5px solid #009688;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
}

.committee_container h2 {
  color: #00695c;
  margin-bottom: 15px;
  border-bottom: 2px solid #cceee9;
  padding-bottom: 5px;
}

.committee_container p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

/* Member Cards Layout */
.committee-members {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.member-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px;
  background-color: #f0fdfa;
  border-left: 4px solid #4db6ac;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.03);
}

.member-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #b2dfdb;
}

.member-card h3 {
  margin: 0 0 8px;
  color: #00796b;
}

.member-card p {
  margin: 4px 0;
  color: #444;
}

/* Responsive layout */
@media (max-width: 768px) {
  .member-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-card img {
    width: 100%;
    max-width: 250px;
  }
}
