<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="EC Expert Couvreur Charente - Spécialiste en couverture, zinguerie et démoussage de toiture depuis 1999.">
    <title>EC Expert Couvreur Charente</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
        }
        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 1em 0;
            position: relative;
        }
        header h1 {
            margin: 0;
        }
        header p {
            position: absolute;
            right: 10px;
            top: 10px;
            margin: 0;
        }
        nav {
            background-color: #444;
            width: 200px;
            padding: 1em;
            position: fixed;
            height: 100%;
            box-shadow: 2px 0 5px rgba(0,0,0,0.1);
        }
        nav a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 0.5em;
            margin-bottom: 0.5em;
            background-color: #666;
            border-radius: 5px;
            text-align: center;
        }
        nav a:hover {
            background-color: #ff6600;
        }
        main {
            margin-left: 220px;
            padding: 1em;
            flex-grow: 1;
        }
        .hero {
            width: 100%;
            height: 300px;
            background: url('your-image.jpg') center center / cover no-repeat;
        }
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 1em 0;
            position: absolute;
            width: 100%;
            bottom: 0;
        }
        .content {
            margin: 20px 0;
        }
    </style>
</head>
<body>
    <header>
        <h1>EC Expert Couvreur Charente</h1>
        <p>05 16 29 09 78</p>
        <nav>
            <a href="index.html">Accueil</a>
            <a href="services.html">Services</a>
            <a href="societe.html">Ma Société</a>
            <a href="avantages.html">Mes Avantages</a>
            <a href="contact.html">Contact</a>
        </nav>
    </header>
    <main>
        <div class="hero"></div>
        <div class="content">
            <!-- Page-specific content goes here -->
        </div>
    </main>
    <footer>
        <p>EC Expert Couvreur Charente - 1 Rue des Arcades, 16710 Saint-Yrieix-sur-Charente - 05 16 29 09 78 - devis@ecexpertcouvreur.ovh</p>
    </footer>
</body>
</html>
