*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tahoma, sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
}

.container{
    width:90%;
    max-width:1000px;
    margin:auto;
    padding:30px 0;
}

.hero{
    background:#0d6efd;
    color:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    margin-bottom:30px;
}

.hero h1{
    margin-bottom:15px;
}

.hero p{
    line-height:1.8;
}

.faq-section,
.support-section{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.faq-section h2,
.support-section h2{
    margin-bottom:20px;
}

.faq-item{
    border-bottom:1px solid #eee;
}

.faq-question{
    width:100%;
    border:none;
    background:none;
    padding:18px;
    cursor:pointer;
    text-align:right;
    font-size:17px;
    font-weight:bold;
}

.faq-answer{
    display:none;
    padding:0 18px 18px;
    line-height:1.8;
    color:#666;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

input:focus,
textarea:focus{
    border-color:#0d6efd;
}

button[type="submit"]{
    width:100%;
    background:#0d6efd;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

button[type="submit"]:hover{
    opacity:.9;
}

@media(max-width:768px){

    .hero{
        padding:25px;
    }

    .hero h1{
        font-size:26px;
    }

}