header {
    width: 100%;
    max-width: 4000px;
    display: inline-block;
    background-image: url(../images/tree-growing.gif);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 350px;
    border-bottom: 3px solid #0a5167;
    background-color: #fff;
}
header #logo {
    float: left;
    margin-left: 0;
}

header #logo img {
    width: 200px;
}

h1{
    text-align: center;
    padding: 20px 40px;
    margin: 0;
    
}
/* Site Navigation */
.site nav{
    margin-top: 20px;
}
.site-nav ul{
    margin: 0;
    padding: 0;
}
.site-nav li{
    list-style: none;
    float: right;
    margin-right: 5px;
}
.site-nav a {
    display: block;
    color:#0a5167;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 20px;
}
.site-nav a:hover{
    text-decoration: underline;
}

@media screen and (max-width: 700px) {
    
    .site-nav li{
        width: 33.332%;
        margin-right: 0;
    }
    
    .site-nav a{
        padding: 15px 0;
        margin-right: 5px;
        margin-bottom: 5px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {

    .site-nav li {
        width: 50%;
        margin-right: 0;
        }
    .site-nav a {
        font-size: 15px;
        text-align: right;
    }
    
}

/* End Site Navigation */

body{
    font-family: Tahoma, sans-serif;
    background-color: #0a5167;
    margin: 0;
    padding: 0;
    justify-content: center;
}
#content{
    background-color: #fff;
    margin: 0;
    padding: 0;
    align-items: center;
}
.team-member {
    display: flex;
    gap: 20px; /* Space between image and text */
    align-items: flex-start;
    padding: 20px 20px;
}
.image_banner_3 {
    flex: 0 0 auto;
}

.image_banner_3 img {
    max-width: 300px; /* Control the image size */
    height: auto;
    object-fit: cover; /* Ensures image covers its space without distortion */
}
.team_content{
    flex: 1;
}

@media screen and (max-width: 700px){
    .image_banner_3 img{
        width: 350px;
        height: auto;
        border-right: none;
    }
}
@media screen and (max-width: 480px){
    .image_banner_3 img{
        width: 250px;
        height: auto;
        padding: 10px 20px;
        border-bottom: none;
    }
}
footer {
    text-align: center;
    padding: 50px;
    color: white; /* Ensure text is readable */
    margin: 0;
    background-color: #0a5167;
}