המדע מאחורי באמפרס

{% style %}
.product-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

.hero-section {
text-align: center;
padding: 60px 20px;
background-color: #f8f8f8;
}

.hero-title {
font-size: 48px;
margin-bottom: 20px;
}

.hero-subtitle {
font-size: 24px;
color: #666;
margin-bottom: 40px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
padding: 40px 0;
}

.feature-item {
text-align: center;
padding: 20px;
}

.feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
}

.image-text-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
padding: 60px 0;
}

.section-image {
width: 100%;
height: auto;
}

.section-content {
padding: 20px;
}

.cta-section {
text-align: center;
padding: 60px 20px;
background-color: #000;
color: white;
}

.cta-button {
display: inline-block;
padding: 15px 30px;
background-color: #fff;
color: #000;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}

@media screen and (max-width: 768px) {
.features-grid {
grid-template-columns: 1fr;
}

.image-text-section {
grid-template-columns: 1fr;
}

.hero-title {
font-size: 36px;
}

.hero-subtitle {
font-size: 20px;
}
}
{% endstyle %}

<div class="product-container">
<!-- Hero Section -->
<section class="hero-section">
<h1 class="hero-title">Science &amp; Design</h1>
<p class="hero-subtitle">The Perfect Balance of Form and Function</p>
<img class="section-image" alt="Product Hero Image" src="hero-image.jpg">
</section>

<!-- Features Grid -->
<section class="features-grid">
<div class="feature-item">
<img class="feature-icon" alt="Feature 1" src="feature1-icon.png">
<h3>Feature 1</h3>
<p>Description of feature 1</p>
</div>
<div class="feature-item">
<img class="feature-icon" alt="Feature 2" src="feature2-icon.png">
<h3>Feature 2</h3>
<p>Description of feature 2</p>
</div>
<div class="feature-item">
<img class="feature-icon" alt="Feature 3" src="feature3-icon.png">
<h3>Feature 3</h3>
<p>Description of feature 3</p>
</div>
</section>

<!-- Image Text Section 1 -->
<section class="image-text-section">
<img class="section-image" alt="Section 1" src="section1-image.jpg">
<div class="section-content">
<h2>Section Title</h2>
<p>Detailed description of this section and its benefits.</p>
</div>
</section>

<!-- Image Text Section 2 (Reversed) -->
<section class="image-text-section">
<div class="section-content">
<h2>Section Title</h2>
<p>Detailed description of this section and its benefits.</p>
</div>
<img class="section-image" alt="Section 2" src="section2-image.jpg">
</section>

<!-- CTA Section -->
<section class="cta-section">
<h2>Ready to Experience the Difference?</h2>
<p>Join thousands of satisfied customers</p>
<a class="cta-button" href="/products/your-product">Shop Now</a>
</section>
</div>