{% extends "information-page.njk" %}
{% from "govuk/components/button/macro.njk" import govukButton %}

{% set title = 'Cost of this licence' %}

{% block pageContent %}
  <p class="govuk-body">The cost of this licence typically ranges from £300 to £800.</p>

  <p class="govuk-body">More complex licences cost more. Things that can increase the cost of a licence include:</p>

  <ul class="govuk-list govuk-list--bullet">
      <li>if the development affects a protected site</li>
      <li>if badgers are present</li>
      <li>greater impact on badgers, such as disconnecting territories, affecting more setts, and proposals to close setts</li>
      <li>new or more complex methods being used</li>
      <li>incomplete, inaccurate or unnecessary information in the application</li>
      <li>poor quality surveys</li>
      <li>issues with ecologist experience</li>
      <li>phased or multi-plot developments</li>
      <li>planning permission is not fully in place</li>
  </ul>

  <p class="govuk-body">The cost will be more if you need to make a change in your application once you have submitted it.</p>  

  {{ govukButton({
    text: 'Continue',
    name: 'continue',
    attributes: { id: 'continue' },
    preventDoubleClick: true
  }) }}
  
{% endblock %}
