.committee-section {
    margin-bottom: 3rem;
}

.committee-section h2 {
    color: var(--color-navy, #1A2B4A);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-red, #C8102E);
}

.committee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.committee-table th,
.committee-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.committee-table th {
    background: var(--color-navy, #1A2B4A);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.committee-table tbody tr:hover {
    background: #eef2f7;
}

.committee-table td:first-child {
    width: 40%;
    font-weight: 500;
    color: var(--color-navy, #1A2B4A);
}

.committee-table td:last-child {
    color: #333;
}

@media (max-width: 768px) {
    .committee-table {
        font-size: 0.9rem;
    }

    .committee-table th,
    .committee-table td {
        padding: 10px 12px;
    }

    .committee-table td:first-child {
        width: 45%;
    }
}
