.committee-section {
  padding: 60px 20px;
}

.committee-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.c-btn {
  background: #e0e0e0;
  color: #E53935;
  border: none;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 0 #bdbdbd;
  transition: all 0.2s ease;
}

.c-btn.active {
  background: #E53935;
  color: #e0e0e0;
}
/* .cta-btn {
  background: #e0e0e0;
  color: #E53935;
  border: none;
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 0 #bdbdbd;
  transition: all 0.2s ease;
}

.cta-btn:hover,
.cta-btn.active {
  background: #E53935;
  color: #e0e0e0;
} */

.c-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #bdbdbd;
}

/* Content */
.c-content {
  display: none;
}

.c-content.active {
  display: block;
}

/* Table */
.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

th {
  background: #f5f5f5;
}

/* Highlight role */
td span {
  display: block;
  font-size: 12px;
  color: #E53935;
}

/* Docs */
.doc-list li {
  margin-bottom: 10px;
}

.committee-desc {
  margin: 10px 0 20px;
  color: #555;
  max-width: 800px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

th {
  background: #f5f5f5;
  text-align: left;
}
tr:first-child td {
  font-weight: 600;
  background: #fff5f5;
}

.counselling-section {
  padding: 60px 20px;
}

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

/* Layout */
.two-col {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

/* Cards */
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Highlight */
.highlight-box {
  background: #fff5f5;
  padding: 20px;
  border-radius: 10px;
}

/* Address */
.address-box {
  margin-top: 15px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 40px;
}