header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: burlywood;
  height: 70px;
}
/* .logo-left {
  float: left;
  margin-left: -20px;;
} */

.logo-left img {
  width: 106px;
  height: 113px;
}
.logo-right {
 float: right;
 margin-right: 10px;
}

.logo-right img {
 width: 150px;
 height: auto;
}

nav {
  list-style: initial;
  margin: auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin-right: 20px;
  /* list-style-type: none; */

}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 25px;
}
nav ul {
 list-style-type: none;
 display: contents;
 margin: 0;
 padding: 0;
 overflow: hidden;
}
nav a.active {
 background-color: #4CAF50; /* Example: a green background for the active link */
 color: white; /* White text for better contrast */
 padding: 10px 15px;
 border-radius: 5px;
}

nav a:hover {
 background-color: #ddd; /* Optional hover effect */
 color: black;
}

  
  .team-header {
    text-align: center;
}

.team-members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    margin: 10px;
    text-align: center;
}

.team-member img {
    width: 150px; /* Adjust as needed */
    height: auto;
}
.team-member p {
    margin-top: 10px;
    font-size: 25px;
}

.team-member p {
    margin-top: 5px;
    font-size: 18px;
    color: #333; /* Adjust the color as needed */
}

  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    background-color: #333;
    color: #fff;
    padding: 0 50px;
  }
  
  .footer-left {
    display: flex;
    align-items: center;
  }
  
  .footer-left a {
    margin-right: 20px;
  }
  
  .footer-left a img {
    height: 30px;
    width: auto;
  }
  
  .footer-right {
    text-align: right;
  }

  .footer {
    text-align: center;
    font-weight: bold;
  }
  .footer_text {
    color: rgba(0, 0, 0, 0.8);
    font-family: serif;
    font-size: 12pt;
    text-align: center;
  }