```css
.faq-hero{

    height:420px;

    background:url("../images/hero/grensfoto.png");

    background-size:cover;
    background-position:center;

}

.faq-overlay{

    height:100%;

    background:rgba(0,0,0,.45);

    display:flex;
    align-items:center;
    justify-content:center;

}

.faq-hero-content{

    text-align:center;
    color:white;

}

.faq-hero-content h1{

    font-size:58px;
    margin-bottom:20px;

}

.faq-hero-content p{

    font-size:24px;
    max-width:700px;
    margin:auto;

}

.faq-section{

    padding:80px 0;

}

.faq-title{

    text-align:center;

    color:#0D4EA5;

    font-size:42px;

    margin-bottom:50px;

}

.faq-list{

    max-width:1000px;
    margin:auto;

}

.faq-item{

    background:white;

    border-radius:18px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    border:none;

    background:white;

    cursor:pointer;

    padding:28px 30px;

    font-size:22px;

    font-weight:bold;

    color:#0D4EA5;

    text-align:left;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-question span{

    color:#FF7300;

    font-size:32px;

    line-height:1;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 30px 30px;

    font-size:18px;

    line-height:1.8;

    color:#444;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-question{

    background:#f7f9fd;

}

@media(max-width:768px){

    .faq-hero{

        height:320px;

    }

    .faq-hero-content h1{

        font-size:36px;

    }

    .faq-hero-content p{

        font-size:18px;

        padding:0 20px;

    }

    .faq-title{

        font-size:30px;

    }

    .faq-question{

        font-size:18px;

        padding:20px;

    }

    .faq-answer p{

        padding:0 20px 20px;

        font-size:16px;

    }

}
```
