.title-banner {
    background-image: url('../images/faq-banner.jpeg');
}

.faq-list {
    margin-top: 1rem;
}
.faq-list > li {
    counter-increment: item;
    margin-bottom: 2rem;
}
.faq-list > li::before {
    margin: 0.5rem 1rem 0 0;
    content: counter(item);
    background: lightblue;
    border-radius: 100%;
    color: white;
    text-align: center;
    display: inline-block;
    float: left;
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: bold;
}
.faq-list > li h3 {
    margin-bottom: 3.5rem;
}
.faq-list > li h3::after {
    clear: both;
}