<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>MathSet Go - Educational App</title>

  <meta name="description" content="MathSet Go helps learners in Grades 8–12 practice math mock exams and helps teachers track learner progress easily.">

  <link rel="icon" type="image/png" href="logo.png">

  <style>

    body {

      font-family: 'Arial', sans-serif;

      margin: 0;

      padding: 0;

      scroll-behavior: smooth;

      color: #333;

    }

    a { text-decoration: none; color: inherit; }


    /* Header */

    header {

      background: linear-gradient(135deg, #4A90E2, #50E3C2);

      color: white;

      text-align: center;

      padding: 60px 20px;

    }

    header img {

      width: 120px;

      margin-bottom: 20px;

    }

    header h1 {

      font-size: 2.8em;

      margin: 0;

    }

    header p {

      font-size: 1.2em;

    }


    /* Section Styles */

    section {

      padding: 60px 20px;

      max-width: 900px;

      margin: auto;

    }

    h2 {

      color: #4A90E2;

      margin-bottom: 20px;

      text-align: center;

    }

    p {

      line-height: 1.6;

      text-align: center;

    }


    /* Features */

    .features {

      display: flex;

      flex-wrap: wrap;

      justify-content: center;

      gap: 20px;

      margin-top: 40px;

    }

    .card {

      background: white;

      border-radius: 12px;

      padding: 20px;

      width: 250px;

      box-shadow: 0 6px 20px rgba(0,0,0,0.1);

      transition: transform 0.3s;

    }

    .card:hover {

      transform: translateY(-5px);

    }

    .card h3 {

      margin-top: 0;

      color: #333;

    }

    .card p {

      font-size: 0.95em;

      color: #666;

    }


    /* Footer */

    footer {

      text-align: center;

      padding: 20px;

      font-size: 0.9em;

      color: #555;

      background-color: #f0f3f7;

    }


    /* Responsive */

    @media(max-width: 768px){

      .features {

        flex-direction: column;

        align-items: center;

      }

    }

  </style>

</head>

<body>


  <header>

    <img src="logo.png" alt="MathSet Go Logo">

    <h1>MathSet Go</h1>

    <p>Interactive mock exams for Grades 8–12</p>

  </header>


  <section id="about">

    <h2>About the App</h2>

    <p>MathSet Go is an educational app that allows learners to practice mock exams created by their teachers. Track performance, learn from mistakes, and improve your math skills.</p>

  </section>


  <section id="mission" style="background-color: #f0f3f7;">

    <h2>Our Mission</h2>

    <p>To empower learners with easy access to quality math practice and help teachers track progress effortlessly.</p>

  </section>


  <section id="features">

    <h2>Features & Version</h2>

    <div class="features">

      <div class="card">

        <h3>Grade 8–12 Tests</h3>

        <p>Multiple-choice exams tailored to each grade level.</p>

      </div>

      <div class="card">

        <h3>Performance Tracking</h3>

        <p>Track results and identify areas to improve instantly.</p>

      </div>

      <div class="card">

        <h3>Teacher Content</h3>

        <p>Teachers can create and manage tests easily.</p>

      </div>

      <div class="card">

        <h3>Version 1.0.0</h3>

        <p>Current stable release with full basic features.</p>

      </div>

    </div>

  </section>


  <section id="contact" style="background-color: #f0f3f7;">

    <h2>Contact</h2>

    <p>Email: <a href="mailto:support@mathsetgo.com">support@mathsetgo.com</a></p>

    <p>Website: <a href="https://www.mathsetgo.com">www.mathsetgo.com</a></p>

  </section>


  <footer>

    &copy; 2025 MathSet Go. All rights reserved.

  </footer>


</body>

</html>