<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Poop Scoop Pros – Pet Waste Removal</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f9f9f9;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px 10px;
text-align: center;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
}
.cta {
background: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
text-align: center;
}
.cta h2 {
color: #4CAF50;
}
.cta a {
display: inline-block;
margin-top: 10px;
background: #4CAF50;
color: white;
padding: 12px 20px;
text-decoration: none;
border-radius: 5px;
}
.services {
list-style: none;
padding: 0;
}
.services li {
background: #e8f5e9;
margin: 10px 0;
padding: 10px;
border-left: 5px solid #4CAF50;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px 10px;
}
img {
max-width: 100%;
border-radius: 8px;
}
</style>
</head>
<body>
<header>
<h1>Poop Scoop Pros</h1>
<p>Professional Pet Waste Removal in Suffolk County, NY</p>
</header>
<div class="container">
<img src="https://i.imgur.com/UoCZvJ8.png" alt="Pet Waste Removal" />
<div class="cta">
<h2>Call or Text: <br> <a href="tel:6313571002">631-357-1002</a></h2>
<p>Weekly · Bi-weekly · One-time cleanups</p>
<a href="sms:6313571002">Book Now by Text</a>
</div>
<h2>Why Choose Us?</h2>
<ul class="services">
<li>Affordable pricing starting at just $10</li>
<li>Reliable weekly or bi-weekly service</li>
<li>Dog-safe deodorizing spray included</li>
<li>Text confirmation after every visit</li>
<li>No contracts – cancel anytime</li>
</ul>
<div class="cta">
<h2>100% Satisfaction Guaranteed</h2>
<p>If you're not happy, you don’t pay.</p>
<a href="mailto:poopscooppersny@gmail.com">Email Us</a>
</div>
</div>
<footer>
<p>© 2025 Poop Scoop Pros | Serving Suffolk County, NY</p>
</footer>
</body>
</html>




