Contact Us.

<div class="contact-form-container">
  <h1>Get Started Today</h1>
  <p>Ready to begin your journey with Avisapay? Fill out the form below and we'll get back to you shortly.</p>
  
  <form action="/contact#contact_form" method="post" id="contact_form" accept-charset="UTF-8">
    <input type="hidden" name="form_type" value="contact">
    <input type="hidden" name="utf8" value="✓">
    
    <div class="form-group">
      <label for="ContactFormName">Name *</label>
      <input type="text" id="ContactFormName" name="contact[name]" required>
    </div>
    
    <div class="form-group">
      <label for="ContactFormEmail">Email *</label>
      <input type="email" id="ContactFormEmail" name="contact[email]" required>
    </div>
    
    <div class="form-group">
      <label for="ContactFormPhone">Phone</label>
      <input type="tel" id="ContactFormPhone" name="contact[phone]">
    </div>
    
    <div class="form-group">
      <label for="ContactFormMessage">How can we help you? *</label>
      <textarea id="ContactFormMessage" name="contact[body]" rows="5" required></textarea>
    </div>
    
    <div class="form-group">
      <button type="submit" class="btn btn-primary">Send Message</button>
    </div>
  </form>
</div>

<style>
.contact-form-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.contact-form-container h1 {
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
}

.contact-form-container p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.btn {
  background-color: #007cba;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}

.btn:hover {
  background-color: #005a87;
}
</style>