<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Débouchage Rapide | Service 7j/7</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #e8f4f9;
color: #1c4966;
text-align: center;
padding: 20px;
}
.container {
max-width: 600px;
margin: 0 auto;
background: #ffffff;
padding: 30px 20px;
border-radius: 16px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.logo-box {
background-color: #e2f2f8;
padding: 15px;
border-radius: 12px;
margin-bottom: 25px;
display: flex;
justify-content: center;
align-items: center;
}
.logo-box img {
max-width: 100%;
height: auto;
border-radius: 8px;
display: block;
}
.info-section {
margin: 30px 0;
}
.info-section h2 {
font-size: 22px;
color: #154565;
margin-bottom: 15px;
}
.services-list {
list-style: none;
padding: 0;
text-align: left;
display: inline-block;
}
.services-list li {
font-size: 16px;
margin-bottom: 10px;
font-weight: 500;
}
.call-btn {
display: block;
width: 100%;
background-color: #0076a8;
color: #ffffff;
text-decoration: none;
padding: 16px;
font-size: 20px;
font-weight: bold;
border-radius: 10px;
margin-top: 25px;
transition: 0.3s;
}
.call-btn:hover {
background-color: #00587d;
}
</style>
</head>
<body>
<div class="container">
<!-- Logo Area with Image -->
<div class="logo-box">
<img src="logo.png" alt="Débouchage Rapide Logo">
</div>
<!-- Content Area -->
<div class="info-section">
<h2>Service de Débouchage Professionnel</h2>
<ul class="services-list">
<li>✓ Débouchage WC et Toilettes</li>
<li>✓ Débouchage Évier et Lavabo</li>
<li>✓ Nettoyage Canalisations & Gouttières</li>
<li>✓ Interventions rapides 7j/7</li>
</ul>
</div>
<!-- Action Button -->
<a href="tel:+32470108184" class="call-btn">📞 Appeler Maintenant</a>
</div>
</body>
</html>