<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Example Business - Quality Services</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="example_business_style.css" />
</head>
<body>
    <!-- Banner Section -->
    <div id="banner"></div>

    <!-- Header Section -->
    <header id="header">
        <h1>Example Business LLC</h1>
        <p>Your go-to provider for top-quality services</p>
        <nav>
            <a href="#home" aria-label="Home">Home</a> | 
            <a href="#services" aria-label="Services">Services</a> | 
            <a href="#about" aria-label="About Us">About Us</a> | 
            <a href="#contact" aria-label="Contact">Contact</a>
        </nav>
    </header>

    <!-- Main Content Section -->
    <main id="content">
        <h2>About Us</h2>
        <p>We specialize in delivering exceptional solutions in our industry. Our team ensures that each client receives personalized, effective service.</p>
        
        <h3>Our Services</h3>
        <ul>
            <li>Consulting</li>
            <li>Custom Development</li>
            <li>Project Management</li>
            <li>Technical Support</li>
        </ul>
    </main>

    <!-- Sidebar Section -->
    <aside id="sidebar">
        <h2>Why Choose Us?</h2>
        <p>With expertise and dedication, we provide solutions tailored to your business needs. Our commitment to quality ensures your satisfaction.</p>
    </aside>

    <!-- Footer Section -->
    <footer id="footer">
        <h2>Contact Us</h2>
        <p>Address: 456 Business Park, Example City, EX 12345</p>
        <p>Phone: (555) 678-9101</p>
        <p>Email: <a href="mailto:info@example.com">info@example.com</a></p>
        <p>Connect with us on <a href="https://www.linkedin.com/in/example" target="_blank">LinkedIn</a></p>
    </footer>
</body>
</html>
