/* Reset for margin, padding, and box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: nb_international_pro, sans-serif;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 30px 0;
    z-index: 10;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo img {
    height: 100px;
    margin-left: 10px;
}

nav {
    margin-top: 20px;
    text-align: right;
    margin-right: 300px;
}

nav a {
    display: inline-block;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    margin: 5px;
    background-color: transparent;
    transition: font-size 0.2s;
    font-weight: bold;
}

nav a:hover {
    font-size: 18px;
    transition: font-size 0.2s;
}

.team-section {
    text-align: center;
    padding: 50px 0;
    background-color: #ffffff;
	padding: 150px;
}

.team-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333333;
}

.team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    text-align: center;
    width: 200px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #333333;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

.team-member h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #333333;
}

.team-member p {
    font-size: 16px;
    color: #777777;
    margin: 0;
}


footer {
    background-color: white;
    padding: 30px;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.footer-logo img {
    height: 80px;
    margin-left: 10px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav a {
    display: inline-block;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    margin: 5px;
    background-color: transparent;
    border: transparent;
    transition: font-size 0.2s;
    font-weight: bold;
}

.footer-nav a:hover {
    font-size: 18px;
    transition: font-size 0.2s;
}

.info p {
    text-align: right;
    font-weight: bold;
}

footer p {
    text-align: center;
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        margin: 0 auto;
        height: 60px;
    }
	
	h1 {
		margin-top: 20px;
		clear: both;
		padding-top: 200px;
		font-size: 40px;
	}
	
    nav {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }
	
    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }
}