/* ===========================
   HERO
=========================== */

.team-hero{

    padding:100px 20px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a
    );

    color:#fff;

    border-radius:20px;

    margin-bottom:60px;

}

.team-hero h1{

    font-size:48px;

    margin-bottom:20px;

}

.team-hero p{

    max-width:850px;

    margin:auto;

    color:#dbeafe;

    font-size:18px;

    line-height:1.8;

}


/* ===========================
INTRO
=========================== */

.team-intro{

    max-width:1100px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.team-intro h2{

    font-size:34px;

    color:#ffffff;

    margin-bottom:20px;

}

.team-intro p{

    color:#ffffff;

    line-height:1.9;

    font-size:17px;

}


/* ===========================
TEAM
=========================== */

.team-members{

    margin-bottom:80px;

}

.team-members h2{

    text-align:center;

    color:#ffffff;

    margin-bottom:45px;

}

.team-grid{

    display:grid;

    grid-template-columns:

        repeat(
            auto-fit,
            minmax(250px,1fr)
        );

    gap:30px;

}

.team-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.team-card:hover{

    transform:translateY(-8px);

}

.team-avatar{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#eff6ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    margin-bottom:18px;

}

.team-card h3{

    color:#1e3a8a;

    margin-bottom:8px;

}

.team-card span{

    color:#ff9800;

    font-weight:bold;

}

.team-card p{

    margin-top:18px;

    color:#666;

    line-height:1.7;

}


/* ===========================
VALUES
=========================== */

.team-values{

    margin-bottom:80px;

}

.team-values h2{

    text-align:center;

    color:#ffffff;

    margin-bottom:40px;

}

.value-grid{

    display:grid;

    grid-template-columns:

        repeat(
            auto-fit,
            minmax(220px,1fr)
        );

    gap:30px;

}

.value-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    font-size:18px;

}

.value-card h3{

    margin:20px 0;

    color:#1e3a8a;

}

.value-card p{

    color:#666;

    line-height:1.8;

}


/* ===========================
JOIN
=========================== */

.join-team{

    text-align:center;

    padding:70px 20px;

    background:#1e3a8a;

    border-radius:20px;

    color:white;

}

.join-team h2{

    margin-bottom:20px;

}

.join-team p{

    color:#dbeafe;

    margin-bottom:30px;

}

.join-btn{

    display:inline-block;

    background:#ff9800;

    color:white;

    padding:15px 35px;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

}

.join-btn:hover{

    background:#fb8c00;

}


/* ===========================
RESPONSIVE
=========================== */

@media(max-width:768px){

.team-hero h1{

    font-size:34px;

}

.team-grid{

    grid-template-columns:1fr;

}

.value-grid{

    grid-template-columns:1fr;

}

}