<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Finestra Services</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f5f5f5;
color: #333;
}
header {
background: #1a3c6e;
color: white;
padding: 60px 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
margin-top: 10px;
font-size: 1.2rem;
}
section {
padding: 40px 20px;
max-width: 900px;
margin: auto;
}
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.card {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
footer {
background: #1a3c6e;
color: white;
text-align: center;
padding: 20px;
margin-top: 40px;
}
a {
color: #1a3c6e;
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<h1>Finestra Services</h1>
<p>Professional, reliable, and affordable property services</p>
</header>
<section>
<h2>About Us</h2>
<p>
Finestra Services provides high‑quality sash window maintenance, repairs, and improvement
solutions.
</p>
</section>
<section>
<h2>Our Services</h2>
<div class="services">
<div class="card">
<h3>Maintenance</h3>
<p>Regular upkeep and preventative care to keep your property in top condition.</p>
</div>
<div class="card">
<h3>Repairs</h3>
<p>Fast, effective solutions for common household and commercial issues.</p>
</div>
<div class="card">
<h3>Improvements</h3>
<p>Upgrades, installations, and enhancements tailored to your needs.</p>
</div>
</div>
</section>
<section>
<h2>Contact</h2>
<p>
Email: <a href="mailto:info@finestraservices.com">info@finestraservices.com</a><br>
Phone: 01234 567890
</p>
</section>
<footer>
© 2026 Finestra Services — All rights reserved
</footer>
</body>
</html>