{% extends 'base.html.twig' %}
{% block title %}About – CogniEdu{% endblock %}
{% block body %}
<section class="bg-white">
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-9">
<h1 class="display-6 fw-semibold mb-3">About CogniEdu</h1>
<p class="text-muted mb-4">
Proprietary AI-based IP platform developed exclusively for universities and higher education institutions.
</p>
<div class="border rounded p-4 bg-light">
<div class="fs-5 lh-lg">
{{ description|nl2br }}
</div>
</div>
<div class="d-flex flex-wrap gap-3 mt-4">
<a href="{{ path('request_demo') }}" class="btn btn-primary">Request a Demo</a>
<a href="{{ path('contact') }}" class="btn btn-outline-secondary">Contact</a>
</div>
</div>
</div>
</div>
</section>
{% endblock %}