/* ==========================================
   HELP & SUPPORT
========================================== */

body{

    margin:0;

    padding:0;

    font-family:Arial, Helvetica, sans-serif;

    background:#f5f5f5;

}

.app{

    max-width:700px;

    margin:auto;

    min-height:100vh;

    background:#f5f5f5;

}

/* ==========================================
   HEADER
========================================== */

.help-header{

    position:sticky;

    top:0;

    z-index:1000;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px;

    background:#16a34a;

    color:#fff;

    box-shadow:0 3px 10px rgba(0,0,0,.12);

}

.help-header a{

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:20px;

    border-radius:50%;

}

.help-header a:hover{

    background:rgba(255,255,255,.15);

}

.help-header h2{

    margin:0;

    flex:1;

    text-align:center;

    font-size:22px;

    font-weight:700;

}

/* ==========================================
   CARD
========================================== */

.help-card{

    background:#fff;

    margin:15px;

    padding:20px;

    border-radius:18px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

.help-card h3{

    margin:0 0 15px;

    color:#16a34a;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:20px;

}

.help-card p{

    margin:8px 0;

    color:#555;

    line-height:1.7;

}

/* ==========================================
   CONTACT
========================================== */

.contact-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:10px 0;

    color:#333;

    font-size:15px;

}

.contact-item i{

    color:#16a34a;

    width:20px;

}

/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-btn{

    display:block;

    text-align:center;

    margin-top:15px;

    padding:14px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.whatsapp-btn:hover{

    background:#1da851;

}

/* ==========================================
   FAQ
========================================== */

.faq{

    padding:15px 0;

    border-bottom:1px solid #eee;

}

.faq:last-child{

    border-bottom:none;

}

.faq h4{

    margin:0;

    color:#222;

    font-size:16px;

}

.faq p{

    margin-top:8px;

    color:#666;

    font-size:14px;

}

/* ==========================================
   FORM
========================================== */

#helpForm{

    display:flex;

    flex-direction:column;

    gap:15px;

}

#helpForm input,

#helpForm textarea{

    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:15px;

    box-sizing:border-box;

}

#helpForm textarea{

    resize:none;

}

#helpForm button{

    padding:14px;

    border:none;

    border-radius:12px;

    background:#16a34a;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

#helpForm button:hover{

    background:#15803d;

}

/* ==========================================
   FOOTER
========================================== */

.help-footer{

    text-align:center;

    padding:30px 20px;

    color:#777;

}

.help-footer p{

    margin:0;

    font-weight:bold;

    color:#16a34a;

}

.help-footer small{

    display:block;

    margin-top:8px;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .help-header{

        padding:15px;

    }

    .help-card{

        margin:12px;

        padding:18px;

    }

}