<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BEEMEN Beard Balm</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.hero {
background-color: #1a1a1a;
color: #fff;
text-align: center;
padding: 80px 20px;
}
.hero h1 {
font-size: 48px;
margin-bottom: 20px;
}
.hero p {
font-size: 18px;
margin-bottom: 30px;
}
.hero a {
background-color: #f4b400;
color: #1a1a1a;
padding: 15px 30px;
text-decoration: none;
font-weight: bold;
border-radius: 8px;
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 60px 20px;
gap: 40px;
}
.feature {
background-color: #fff;
border-radius: 12px;
padding: 30px;
max-width: 300px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.feature img {
max-width: 150px;
margin-bottom: 20px;
}
.feature h3 {
font-size: 22px;
margin-bottom: 10px;
}
.feature p {
font-size: 16px;
color: #666;
}
.cta {
text-align: center;
padding: 60px 20px;
background-color: #222;
color: #fff;
}
.cta a {
background-color: #f4b400;
color: #1a1a1a;
padding: 20px 40px;
text-decoration: none;
font-weight: bold;
font-size: 20px;
border-radius: 8px;
}
footer {
text-align: center;
padding: 40px 20px;
font-size: 14px;
color: #888;
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<h1>BEEMEN Beard Balm</h1>
<p>Shea butter, arganolie en bijenwas voor een zachte, verzorgde baard.</p>
<a href="#buy">Bestel Nu</a>
</section>
<!-- Features Section -->
<section class="features">
<div class="feature">
<img src="https://via.placeholder.com/150" alt="Voeding">
<h3>Voedt de baard</h3>
<p>Onze balm hydrateert en voedt het baardhaar van wortel tot punt.</p>
</div>
<div class="feature">
<img src="https://via.placeholder.com/150" alt="Styling">
<h3>Gemakkelijk te stylen</h3>
<p>Controleer je baard en houd hem zacht, soepel en netjes.</p>
</div>
<div class="feature">
<img src="https://via.placeholder.com/150" alt="Natuurlijk">
<h3>100% Natuurlijk</h3>
<p>Met shea butter, arganolie en bijenwas – puur, veilig en effectief.</p>
</div>
</section>
<!-- Call to Action -->
<section class="cta" id="buy">
<h2>Bestel vandaag nog jouw BEEMEN Beard Balm</h2>
<a href="https://beemenbalm.com">Koop Nu</a>
</section>
<footer>
© 2025 BEEMEN. Alle rechten voorbehouden.
</footer>
</body>
</html>