<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ProSafe | Modern Risk Assessment Solutions</title>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap" rel="stylesheet">
<style>
:root {
--brand: #2563eb;
--dark: #0f172a;
--surface: #ffffff;
--glass: rgba(255, 255, 255, 0.8);
--text-main: #334155;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Plus Jakarta Sans', sans-serif;
color: var(--text-main);
line-height: 1.6;
background-color: #f8fafc;
}
/* Modern Navigation */
nav {
padding: 1.5rem 10%;
display: flex;
justify-content: space-between;
align-items: center;
background: var(--glass);
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
border-bottom: 1px solid rgba(0,0,0,0.05);
}
.logo { font-weight: 800; font-size: 1.5rem; color: var(--dark); letter-spacing: -1px; }
.logo span { color: var(--brand); }
/* Hero Section with Mesh Gradient */
.hero {
padding: 180px 10% 100px;
background: radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.05) 0px, transparent 50%);
text-align: center;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--dark); line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { max-width: 600px; margin: 0 auto 2.5rem; font-size: 1.1rem; color: #64748b; }
/* Buttons */
.cta-btn {
background: var(--brand);
color: white;
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
transition: 0.3s;
display: inline-block;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3); }
/* Service Cards - Improvement over Weebly's flat list */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
padding: 5rem 10%;
}
.s-card {
background: var(--surface);
padding: 3rem 2rem;
border-radius: 24px;
border: 1px solid rgba(0,0,0,0.05);
transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.s-card:hover { border-color: var(--brand); transform: scale(1.02); }
.icon-box {
width: 50px; height: 50px; background: rgba(37, 99, 235, 0.1);
border-radius: 12px; margin-bottom: 1.5rem; display: flex;
align-items: center; justify-content: center; color: var(--brand); font-weight: bold;
}
/* Specific Highlight Section for Churches/Offices */
.niche-section {
background: var(--dark);
color: white;
padding: 100px 10%;
border-radius: 40px;
margin: 0 2rem;
display: flex;
align-items: center;
gap: 4rem;
}
.niche-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
/* Contact Form Improvements */
.contact-container {
padding: 100px 10%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
}
.input-group { margin-bottom: 1.5rem; }
input, textarea {
width: 100%;
padding: 1rem;
border-radius: 12px;
border: 1px solid #e2e8f0;
background: #f1f5f9;
font-family: inherit;
}
@media (max-width: 900px) {
.niche-section, .contact-container { flex-direction: column; grid-template-columns: 1fr; }
.hero { padding: 140px 5% 60px; }
}
</style>
</head>
<body>
<nav>
<div class="logo">PRO<span>SAFE</span></div>
<div class="nav-links" style="display: none;"> <a href="#services">Services</a>
<a href="#contact" class="cta-btn" style="padding: 0.5rem 1.5rem; margin-left: 1rem;">Free Quote</a>
</div>
</nav>
<header class="hero">
<h1>Protect Your People.<br>Secure Your Mission.</h1>
<p>Specialized Health & Safety risk assessments for Churches, Charities, and Corporate Offices across the UK. Compliance made simple.</p>
<a href="#contact" class="cta-btn">Start Your Assessment</a>
</header>
<section class="services-grid" id="services">
<div class="s-card">
<div class="icon-box">01</div>
<h3>Fire Risk Assessments</h3>
<p>Comprehensive audits of escape routes, alarm systems, and signage to ensure full legal compliance.</p>
</div>
<div class="s-card">
<div class="icon-box">02</div>
<h3>Church Safety</h3>
<p>Navigating the unique challenges of historic buildings, volunteer staff, and public worship spaces.</p>
</div>
<div class="s-card">
<div class="icon-box">03</div>
<h3>Office Compliance</h3>
<p>From DSE assessments to general trip hazards, we keep your corporate environment productive and safe.</p>
</div>
</section>
<div class="niche-section">
<div class="niche-content">
<h2>Why risk it?</h2>
<p style="opacity: 0.8; margin-bottom: 2rem;">Health and Safety is an increasingly important part of everyday life. From the smallest chapel to the largest office block, our aim is simple: <strong>Prevent harm to people.</strong></p>
<ul style="list-style: none;">
<li>✅ Fully Certified Inspectors</li>
<li>✅ Detailed Digital Reports</li>
<li>✅ Ongoing Support & Advice</li>
</ul>
</div>
<div style="background: var(--brand); width: 100%; height: 300px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 3rem;">🛡️</div>
</div>
<section class="contact-container" id="contact">
<div>
<h2>Ready to secure your premises?</h2>
<p style="margin-top: 1rem;">Fill out the form and a safety expert will be in touch within 24 hours to discuss your specific requirements.</p>
<div style="margin-top: 2rem;">
<p><strong>Support:</strong> info@riskassessments.co.uk</p>
</div>
</div>
<form onsubmit="alert('Form submitted! (Demo only)'); return false;">
<div class="input-group">
<input type="text" placeholder="Organization Name" required>
</div>
<div class="input-group">
<input type="email" placeholder="Email Address" required>
</div>
<div class="input-group">
<textarea rows="4" placeholder="How can we help? (e.g. Fire Risk Assessment for a Church)"></textarea>
</div>
<button type="submit" class="cta-btn" style="border: none; cursor: pointer; width: 100%;">Get Free Quote</button>
</form>
</section>
<footer style="text-align: center; padding: 3rem; opacity: 0.6; font-size: 0.9rem;">
© 2026 ProSafe Risk Management. All Rights Reserved.
</footer>
</body>
</html>