 main {
            flex: 1 0 auto;
        }
        .footer {
            flex-shrink: 0;
            width: 100%;
        }
        /* ...existing code... */
        .committee-list {
            margin-top: 16px;
            margin-bottom: 16px;
        }
        .committee-member {
            margin-bottom: 18px;
        }
        .name {
            display: block;
            font-weight: bold;
        }
        .position {
            display: block;
            margin-left: 24px;
            color: #333;
        }
        .committee-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
            margin-bottom: 16px;
            background: #fff;
        }
        .committee-table th, .committee-table td {
            border: 1px solid #ddd;
            padding: 10px 12px;
            vertical-align: top;
            text-align: left;
        }
        .committee-table th {
            background: #f2f2f2;
            font-weight: bold;
        }
        .committee-table tr:nth-child(even) {
            background: #fafafa;
        }