
body{
    font-family:Arial,sans-serif;
    background:#f4f7fb;
    margin:0;
}

.team-section{
    max-width:1300px;
    margin:auto;
    padding:35px 15px;
    text-align:center;
}

.team-title{
    font-size:32px;
    font-weight:700;
    color:#1a237e;
    margin-bottom:10px;
}

.team-desc{
    max-width:900px;
    margin:10px auto 40px;
    font-size:16px;
    color:#555;
    line-height:1.6;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.team-card{
    background:#fff;
    border-radius:15px;
    padding:25px 20px 30px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:.3s ease;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-img{
    width:140px;
    height:140px;
    border-radius:50%;
   
    border:5px solid #e3e7ff;
    margin:0 auto 1px;
    display:block;
}

.team-name{
    font-size:20px;
    font-weight:600;
    margin:10px 0 4px;
    color:#222;
}

.team-role{
    font-size:14px;
    color:#777;
    margin-bottom:12px;
}

.team-social{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:center;
    gap:15px;
}

.team-social a{
    font-size:18px;
    color:#1a237e;
    transition:.3s ease;
}

.team-social a:hover{
    color:#000;
}

@media(max-width:600px){
    .team-title{font-size:26px;}
}
