<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Longevity Hub - Home</title>
    <style>
        /* Add your CSS styles here */
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <h1>Welcome to Longevity Hub</h1>
        <img src="logo.png" alt="Longevity Hub Logo">
    </header>

    <!-- Navigation Menu -->
    <nav>
        <ul>
            <li><a href="#home">Home</a></li>
            <li><a href="#about">About Us</a></li>
            <li><a href="#articles">Articles</a></li>
            <li><a href="#resources">Resources</a></li>
            <li><a href="#contact">Contact Us</a></li>
        </ul>
    </nav>

    <!-- Main Content -->
    <main>
        <!-- Sub-Category 1 -->
        <section id="healthy-lifestyle">
            <h2>Healthy Lifestyle</h2>
            <p>Discover the key components of a healthy lifestyle that can contribute to a longer and happier life. From nutrition and exercise to stress management and sleep, learn how to optimize your daily habits for longevity.</p>
        </section>

        <!-- Sub-Category 2 -->
        <section id="medical-breakthroughs">
            <h2>Medical Breakthroughs</h2>
            <p>Stay up-to-date with the latest medical advancements and breakthroughs in the field of longevity. Explore cutting-edge treatments, therapies, and research that can enhance life expectancy and improve overall health.</p>
        </section>

        <!-- Sub-Category 3 -->
        <section id="mental-well-being">
            <h2>Mental Well-being</h2>
            <p>A healthy mind is vital for a long and fulfilling life. Explore strategies to boost cognitive function, manage stress, and maintain emotional well-being. Discover mindfulness techniques and practices for a sharper mind.</p>
        </section>

        <!-- Sub-Category 4 -->
        <section id="community-social-connections">
            <h2>Community & Social Connections</h2>
            <p>Strong social connections are linked to increased longevity. Learn how to foster meaningful relationships, build a supportive community, and engage in activities that promote a sense of belonging and purpose.</p>
        </section>

        <!-- Sub-Category 5 -->
        <section id="aging-gracefully">
            <h2>Aging Gracefully</h2>
            <p>Embrace the aging process with grace and dignity. Explore tips, advice, and inspiring stories on how to age gracefully and maintain a positive outlook on life at every stage.</p>
        </section>
    </main>

    <!-- Newsletter Subscription -->
    <section id="newsletter">
        <h2>Subscribe to Our Newsletter</h2>
        <form action="subscribe.php" method="POST">
            <input type="email" name="email" placeholder="Enter your email" required>
            <button type="submit">Subscribe</button>
        </form>
    </section>

    <!-- Contact Section -->
    <section id="contact">
        <h2>Contact Us</h2>
        <form action="contact.php" method="POST">
            <input type="text" name="name" placeholder="Your Name" required>
            <input type="email" name="email" placeholder="Your Email" required>
            <textarea name="message" placeholder="Your Message" required></textarea>
            <button type="submit">Send Message</button>
        </form>
    </section>

    <!-- Footer -->
    <footer>
        <ul>
            <li><a href="privacy-policy.html">Privacy Policy</a></li>
            <li><a href="terms-of-use.html">Terms of Use</a></li>
            <li><a href="disclaimer.html">Disclaimer</a></li>
        </ul>
        <p>&copy; 2023 Longevity Hub. All rights reserved.</p>
    </footer>
</body>
</html>