<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>JDS Insights, LLC</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            color: #333;

        }

        header {

            background-color: #001f3f;

            color: white;

            padding: 20px;

            text-align: center;

        }

        .hero {

            text-align: center;

            padding: 50px;

            background-color: #f4f4f4;

        }

        .hero h1 {

            color: #001f3f;

        }

        .hero p {

            font-size: 1.2em;

        }

        .hero button {

            background-color: #ffcc00;

            border: none;

            padding: 10px 20px;

            font-size: 1em;

            cursor: pointer;

        }

        .section {

            padding: 20px;

        }

        .services, .about {

            background-color: #f9f9f9;

            margin: 20px 0;

        }

        .services h2, .about h2 {

            color: #001f3f;

        }

        footer {

            background-color: #001f3f;

            color: white;

            text-align: center;

            padding: 10px;

        }

    </style>

</head>

<body>

    <header>

        <h1>JDS Insights, LLC</h1>

        <p>Strategic Leadership for Business Growth</p>

    </header>


    <div class="hero">

        <h1>Welcome to JDS Insights</h1>

        <p>Fractional CEO and Financial Advisory Services for Small to Medium Businesses and Startups</p>

        <button>Schedule a Consultation</button>

    </div>


    <div class="section about">

        <h2>About JDS Insights</h2>

        <p>Providing fractional CEO services and management/financial consulting, emphasizing Jay Schainholz's background in growing businesses both organically and through strategic acquisitions.</p>

    </div>


    <div class="section services">

        <h2>Our Services</h2>

        <ul>

            <li>Fractional CEO/CFO Services</li>

            <li>Strategic Growth Planning</li>

            <li>Financial Management & Optimization</li>

            <li>Merger & Acquisition Advisory</li>

            <li>Operational Efficiency Consulting</li>

            <li>Fundraising Strategy</li>

        </ul>

    </div>


    <footer>

        <p>&copy; 2025 JDS Insights, LLC. All rights reserved.</p>

    </footer>

</body>

</html>