/* Hero */
.hero{
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff;
    padding:90px 0;
}
.hero h1{
    font-weight:700;
}
.search-box{
    max-width:700px;
    margin:auto;
}
/* Categories */
.category{
    background:#fff;
    border-radius:15px;
    padding:20px;
    text-align:center;
    transition:.3s;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}
.category:hover{
    transform:translateY(-5px);
    background:#2563eb;
    color:#fff;
}
/* FAQ */
.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.accordion-button{
    font-weight:600;
    padding:22px;
}
.accordion-button:not(.collapsed){
    background:#2563eb;
    color:#fff;
}
.accordion-body{
    font-size:15px;
    color:#555;
    line-height:1.8;
}
/* Support */
.support{
    background:#0f172a;
    color:white;
    border-radius:25px;
    padding:60px;
}
