.teams-container{
    max-width:1400px;
    margin:auto;
    padding:120px 40px;
}

.teams-title{
    font-size:4rem;
    color:white;
    text-align:center;
    margin-bottom:60px;
}

.teams-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.team-card{
    background:#111;
    border-radius:18px;
    padding:30px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.team-color{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
}

.team-card h2{
    font-size:2rem;
    margin-bottom:10px;
}

.teams-page{
    max-width:1400px;
    margin:auto;
    padding:60px 40px 120px;
}

.teams-header{
    text-align:center;
    margin-bottom:60px;
}

.teams-header h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:64px;
    letter-spacing:2px;
}

.teams-header p{
    font-size:18px;
    opacity:.7;
}

.team-card p{
    color:white;
    opacity:.8;
    font-size:1rem;
}