<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>Neuro Health Academy</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      text-align: center;

      margin: 0;

      padding: 0;

    }

    header {

      padding: 2rem;

      background: linear-gradient(to right, #ff7eb9, #ffb86c, #faff00, #00f5d4, #8be9fd, #a78bfa);

      color: white;

    }

    img {

      max-width: 300px;

      margin: 2rem auto;

      display: block;

    }

    section {

      padding: 2rem;

    }

  </style>

</head>

<body>

  <header>

    <h1>Neuro Health Academy</h1>

    <p>Empowering minds through education.</p>

  </header>


  <img src="logo.jpeg" alt="Neuro Health Academy Logo" />


  <section>

    <h2>About Us</h2>

    <p>We provide educational tools and support to help individuals build mental health resilience and develop coping skills.</p>

  </section>


  <section>

    <h2>Contact</h2>

    <p>Email: info@neurohealthacademy.org</p>

  </section>

</body>

</html>