body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      color: #333;
    }
		header p{
			text-align: center;
			
		}
    h1, h2 {
      color: #1a73e8;
    }

    h1 {
      text-align: center;
      font-size: 2.5em;
      margin-top: 50px;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 1.8em;
      margin-top: 40px;
      margin-bottom: 10px;
    }

    p {
      font-size: 1.1em;
      margin-bottom: 20px;
      padding-left: 0;
      text-align: left;
    }

    section {
      max-width: 800px;
      margin: 40px auto;
     
      padding: 20px;
      border-radius: 8px;
     
    }

    ul {
      list-style-type: none;
      padding-left: 0;
      margin: 0 0 20px 0;
    }

    ul li {
      font-size: 1.1em;
      margin-bottom: 10px;
      text-align: left;
    }

    a {
      color: #1a73e8;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    strong {
      color: #1a73e8;
    }
	
	
	footer {
      background: #333;
      color: white;
      display: flex;
      justify-content: center; /* Center-align footer content */ 
      align-items: center;
      padding: 20px;
      flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }
    footer p {
      margin: 0;
	  text-align: left;
	  font-size: 0.9rem;
      margin-right: 20px; /* Add spacing between copyright and links */
    }
    footer .footer-links {
      display: flex;
      gap: 15px; /* Space between links */
	  margin-left: 20px
    }
    footer .footer-links a {
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
    }
    footer .footer-links a:hover {
      text-decoration: underline;
    }