    body {
        counter-reset: question-counter;
    }
  
    p {
        margin-top: 1rem;
    }
    .section {
        padding: 1rem 1rem;
    }

    .image-placeholder {
        background-color: #f5f5f5;
        width: 90%;
        /* height: 300px; */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b5b5b5;
        font-size: 1.5rem;
    }
    .hero.is-fullheight {
        background-image: url('images/hero-background.jpg');
        background-size: cover;
        background-position: center;
    }
    .hero .title, .hero .subtitle {
        color: black;
        /* text-shadow: 1px 1px 2px #000; */
    }
    /* Avoid page breaks inside the most common attributes, especially for exports (i.e. PDF) */
    td, h1, h2, h3, h4, h5, p, ul, ol, li {
        page-break-inside: avoid; 
    }

    ol, ul, li {
        margin-left: 1rem;
    }

    ul li {
        list-style-type: disc;
        margin-left: 1rem;
    }

    h3 {
        background-color: var(--bulma-primary-light);
        color: var(--bulma-primary-light-invert);
        font-size: 1.5rem;
        font-weight: bold;
        margin-top: 1rem;
        padding: 0.5rem;
    }

    .column {
        margin-bottom: 1rem;
    }

    .tppQuestion {
        font-weight: bold;
    }

    /* FAQ Counters */
    .tppQuestion::before {
        counter-increment: question-counter;
        content: counter(question-counter) ". ";
    }

    .faqBody {
        counter-reset: question-counter;
    }

    .tppAnswer {
        font-weight: bold;
    }
