*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    background:#f5f6f8;
    color:#222;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

header{
    background:white;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    text-decoration:none;
    color:#1f2937;
    font-size:28px;
    font-weight:700;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#444;
    transition:.3s;
}

nav a:hover{
    color:#2563eb;
}

.hero{
    height:85vh;

    background:
    linear-gradient(
    rgba(0,0,0,.5),
    rgba(0,0,0,.5)),
    url('/assets/images/hero.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-overlay{
    text-align:center;
    color:white;
}

.hero h1{
    font-size:80px;
    margin-bottom:20px;
}

.hero p{
    font-size:24px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn-primary{
    background:#2563eb;
    color:white;
    padding:15px 30px;
    border-radius:10px;
    text-decoration:none;
}

.btn-secondary{
    background:white;
    color:#222;
    padding:15px 30px;
    border-radius:10px;
    text-decoration:none;
}

.stats{
    padding:80px 0;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:white;
    padding:40px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.stat-card h2{
    margin-top:10px;
    font-size:42px;
}

.about{
    padding:100px 0;
    text-align:center;
}

.about h2{
    margin-bottom:20px;
    font-size:42px;
}

.about p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

footer{
    background:#111827;
    color:white;
    text-align:center;
    padding:30px;
}

.people-page{
    padding:60px 0;
}

.people-page h1{
    margin-bottom:30px;
}

.search-form{
    display:flex;
    gap:10px;
    margin-bottom:40px;
}

.search-form input{
    flex:1;
    padding:15px;
    border:none;
    border-radius:10px;
}

.search-form button{
    background:#2563eb;
    color:white;
    border:none;
    border-radius:10px;
    padding:15px 25px;
    cursor:pointer;
}

.people-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fill,minmax(250px,1fr));

    gap:25px;
}

.person-card{
    background:white;
    border-radius:16px;
    padding:20px;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.person-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}


.person-card h3 a{
    text-decoration:none;
    color:#222;
}

.person-card h3 a:hover{
    color:#2563eb;
}