:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.committee-section {
  background: var(--bg-light);
  padding: 60px 0;
}

/* MAIN CARD */
.committee-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */
.main-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 25px;
}

/* =========================
   LIST (UPDATED DESIGN)
========================= */
.committee-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}

.committee-list li {
  list-style: none;
  padding: 12px 18px;
  background: var(--primary-blue);   /* BLUE BACKGROUND */
  color: #fff;                      /* WHITE TEXT */
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

/* HOVER EFFECT */
.committee-list li:hover {
  background: var(--accent-red);    /* RED ON HOVER */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* =========================
   DETAILS GRID
========================= */
.committee-details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* BOX */
.committee-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* HOVER */
.committee-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* HEADINGS */
.committee-box h2 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 10px;
}

.committee-box h4 {
  color: var(--accent-red);
  font-size: 14px;
  margin-top: 10px;
}

/* TEXT */
.committee-box p {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

/* LIST */
.committee-box ul {
  padding-left: 18px;
}

.committee-box ul li {
  margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .committee-card {
    padding: 20px;
  }

  .main-title {
    font-size: 22px;
  }

  .committee-box h2 {
    font-size: 16px;
  }

  .committee-list li {
    font-size: 14px;
    padding: 10px;
  }
}