body{
    background:#f4f7fb;
    font-family:'Poppins',sans-serif;
}

.page-banner{
    background:#1f4e79;
    color:#fff;
    padding:45px 20px;
    text-align:center;
}
.alumni-heading{
    text-align:center;
    margin-bottom:25px;
}
.panel-body p{
    font-size:16px;
    line-height:1.8;
}



.alumni-heading h2{
    margin:0;
    font-family:'Georgia', serif;
    font-size:34px;
    font-weight:bold;
    color:#b22222;              /* Firebrick Red */
    text-transform:uppercase;
    letter-spacing:1px;
}

.alumni-heading::after{
    content:"";
    display:block;
    width:140px;
    height:3px;
    background:#d4a017;         /* Gold */
    margin:10px auto 0;
}

.page-banner h1{
    margin:0;
    font-size:38px;
    font-weight:700;
}

.alumni-container{
    width:92%;
    max-width:1250px;
    margin:40px auto;
}

.content-card{
    background:#fff;
    border-radius:12px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.content-card h2{
    color:#1f4e79;
    margin-bottom:20px;
    font-size:28px;
    position:relative;
    padding-bottom:10px;
}

.content-card h2::after{
    content:"";
    width:90px;
    height:3px;
    background:#d4a017;
    position:absolute;
    left:0;
    bottom:0;
}

.content-card p{
    color:#555;
    font-size:16px;
    line-height:1.9;
    text-align:justify;
}

.table-responsive{
    overflow-x:auto;
}

.committee-table{
    width:100%;
    border-collapse:collapse;
}

.committee-table th{
    background:#1f4e79;
    color:#fff;
    padding:16px;
    font-size:17px;
    text-align:left;
}

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

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

.member-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:18px;
}

.member{
    background:#f8fbff;
    border-left:4px solid #1f4e79;
    padding:15px;
    border-radius:8px;
    font-weight:500;
    transition:.3s;
}

.member:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

@media(max-width:768px){

    .page-banner h1{
        font-size:28px;
    }

    .content-card{
        padding:22px;
    }

    .content-card h2{
        font-size:24px;
    }

}