<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>About Me - Shawn Lavin</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }
        header {
            background-color: #00274d;
            color: white;
            padding: 1rem;
            text-align: center;
        }
        .container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        h1, h2 {
            color: #00274d;
        }
        a {
            color: #0073e6;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <header>
        <h1>About Me</h1>
    </header>

    <div class="container">
        <h2>Shawn Lavin</h2>
        <p>I have dedicated my life to service—both in my community and for my country. As an officer in the Air National Guard, I have had the honor of leading missions that not only safeguard our nation but also provide aid during times of great need.</p>

        <p>Over the years, I have responded to several natural disasters, bringing critical support to communities in crisis. Notably, I was part of the recovery efforts in North Carolina following Hurricane Helene, where my team worked tirelessly to assist affected residents (<a href="https://www.wgrz.com/article/news/local/niagara-county/nf-air-national-in-north-carolina/71-66864198-c65f-42cb-8734-19a0d0b219ce" target="_blank">read more here</a>). During the COVID-19 pandemic, I also contributed to operations in New York City, assisting with response efforts during one of the most challenging times in modern history (<a href="https://www.cbsnews.com/news/covid-19-new-york-city-deaths-60-minutes-2020-04-19/" target="_blank">learn more here</a>).</p>

        <p>In addition to my military service, I am proud to serve as the current Deputy Supervisor of the Town of Amherst. In this role, I work every day to ensure our town remains a thriving and welcoming community for all.</p>

        <p>Above all, I am a father of two wonderful children who inspire me daily. They remind me of the importance of building a future that we can all be proud of—a future rooted in service, dedication, and compassion.</p>
    </div>

    <footer style="text-align: center; margin: 20px 0;">
        <p>&copy; 2025 Shawn Lavin. All Rights Reserved.</p>
    </footer>
</body>
</html>