body,
button,
input,
select,
textarea,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.container {
     max-width: 1200px;
     margin: 0 auto;
     border-radius: 8px;
}

h1 {
     text-align: center;
     margin-bottom: 40px;
     color: #2c3e50;
     font-weight: 600;
}

.committee-table {
     width: 100%;
     border-collapse: collapse;
     margin-bottom: 30px;
}

.committee-table th {
     background-color: #4d1f1a;
     color: white;
     padding: 15px;
     text-align: left;
     font-weight: 500;
}

.committee-table td {
     padding: 15px;
     border-bottom: 1px solid #e0e0e0;
     vertical-align: top;
}

.committee-table tr:nth-child(even) {
     background-color: #f9f9f9;
}

.committee-table tr:hover {
     background-color: #f1f1f1;
}

.terms-link {
     color: #4d1f1a;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
}

.terms-link:hover {
     color: #2980b9;
     text-decoration: underline;
}

@media (max-width: 768px) {
     .committee-table {
          display: block;
          overflow-x: auto;
     }

     .container {
          padding: 15px;
     }

     h1 {
          font-size: 24px;
          margin-bottom: 20px;
     }
}