55 lines
4.0 KiB
PHP
55 lines
4.0 KiB
PHP
<?php include 'header.php'; ?>
|
|
|
|
<main style="background: #0b0e11; color: white; min-height: 100vh; padding: 100px 5%;">
|
|
<div style="max-width: 1200px; margin: 0 auto;">
|
|
<div style="text-align: center; margin-bottom: 80px;">
|
|
<h1 style="font-size: 3rem; font-weight: 800; margin-bottom: 30px;">How can we help you?</h1>
|
|
<div style="max-width: 600px; margin: 0 auto; position: relative;">
|
|
<i class="fas fa-search" style="position: absolute; left: 20px; top: 22px; color: #848e9c;"></i>
|
|
<input type="text" placeholder="Search for articles..." style="width: 100%; padding: 20px 20px 20px 55px; background: #161a1e; border: 1px solid #2b3139; border-radius: 16px; color: white; font-size: 1.1rem; outline: none; box-shadow: 0 10px 30px rgba(0,0,0,0.3);">
|
|
</div>
|
|
</div>
|
|
|
|
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px;">
|
|
<div style="background: #161a1e; padding: 40px; border-radius: 24px; border: 1px solid #2b3139; cursor: pointer; transition: 0.3s;" onmouseover="this.style.borderColor='var(--primary-color)'" onmouseout="this.style.borderColor='#2b3139'">
|
|
<i class="fas fa-user-plus" style="font-size: 2rem; color: #4facfe; margin-bottom: 20px;"></i>
|
|
<h3 style="margin-bottom: 15px;">Getting Started</h3>
|
|
<ul style="list-style: none; padding: 0; color: var(--text-muted); line-height: 2;">
|
|
<li>How to create an account?</li>
|
|
<li>Identity Verification (KYC) guide</li>
|
|
<li>Securing your account (2FA)</li>
|
|
</ul>
|
|
</div>
|
|
<div style="background: #161a1e; padding: 40px; border-radius: 24px; border: 1px solid #2b3139; cursor: pointer; transition: 0.3s;" onmouseover="this.style.borderColor='var(--primary-color)'" onmouseout="this.style.borderColor='#2b3139'">
|
|
<i class="fas fa-wallet" style="font-size: 2rem; color: #00f2fe; margin-bottom: 20px;"></i>
|
|
<h3 style="margin-bottom: 15px;">Deposits & Withdrawals</h3>
|
|
<ul style="list-style: none; padding: 0; color: var(--text-muted); line-height: 2;">
|
|
<li>How to deposit crypto?</li>
|
|
<li>Withdrawal limits and fees</li>
|
|
<li>Fiat deposit instructions</li>
|
|
</ul>
|
|
</div>
|
|
<div style="background: #161a1e; padding: 40px; border-radius: 24px; border: 1px solid #2b3139; cursor: pointer; transition: 0.3s;" onmouseover="this.style.borderColor='var(--primary-color)'" onmouseout="this.style.borderColor='#2b3139'">
|
|
<i class="fas fa-chart-line" style="font-size: 2rem; color: #f0b90b; margin-bottom: 20px;"></i>
|
|
<h3 style="margin-bottom: 15px;">Trading & Markets</h3>
|
|
<ul style="list-style: none; padding: 0; color: var(--text-muted); line-height: 2;">
|
|
<li>Spot trading vs Futures</li>
|
|
<li>Understanding order types</li>
|
|
<li>Trading fees explained</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div style="background: linear-gradient(135deg, #161a1e 0%, #0b0e11 100%); padding: 60px; border-radius: 32px; border: 1px solid #2b3139; text-align: center;">
|
|
<h2 style="margin-bottom: 20px;">Still need help?</h2>
|
|
<p style="color: var(--text-muted); margin-bottom: 30px;">Our customer support team is available 24/7 to assist you.</p>
|
|
<div style="display: flex; justify-content: center; gap: 20px;">
|
|
<a href="#" onclick="toggleCSChat(); return false;" class="btn-primary" style="padding: 15px 40px; border-radius: 12px; font-weight: bold;">Live Chat</a>
|
|
<a href="request.php" style="padding: 15px 40px; border-radius: 12px; font-weight: bold; background: #2b3139; color: white; text-decoration: none; border: 1px solid #3c444d;">Submit a Ticket</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php include 'footer.php'; ?>
|