   .main-container {
        max-width: 1200px;
        margin: 0 auto;
    }



    /* --- Section Panel Styling --- */
    .team-panel {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
        margin-bottom: 30px;
        overflow: hidden;
    }

    .panel-header {
        background-color: #f8f9fa;
        padding: 18px 25px;
        border-bottom: 1px solid #e9ecef;
    }

    .panel-header h2 {
        font-size: 1.5em;
        font-weight: 600;
        color: #34495e;
    }

    .panel-body {
        padding: 25px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }

    /* --- Leadership Section (Full-width cards) --- */
    .panel-body.leadership {
        grid-template-columns: 1fr;
    }

    /* --- Member Card Styling --- */
    .member-card {
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        padding: 20px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .member-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    }

    .member-name {
        font-size: 1.3em;
        font-weight: 700;
        color: #004a7f;
        margin-bottom: 4px;
    }

    .member-designation {
        font-size: 1em;
        font-weight: 600;
        color: #555;
        margin-bottom: 15px;
    }

    .member-details {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 0.9em;
    }

    .detail-item {
        display: flex;
        align-items: center;
        color: #666;
    }

    .detail-item svg {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        fill: #777;
    }

    .detail-item a {
        color: #3498db;
        text-decoration: none;
        font-weight: 600;
        word-break: break-all;
    }

    .detail-item a:hover {
        text-decoration: underline;
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
        body {
            padding: 15px;
        }

        header h1 {
            font-size: 1.8em;
        }

        .panel-header h2 {
            font-size: 1.3em;
        }

        .panel-body {
            grid-template-columns: 1fr;
        }
    }