﻿        /* ==== PAGE CONTAINER ==== */
        .committee-container {
            max-width: 900px;
            margin: 10px auto 0; /* Top margin to avoid header overlap */
            padding: 0 10px;
        }

        /* ==== HEADING ==== */
        .committee-heading {
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
            position: relative;
        }

            .committee-heading::after {
                content: '';
                display: block;
                width: 80px;
                height: 4px;
                background: #0066b3;
                margin: 15px auto 0;
                border-radius: 2px;
            }

        /* ==== ACCORDION ==== */
        #committeeAcc {
            width: 100%;
        }

            #committeeAcc .card {
                border: 1px solid #cfcfcf;
                border-radius: 6px;
                overflow: hidden;
                margin-bottom: 15px;
            }

            #committeeAcc .card-header {
                background: #0066b3;
                padding: 0;
                border: none;
            }

            #committeeAcc .btn {
                color: #fff;
                font-size: 16px;
                font-weight: 600;
                padding: 15px 20px;
                width: 100%;
                text-align: left;
                background: transparent;
                border: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-decoration: none;
            }

                #committeeAcc .btn:hover {
                    background: rgba(255,255,255,0.1);
                }

            /* ==== LIST ==== */
            #committeeAcc .list-unstyled {
                padding-left: 25px;
                line-height: 2.0;
                margin: 0;
                list-style-type: disc;
            }

                #committeeAcc .list-unstyled li {
                    display: list-item;
                    margin-bottom: 8px;
                }

        .panel-body {
            background: #fff;
            padding: 20px;
        }

        /* ==== RESPONSIVE ==== */
        @@media (max-width: 768px) {
            .committee-container {
                margin-top: 60px;
                padding: 0 10px;
            }

            .committee-heading {
                font-size: 24px;
            }

            #committeeAcc .btn {
                font-size: 14px;
                padding: 12px 15px;
            }
        }

        @@media (max-width: 480px) {
            .committee-heading {
                font-size: 22px;
            }

            #committeeAcc .btn {
                font-size: 13px;
                padding: 10px 12px;
            }
        }