/* Global Styles */
html {
    font-size: 16px;
  }
  

  header {
    background-color: #0077be;
  }
  
  .logo a, .header-title, .menu-links a {
    color: #ffffff;
    font-weight: 300;
    font-weight:bold
  }

  body {
    font-family: 'Open Sans', sans-serif;
    color: #475831;
    background-color: #e1d7c1;
    line-height: 1.6;
    margin: 0;
  }
  
  h1 {
    font-size: 3em;
    text-align: center;
  }
  
  h2, h3 {
    font-weight: 600;
    margin: 1rem 0;
  }
  
  a {
    color: #62a18f;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  img {
    max-width: 100%;
    height: auto;
    justify-content: left;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  header {
    background-color: #9fc7b9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
  }
  
  .logo img {
    width: 85px;
  }

  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    height: 60px;
    width: auto;
    margin-right: 10px;
  }
  
  .header-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }
  
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  nav ul li a {
    font-weight: 400;
    font-weight: bold;
  }

  .menu-links a {
    font-size: 1.2em;
  }

  .menu-links a:hover {
  padding: 5px;
  border-radius: 5px;
  background-color: #62a18f;
  border: none; 
  }

  /* Button Styles */
  .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #62a18f;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .button:hover {
    background-color: #7f985f;
    cursor: pointer;
  }
  
  /* Section Styles */
  section {
    padding: 80px 0;
  }
  
  section h1, h2 {
    text-align: center;
  }
  
  section ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    max-width: 800px;
  }
  
  /* Meet the Team Styles */
  .team-member {
    display: flex;
    margin-bottom: 40px;
  }
  
  .team-member img {
    margin-right: 20px;
    max-height: 200px;
    border: 2px solid #62a18f;
    border-radius: 50%;
  }
  
  .team-member h2 {
    margin-bottom: 10px;
    text-align: left;
  }
  
  .team-member p {
    margin-bottom: 0;
  }
  