<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Universal Clean | Gutter Cleaning Services</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
}
.hero {
background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
url(https://images.unsplash.com/photo-1665442348932-6e16d72fe163?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
background-size: cover;
background-position: center;
color: white;
text-align: center;
padding: 100px 20px;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 15px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 25px;
}
.btn {
display: inline-block;
background: #2e7d32;
color: white;
text-decoration: none;
padding: 14px 28px;
border-radius: 5px;
font-weight: bold;
}
.section {
max-width: 1100px;
margin: auto;
padding: 60px 20px;
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.card {
background: #f4f4f4;
padding: 25px;
border-radius: 8px;
}
.card h3 {
margin-bottom: 10px;
color: #2e7d32;
}
.cta {
background: #2e7d32;
color: white;
text-align: center;
padding: 60px 20px;
}
.cta h2 {
margin-bottom: 15px;
}
footer {
background: #222;
color: white;
text-align: center;
padding: 20px;
}
.phone {
font-size: 1.3rem;
font-weight: bold;
margin-top: 15px;
}
</style>
</head>
<body>
<section class="hero">
<h1>Universal Clean</h1>
<p>Professional Gutter Cleaning You Can Count On</p>
<a href="#contact" class="btn">Get a Free Quote</a>
</section>
<section class="section">
<h2>Protect Your Home</h2>
<p>
Clogged gutters can lead to water damage, roof issues, and costly repairs.
Universal Clean provides reliable gutter cleaning services to keep your
home protected year-round.
</p>
<div class="services">
<div class="card">
<h3>Gutter Cleaning</h3>
<p>Complete removal of leaves, debris, and buildup.</p>
</div>
<div class="card">
<h3>Downspout Flushing</h3>
<p>Ensure proper water flow away from your home.</p>
</div>
<div class="card">
<h3>Roof Debris Removal</h3>
<p>Clear branches and debris before they enter your gutters.</p>
</div>
</div>
</section>
<section class="cta" id="contact">
<h2>Get Your Free Estimate Today</h2>
<p>Fast, affordable, and professional gutter cleaning service.</p>
<div class="phone">
📞 (801)865-0857
</div>
<p style="margin-top:15px;">
</p>
</section>
<footer>
<p>© 2026 Universal Clean. All Rights Reserved.</p>
</footer>
</body>
</html>