{% extends 'base.html.twig' %}{% block title %}Privacy | CogniEdu{% endblock %}{% block body %}<section class="py-5"> <div class="container"> <div class="mb-5"> <h1 class="display-5 fw-bold">Privacy</h1> <p class="lead text-muted"> CogniEdu respects privacy and is designed to help institutions use data responsibly. This page explains how we approach privacy, data handling, and institutional control. </p> </div> <div class="row g-4"> <div class="col-lg-6"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h2 class="h5">Institutional Data Ownership</h2> <p class="text-muted mb-0"> Your institution retains ownership and control of its data. CogniEdu processes data only to provide the services you request and does not sell institutional data. </p> </div> </div> </div> <div class="col-lg-6"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h2 class="h5">Data Minimization</h2> <p class="text-muted mb-0"> We design integrations to collect only the information needed for analytics and forecasting. Data mapping and ingestion are structured to avoid unnecessary personal information. </p> </div> </div> </div> </div> <div class="row g-4 mt-1"> <div class="col-lg-4"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h3 class="h6">Purpose Limitation</h3> <ul class="text-muted small mb-0"> <li>Data is used to deliver agreed platform functionality</li> <li>No unrelated profiling or advertising use</li> <li>Clear boundaries between platform and marketing data</li> </ul> </div> </div> </div> <div class="col-lg-4"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h3 class="h6">Access & Controls</h3> <ul class="text-muted small mb-0"> <li>Role-based access aligned to job functions</li> <li>Administrative controls and oversight</li> <li>Auditability for access and changes</li> </ul> </div> </div> </div> <div class="col-lg-4"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h3 class="h6">Retention & Deletion</h3> <ul class="text-muted small mb-0"> <li>Retention aligned to institutional needs</li> <li>Configurable data lifecycle practices</li> <li>Deletion workflows available when required</li> </ul> </div> </div> </div> </div> <div class="row g-4 mt-1"> <div class="col-lg-6"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h2 class="h5">Security Supports Privacy</h2> <p class="text-muted"> Privacy depends on strong security. CogniEdu uses modern safeguards such as encryption, controlled access, and monitoring to reduce risk and protect sensitive data. </p> <a href="{{ path('security') }}" class="btn btn-outline-secondary btn-sm">View Security</a> </div> </div> </div> <div class="col-lg-6"> <div class="card h-100 shadow-sm"> <div class="card-body"> <h2 class="h5">Transparency</h2> <p class="text-muted mb-0"> We believe institutions should understand what data is used, why it’s used, and how it is protected. Privacy and governance expectations are addressed during onboarding and implementation. </p> </div> </div> </div> </div> <div class="mt-5 p-4 bg-light rounded-3 border"> <div class="row align-items-center g-3"> <div class="col-lg-8"> <h2 class="h4 mb-1">Have privacy questions?</h2> <p class="mb-0 text-muted"> We can walk through data handling, governance, and access controls during a platform demo. </p> </div> <div class="col-lg-4 text-lg-end"> {# Update route name if your demo route differs #} <a href="{{ path('request_demo') }}" class="btn btn-primary"> Request a Demo </a> </div> </div> </div> </div></section>{% endblock %}