<!DOCTYPE html>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>WordPress Website Management & Security Services | The Small Business Website Guy</title>
    <meta name="description" content="Professional WordPress website management, security monitoring, and maintenance services for small businesses. 35+ years IT experience. Keep your WordPress site safe and updated.">
    <link rel="canonical" href="https://thesmallbusinesswebsiteguy.com/">
    <link rel="icon" href="/wp-content/uploads/2016/02/cropped-SBWG-Logo-512-32x32.png" sizes="32x32">
    
    <style>
        :root {
            --primary-color: #6a6ac4;
            --primary-dark: #2f2f7c;
            --text-color: #333;
            --bg-color: #fff;
            --border-color: #ddd;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--bg-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .site-header {
            background: #fff;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .site-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .header-search {
            flex: 1;
            max-width: 300px;
            margin: 0 20px;
        }
        
        .search-form {
            display: flex;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .search-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            outline: none;
        }
        
        .search-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
        }
        
        /* Navigation */
        .nav-primary {
            background: #f8f8f8;
            border-bottom: 1px solid var(--border-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: var(--text-color);
            transition: background 0.3s;
        }
        
        .nav-menu a:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: var(--shadow);
            min-width: 200px;
            display: none;
        }
        
        .nav-menu li:hover .sub-menu {
            display: block;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: transform 0.3s;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
        }
        
        /* Main Content */
        .main-content {
            padding: 60px 0;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .welcome-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .welcome-section h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 32px;
        }
        
        .welcome-image {
            float: right;
            margin: 0 0 20px 20px;
            border-radius: 10px;
        }
        
        /* Security Quiz Section */
        .security-quiz {
            background: #f8f8f8;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
        }
        
        .security-quiz h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .quiz-button {
            background: var(--primary-color);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            display: inline-block;
            margin-top: 15px;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .service-content p {
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Testimonials */
        .testimonials-section {
            background: #f8f8f8;
            padding: 60px 0;
        }
        
        .testimonials-section h2 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 40px;
            font-size: 36px;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            text-align: center;
            margin-bottom: 30px;
        }
        
        .testimonial-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .testimonial-website {
            font-size: 14px;
            color: #666;
        }
        
        /* Footer */
        .site-footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-widgets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-widget {
            text-align: center;
        }
        
        .footer-widget img {
            max-width: 200px;
            height: auto;
        }
        
        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: #ccc;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-wrap {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-menu {
                flex-direction: column;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .welcome-image {
                float: none;
                display: block;
                margin: 0 auto 20px;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header class="site-header">
        <div class="container">
            <div class="header-wrap">
                <a href="/" class="site-title">The Small Business Website Guy</a>
                
                <div class="header-search">
                    <form class="search-form" method="get" action="/">
                        <input type="search" name="s" placeholder="Search this website">
                        <button type="submit">Search</button>
                    </form>
                </div>
            </div>
        </div>
    </header>

    <!-- Navigation -->
    <nav class="nav-primary">
        <div class="container">
            <ul class="nav-menu">
                <li><a href="/">Home</a></li>
                <li><a href="/blog/">Blog</a></li>
                <li><a href="/about/">About</a></li>
                <li><a href="/consultation/">WordPress Help</a></li>
                <li>
                    <a href="#">Services</a>
                    <ul class="sub-menu">
                        <li><a href="/consultation/">WordPress Help</a></li>
                        <li><a href="/services/hacked-site-cleanup/">Hacked Site Cleanup</a></li>
                        <li><a href="/services/website-management-program/">Website Management Program</a></li>
                        <li><a href="/services/domain-registration/">Domain Registration</a></li>
                        <li><a href="/services/web-hosting/">Web Hosting</a></li>
                    </ul>
                </li>
                <li><a href="/testimonials/">Testimonials</a></li>
                <li><a href="/contact-us/">Contact Us</a></li>
            </ul>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="hero-section">
        <div class="container">
            <div class="hero-content">
                <h1>WordPress Website Management & Security Services</h1>
                <p>Professional WordPress maintenance, security monitoring, and technical support for small businesses. Over 35 years of IT experience keeping your website safe and running smoothly.</p>
                <a href="/services/website-management-program/" class="cta-button">Learn More About Our Services</a>
            </div>
        </div>
    </section>

    <!-- Main Content -->
    <main class="main-content">
        <div class="container">
            <div class="content-grid">
                <div class="welcome-section">
                    <h2>Welcome To Peace of Mind!</h2>
                    <img src="/wp-content/uploads/2010/11/sbwg-wp-security.jpg" alt="WordPress Security" width="320" height="213" class="welcome-image">
                    <p>The Small Business Website Guy has a mission to keep WordPress websites safe. We understand that you are likely too busy running your business to be spending time making sure your website is properly backed up, monitored for security issues and kept up to date with the latest software versions. These three elements are critical to protecting your website.</p>
                    <p>With over 35 years' experience in the IT field as a software developer and technical troubleshooter, we are prepared to assist you with all your WordPress needs.</p>
                </div>
                
                <div class="security-quiz">
                    <h3>How Secure Is Your WordPress Site?</h3>
                    <p>Not sure if your WordPress site is as secure as it can be? Take our quick free quiz to find out!</p>
                    <a href="/social_quiz/wordpress-security-assessment/" class="quiz-button">Take Security Quiz</a>
                    <p style="margin-top: 15px;">Or, if you prefer, <a href="/contact-us/" style="color: var(--primary-color);">contact us</a> for a free security assessment.</p>
                </div>
            </div>

            <!-- Services Grid -->
            <div class="services-grid">
                <div class="service-card">
                    <img src="/wp-content/uploads/2011/05/sbwg-businesswoman-300x200.jpg" alt="Website Management" class="service-image">
                    <div class="service-content">
                        <h3>Website Management Program</h3>
                        <p>As a small business website owner you have plenty to do just running your business. Website management is yet another set of tasks on your already full plate. The good news is that we specialize in...</p>
                        <a href="/services/website-management-program/" class="read-more">Read more...</a>
                    </div>
                </div>

                <div class="service-card">
                    <img src="/wp-content/uploads/2016/08/WP-lock-300.png" alt="Hacked Site Cleanup" class="service-image">
                    <div class="service-content">
                        <h3>Hacked Site Cleanup</h3>
                        <p>Has your site been hacked? We have cleaned up many compromised WordPress sites over the years. If your site has been corrupted, please contact us for...</p>
                        <a href="/services/hacked-site-cleanup/" class="read-more">Read more...</a>
                    </div>
                </div>

                <div class="service-card">
                    <img src="/wp-content/uploads/2011/05/sbwg-web-dev-300x200.jpg" alt="WordPress Assistance" class="service-image">
                    <div class="service-content">
                        <h3>WordPress Assistance</h3>
                        <p>Contact us to find out how we can help you make the most of your WordPress website. Yes, we can build a WordPress site for you. We can work from your design or connect you with a designer to bring...</p>
                        <a href="/services/wordpress-assistance/" class="read-more">Read more...</a>
                    </div>
                </div>
            </div>
        </div>
    </main>

    <!-- Testimonials Section -->
    <section class="testimonials-section">
        <div class="container">
            <h2>What Our Clients Say</h2>
            <div class="testimonial-slider">
                <div class="testimonial">
                    <img src="/wp-content/uploads/2016/01/LizNicklas-200-200x180-150x150.png" alt="Liz Nicklas" class="testimonial-image">
                    <div class="testimonial-content">
                        "When it came time to build my coaching website, I was determined to find someone who had great technical skills but would respect my vision. John Sawyer is that guy. I truly could not have imagined the process being better in any way."
                    </div>
                    <div class="testimonial-author">Liz Nicklas</div>
                    <div class="testimonial-website">coachliznicklas.com</div>
                </div>

                <div class="testimonial">
                    <img src="/wp-content/uploads/2016/01/gnagle_photo-150.jpg" alt="Gene Nagle" class="testimonial-image">
                    <div class="testimonial-content">
                        "John manages the web sites for two different organizations where I have management responsibility. From the first calls to discuss the requirements to the construction and the ongoing updates and maintenance of both sites, John has been great to work with."
                    </div>
                    <div class="testimonial-author">Gene Nagle</div>
                    <div class="testimonial-website">Storage Networking Industry Association</div>
                </div>

                <div class="testimonial">
                    <img src="/wp-content/uploads/2016/01/Andrea-Conway80x102-80x100.jpg" alt="Andrea Conway" class="testimonial-image">
                    <div class="testimonial-content">
                        "I've had several small business websites online since 1998 and have worked with many website professionals between now and then. John is at the top of my list. His tech skills are broad-ranging and outstanding."
                    </div>
                    <div class="testimonial-author">Andrea Conway</div>
                    <div class="testimonial-website">andreaconwaylawofattractioncoach.com</div>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="site-footer">
        <div class="container">
            <div class="footer-widgets">
                <div class="footer-widget">
                    <img src="/wp-content/uploads/2016/09/turbo200X200.png" alt="A2 Hosting" width="200" height="200">
                </div>
                <div class="footer-widget">
                    <img src="/wp-content/uploads/2016/09/facebook-01-240x200.jpg" alt="AWeber Email Marketing" width="240" height="200">
                </div>
                <div class="footer-widget">
                    <img src="/wp-content/uploads/2016/09/logo_dark_whtbg-200x200.png" alt="Formidable Forms" width="200" height="200">
                </div>
            </div>
            
            <div class="footer-bottom">
                <p>
                    <a href="/privacy-policy-use-of-cookies/">Privacy Policy</a> | 
                    <a href="/terms-of-use/">Terms of Use</a>
                </p>
                <p>Copyright © 2007-2023 by Chon Resources – All Rights Reserved Worldwide</p>
            </div>
        </div>
    </footer>
</body>
</html>