2025-11-05 22:22:31 +04:00
|
|
|
<section id="faq" class="faq">
|
|
|
|
|
<div class="section-container">
|
2026-07-06 08:14:52 +04:00
|
|
|
<h2>{{ t.faq.section_title }} <span class="accent-text">{{ t.faq.section_title_accent }}</span></h2>
|
2025-11-05 22:22:31 +04:00
|
|
|
<p class="section-subtitle">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.faq.section_subtitle }}
|
2025-11-05 22:22:31 +04:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div class="faq-container">
|
2026-07-06 08:14:52 +04:00
|
|
|
{% for item in t.faq.items %}
|
2025-11-05 22:22:31 +04:00
|
|
|
<div class="faq-item">
|
2026-07-07 23:56:56 +04:00
|
|
|
<button class="faq-question">
|
2025-11-05 22:22:31 +04:00
|
|
|
<span>{{ item.question }}</span>
|
|
|
|
|
<span class="faq-icon">+</span>
|
|
|
|
|
</button>
|
|
|
|
|
<div class="faq-answer">
|
|
|
|
|
<p>{{ item.answer }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="faq-footer">
|
2026-07-06 01:23:33 +04:00
|
|
|
<p>
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.faq.footer_text }}
|
2025-11-05 22:22:31 +04:00
|
|
|
</p>
|
|
|
|
|
<a href="#contact" class="btn btn-secondary">
|
2026-07-06 08:14:52 +04:00
|
|
|
{{ t.faq.footer_cta }} →
|
2025-11-05 22:22:31 +04:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|