/* Global styles */

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  /* Header styles */
  
  header {
    background-color: #00b300; /* Green theme color */
    color: #fff; /* Text color for contrast */
    padding: 20px;
  }
  
  .banner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner img {
    height: 50px; /* Adjust as needed */
    margin-right: 10px;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
  }
  
  nav li {
    margin: 0 10px;
  }
  
  nav a {
    font-size: 18px; /* Adjust as needed */
  }
  
  /* Main content styles */
  
  main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }
  
  section {
    margin-bottom: 30px;
  }
  
  section h2 {
    font-size: 28px; /* Adjust as needed */
  }
  
  /* Footer styles */
  
  footer {
    background-color: #F5F5F5; /* Light gray background */
    color: #333; /* Dark gray text color */
    padding: 20px;
    text-align: center;
  }