<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Contact Us | AR Prime Market</title>
<meta name="description" content="Get in touch with AR Prime Market – customer service and support contact information." />
<meta name="keywords" content="contact us, customer service, AR Prime Market, support" />
<meta name="author" content="AR Prime Market Team" />
<style>
body { font-family: Arial, sans-serif; background: #f9f9f9; padding: 20px; line-height: 1.6; }
h1 { color: #333; }
h2 { color: #555; }
.container { max-width: 800px; margin: auto; background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
form input, form textarea { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }
form input[type=submit] { background: #007bff; color: #fff; cursor: pointer; border: none; }
.contact-info { margin-bottom: 30px; }
</style>
</head>
<body>
<div class="container">
<h1>Contact Us</h1>
<div class="contact-info">
<p><strong>Phone:</strong> +8809638020458</p>
</div>
<p>You can contact us through the form below:</p>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required />
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<input type="submit" value="Send" />
</form>
</div>
</body>
</html>