{% extends 'base.html.twig' %}{% block title %}Leistungsübersicht{% endblock %}{% block body %}{% include "Elements/nav.html.twig" %}<div class="hero page-inner overlay" style="background-image: url('{{ asset('images/hero_bg_1.jpg') }}'); height: 400px; min-height: 400px;"><div class="container"><div class="row justify-content-center align-items-center" style="height: 400px;"><div class="col-lg-9 text-center mt-5"><h1 class="heading" data-aos="fade-up">Leistungsübersicht</h1><p class="text-white">Entdecken Sie unser breites Spektrum an Dienstleistungen rund um Ihre Immobilie.</p></div></div></div></div><div class="section"><div class="container">{% if groupedServices is empty %}<div class="row"><div class="col-12 text-center"><p>Aktuell sind keine Leistungen hinterlegt.</p></div></div>{% endif %}{% for category, subCategories in groupedServices %}<div class="row mb-5" data-aos="fade-up"><div class="col-12"><h2 class="text-primary border-bottom pb-2">{{ category }}</h2></div>{% for subCategory, services in subCategories %}<div class="col-12 mt-4">{% if subCategory != '_none' %}<h3 class="h4 text-secondary">{{ subCategory }}</h3>{% endif %}<div class="row"><ul class="list-unstyled col-12 ms-3">{% for service in services %}<li class="mb-2"><span class="icon-check text-primary me-2"></span>{{ service.title }}{% if service.description %}<p class="text-muted small ms-4">{{ service.description|nl2br }}</p>{% endif %}</li>{% endfor %}</ul></div></div>{% endfor %}</div>{% endfor %}</div></div>{% include "Elements/footer.html.twig" %}{% endblock %}