/* --- Committee Section --- */
.committee-section {
  background-color: #58bb2e;
  padding: 20px 0;
  color: #000;
}

.committee-section h3 {
  text-align: center;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.committee-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0;
}

.chairman-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 15px;
}

.chairman-info p {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}

/* --- Members List Section --- */
.members-list {
  background-color: #8ecac7;
  padding: 20px 0;
  color: #000;
}

.members-list .container {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 0 20px;
  justify-content: center;
}

.founding-members-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  justify-content: center;
}


.members-list li {
  margin-bottom: 10px;
  font-size: 2rem;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  .chairman-info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .chairman-info p,
  .members-list li {
    font-size: 1em;
  }
}
