<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>About Us | PureH2OHome</title>
<style>
/* المتغيرات الأساسية لإدارة الألوان بسهولة */
:root {
–primary-gradient: linear-gradient(135deg, #00b4db, #0083b0);
–accent-color: #00d2ff;
–bg-light: #f8fbff;
–text-main: #2c3e50;
–text-muted: #546e7a;
–white: #ffffff;
–shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, sans-serif;
background-color: var(–bg-light);
color: var(–text-main);
line-height: 1.8;
margin: 0;
padding: 0;
}

.hero-section {
background: var(–primary-gradient);
color: var(–white);
padding: 80px 20px;
text-align: center;
clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.container {
max-width: 900px;
margin: -60px auto 60px;
padding: 0 20px;
}

.main-card {
background: var(–white);
padding: 40px;
border-radius: 20px;
box-shadow: var(–shadow);
}

h1 { font-size: 2.8rem; margin: 0; font-weight: 800; letter-spacing: -1px; }
h2 {
color: #0083b0;
font-size: 1.8rem;
margin-top: 40px;
display: flex;
align-items: center;
}
h2::after {
content: “”;
flex: 1;
height: 2px;
background: #e1f5fe;
margin-left: 15px;
}

.lead-text {
font-size: 1.25rem;
color: var(–text-muted);
text-align: center;
margin-bottom: 40px;
}

/* تنسيق الشبكة للميزات */
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin: 30px 0;
}

.feature-item {
background: #f0f7fa;
padding: 20px;
border-radius: 15px;
border-bottom: 3px solid transparent;
transition: all 0.3s ease;
}

.feature-item:hover {
transform: translateY(-5px);
border-bottom: 3px solid var(–accent-color);
background: #fff;
box-shadow: var(–shadow);
}

/* قائمة المعايير */
.criteria {
list-style: none;
padding: 0;
}

.criteria li {
background: #fff;
margin-bottom: 12px;
padding: 15px 20px;
border-radius: 10px;
border-left: 5px solid var(–accent-color);
box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* منطقة الاتصال */
.contact-cta {
background: var(–text-main);
color: var(–white);
padding: 40px;
border-radius: 20px;
text-align: center;
margin-top: 40px;
}

.btn-group {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-top: 25px;
}

.action-btn {
background: var(–accent-color);
color: var(–text-main);
padding: 12px 25px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
transition: transform 0.2s;
}

.action-btn:hover {
transform: scale(1.05);
filter: brightness(1.1);
}

.footer-note {
text-align: center;
font-size: 0.9rem;
color: #90a4ae;
margin-top: 40px;
padding-bottom: 40px;
}

/* Responsive */
@media (max-width: 600px) {
h1 { font-size: 2rem; }
.main-card { padding: 25px; }
}
</style>
</head>
<body>

<header class=”hero-section”>
<h1>PureH2OHome</h1>
<p style=”opacity: 0.9; font-size: 1.2rem;”>Pure Water. Pure Peace of Mind.</p>
</header>

<div class=”container”>
<div class=”main-card”>
<p class=”lead-text”>
Every glass of water you drink at home should be safe. Not “probably safe.”
<strong>Actually, verifiably safe.</strong>
</p>

<h2>Why We Built This Site</h2>
<p>We realized how overwhelming water quality info is. Manufacturers make bold claims, but families are left guessing. We cut through the noise with <strong>research-backed guidance</strong>—no chemistry degree required.</p>

<h2>What We Cover</h2>
<div class=”features-grid”>
<div class=”feature-item”>
<strong>🏠 Whole-House</strong>
<p style=”font-size: 0.9rem; margin-bottom: 0;”>Filtration for the entire home.</p>
</div>
<div class=”feature-item”>
<strong>🚰 Under-Sink RO</strong>
<p style=”font-size: 0.9rem; margin-bottom: 0;”>Deep purification systems.</p>
</div>
<div class=”feature-item”>
<strong>🧪 Water Testing</strong>
<p style=”font-size: 0.9rem; margin-bottom: 0;”>Decoding your lab results.</p>
</div>
</div>

<h2>How We Evaluate</h2>
<ul class=”criteria”>
<li><strong>Certifications First:</strong> We only highlight verified NSF/ANSI & WQA standards.</li>
<li><strong>Real-World Performance:</strong> We test flow rates and filter lifespan.</li>
<li><strong>Honest Trade-offs:</strong> No filter is perfect; we tell you what it <em>won’t</em> remove.</li>
</ul>

<h2>Our Promise</h2>
<p style=”border-right: 4px solid var(–accent-color); padding: 10px 20px; background: #f8fbff; font-style: italic;”>
“We are not affiliated with any brand. We don’t accept payments for reviews. Our goal is 100% honesty.”
</p>

<div class=”contact-cta”>
<h3>Ready for Cleaner Water?</h3>
<p>Get in touch: <strong>info@pureh2ohome.com</strong></p>
<div class=”btn-group”>
<a href=”#” class=”action-btn”>Filtration Guide</a>
<a href=”#” class=”action-btn”>Testing Guide</a>
</div>
</div>
</div>

<div class=”footer-note”>
&copy; 2026 PureH2OHome. Built for health, backed by science.
</div>
</div>

</body>
</html>