header {
    background-color: rgb(203, 243, 205);  /* Light gray background */
    padding: 5px 0;
  }
  
  .container { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;  /* Center the container horizontally */
  
  }
  
  nav a:hover {
    background-color: #f0f8ff;  /* Light gray hover effect */
    border-radius: 8px;
  }
  
  .logo img {
    /* Adjust image width and height as needed */
    width: 260px;
    height: 70px;
    margin-left: -6.8rem;
    
  }

  /* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  

  main,
  footer {
    padding: 20px;
  }
  
  nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  nav a {
    text-decoration: none;
    margin-right: 20px;
    color: #333;
  }
  
  /* Main content styles */
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 180px);  /* Adjust height as needed */
  }
  
  /* FAQ section styles */
  .faqs {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faqs h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
  }
  
  .faq {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }
  
  .faq h3 {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .faq p {
    line-height: 1.5; /* Adjust line spacing for readability */
  }
  footer {
    text-align: center;

    padding: 10px;
    color: #201f1f;  /* Adjust footer text color */
  } 
