<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Bright Shine Auto Spa - Home</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <div class="container">
            <h1>Bright Shine Auto Spa</h1>
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="services.html">Services</a></li>
                    <li><a href="about.html">About Us</a></li>
                    <li><a href="contact.html">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <section class="hero">
        <div class="container">
            <h2>Welcome to Bright Shine Auto Spa</h2>
            <p>Your car deserves the best care. We provide top-notch auto detailing services.</p>
            <a href="services.html" class="btn">Our Services</a>
        </div>
    </section>

    <footer>
        <div class="container">
            <p>&copy; 2023 Bright Shine Auto Spa. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>