.faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq-question{
    padding:18px 20px;
    background:#fff;
    cursor:pointer;
    font-weight:700;
    color:#061f4f;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-answer{
    display:none;
    padding:20px;
    border-top:1px solid #eee;
    color:#555;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    display:block;
}

.hero{
    background:linear-gradient(135deg,#061f4f,#0b3478);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.hero i{
    font-size:60px;
    color:#f4b400;
    margin-bottom:15px;
}

.hero h1{
    font-size:42px;
    margin-bottom:10px;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

@media(max-width:768px){
    .hero h1{
        font-size:32px;
    }
	
	.hero{
    
    padding:40px 20px;
}
}

	  