Prime Location
All properties in the heart of Kampinos National Park, surrounded by pristine nature.
Complete section wrapper that combines Badge Element, Typography Element, and Experience Card pattern to showcase key features and benefits. Follows composition-first design system principles—no custom element styling.
Full "Why Choose Us" section with badge label, centered header with intro text, and four feature cards in responsive grid.
We're not just offering accommodation – we're providing unforgettable nature experiences.
All properties in the heart of Kampinos National Park, surrounded by pristine nature.
Safe, spacious properties with amenities designed for families with children of all ages.
Every property features dedicated BBQ areas and outdoor spaces for memorable gatherings.
Easy online booking with secure payments and flexible cancellation policies.
Complete section markup ready to copy. Composes Badge, Typography, and Experience Card patterns.
<section class="why-choose-us-section">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- Header Section -->
<div class="text-center mb-12 lg:mb-16">
<span class="badge badge--primary mb-4">Why Choose Us</span>
<h2 class="t-h2 mb-4">Experience the Difference</h2>
<p class="t-lead t-muted max-w-2xl mx-auto" style="line-height: 1.4;">
We're not just offering accommodation – we're providing unforgettable nature experiences.
</p>
</div>
<!-- Feature Cards Grid -->
<div class="experience-cards-grid">
<article class="experience-card">
<div class="experience-card__icon" aria-hidden="true">🌲</div>
<h3 class="t-h5" style="margin-bottom: var(--spacing-2);">Prime Location</h3>
<p class="t-body t-muted">
All properties in the heart of Kampinos National Park, surrounded by pristine nature.
</p>
</article>
<article class="experience-card">
<div class="experience-card__icon" aria-hidden="true">👨👩👧👦</div>
<h3 class="t-h5" style="margin-bottom: var(--spacing-2);">Family Friendly</h3>
<p class="t-body t-muted">
Safe, spacious properties with amenities designed for families with children of all ages.
</p>
</article>
<article class="experience-card">
<div class="experience-card__icon" aria-hidden="true">🔥</div>
<h3 class="t-h5" style="margin-bottom: var(--spacing-2);">BBQ & Outdoor</h3>
<p class="t-body t-muted">
Every property features dedicated BBQ areas and outdoor spaces for memorable gatherings.
</p>
</article>
<article class="experience-card">
<div class="experience-card__icon" aria-hidden="true">🛡️</div>
<h3 class="t-h5" style="margin-bottom: var(--spacing-2);">Secure Booking</h3>
<p class="t-body t-muted">
Easy online booking with secure payments and flexible cancellation policies.
</p>
</article>
</div>
</div>
</section>
.badge .badge--primary)
for section label
.t-h2,
.t-lead) for heading and intro
.experience-card) for
feature cards
max-w-2xl mx-auto
aria-hidden="true" to decorative emoji icons
<section> with proper heading
hierarchy
.experience-cards-grid
This section wrapper composes three existing Design System patterns with minimal structural styling.
Section label using .badge .badge--primary from Badge
Element module.
Heading (.t-h2) and intro text (.t-lead)
using Typography Element classes.
Four feature cards using .experience-card pattern in
.experience-cards-grid wrapper.
Minimal .why-choose-us-section class provides
vertical padding and background color only.
Styling: 5rem vertical padding (7rem on large screens), white background (light mode), darker gray (dark mode).