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

body {
    font-family: Arial, sans-serif;
    background: #f6f3f1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 0px solid black;
    background: #f6f3f1;
    position: relative;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr 1fr;
    width: 100%;
    align-items: center;
    text-align: center;
}

.nav-item {
    font-size: 40px;
    font-family: "mapolice", sans-serif;
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

.nav-item:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.logo img {
    width: 200px;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.1);
}

.mobile-only { display: none; }
.burger { display: none; }


.separator {
    width: 100%;
    height: 3px;
    background: black;
}


.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    text-align:justify;
}


.team-image img {
    width: 360px;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
}


.team-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d2f87;
}

.team-title strong {
    font-weight: bold;
}


.team-text {
    font-size: 22px;
    line-height: 1.6;
    max-width: 600px;
}



@font-face{
    font-family:"mapolice";
    src:url("fonts/mapolice.ttf") format("truetype");
    font-weight:normal;
    font-style:normal; 
}

.nav-item{
    font-family: "mapolice", sans-serif;
}
