  /* Global Styles */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            color: #333;
        }

    /* Header */
    header {
      background: #5175a2;
      color: white;
      text-align: center;
      padding: 20px 0;
    }
    header h1 {
      margin: 0;
      font-size: 2rem;
    }
    header p {
      margin: 5px 0 0;
      font-size: 1rem;
	  text-align: center;
    }
    /* Navigation Bar */
    nav {
      background: #333;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 0;
      flex-wrap: wrap; /* Allow wrapping for smaller screens */
    }
    nav a {
      color: white;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1rem;
      white-space: nowrap; /* Prevent text from breaking into multiple lines */
    }
    nav a:hover {
      text-decoration: underline;
    }
    /* Hero Section */
    .hero {
      background: #d7dfea; /* Soft Pale Yellow Background */
      color: black; /* Black Text Color */
      text-align: center;
      padding: 20px 20px; /* Reduced padding for smaller height */
    }
    .hero h2 {
      font-size: 1.6rem; /* Slightly smaller font size */
      margin: 0;
    }
    .hero p {
      font-size: 1rem; /* Smaller font size */
      margin: 10px 0 20px;
    }



        h1, h2 {
            color: #000;
        }

        h1 {
            text-align: center;
            font-size: 1.6em;
            margin-top: 50px;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 1.6em;
            margin-top: 40px;
            margin-bottom: 10px;
        }

        p, ul {
            font-size: 1em;
            margin-bottom: 15px;
            padding-left: 0;  /* Remove left padding */
            text-align: left;  /* Left align the content */
        }

        /* Remove bullet points */
        ul {
            list-style-type: none;
            margin-left: 0;
            padding-left: 0;
        }

        ul li {
            margin-bottom: 10px;
        }

        /* Section Styles */
       section {
            max-width: 800px;
            margin: 40px auto;
          
            padding: 20px;
          
        }

        section ul li {
            margin-bottom: 10px;
        }

        section p {
            margin-bottom: 20px;
        }

        /* Contact Info Section */
        section p strong {
            font-weight: bold;
            color: #1a73e8;
        }

        /* Link Styles */
        a {
            color: #1a73e8;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }


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;
    }