<!-- wp:code -->
<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
  &lt;meta charset="UTF-8"&gt;
  &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;  &lt;title&gt;Moving Objects Worldwide - Freight Forwarding Service&lt;/title&gt;
  &lt;style&gt;
    /* Base styling */
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      background: #f7f7f7;
      color: #333;
      margin: 0;
      padding: 0;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }
    header {
      background: #004f9f;
      color: #fff;
      padding: 20px 0;
    }
    header h1 {
      margin: 0;
      font-size: 2.5em;
    }
    nav ul {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
    }
    nav ul li {
      display: inline;
      margin-right: 15px;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }
    .hero {
      background: url('your-hero-image.jpg') no-repeat center center/cover;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero h2 {
      color: #fff;
      font-size: 3em;
      text-align: center;
      background: rgba(0, 0, 0, 0.5);
      padding: 10px 20px;
      border-radius: 5px;
    }
    section {
      background: #fff;
      margin: 20px 0;
      padding: 40px 20px;
      border-radius: 5px;
    }
    section h2 {
      color: #004f9f;
      margin-bottom: 20px;
    }
    .service-item {
      margin-bottom: 20px;
    }
    .service-item h3 {
      margin-bottom: 10px;
      color: #333;
    }
    form div {
      margin-bottom: 15px;
    }
    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    input&#91;type="text"],
    input&#91;type="email"],
    input&#91;type="tel"],
    select,
    textarea,
    input&#91;type="file"] {
      width: 100%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
    }
    button {
      background: #004f9f;
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    button:hover {
      background: #003f7f;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #333;
      color: #fff;
      margin-top: 20px;
    }
  &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;header&gt;
    &lt;div class="container"&gt;
      &lt;h1&gt;Moving Objects Worldwide&lt;/h1&gt;
      &lt;nav&gt;
        &lt;ul&gt;
          &lt;li&gt;&lt;a href="#services"&gt;Services&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#about"&gt;About&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#booking"&gt;Booking&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;&lt;a href="#contact"&gt;Contact&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
      &lt;/nav&gt;
    &lt;/div&gt;
  &lt;/header&gt;
  
  &lt;section class="hero"&gt;
    &lt;div class="container"&gt;
      &lt;h2&gt;Global Freight Forwarding &amp; Logistics&lt;/h2&gt;
    &lt;/div&gt;
  &lt;/section&gt;
  
  &lt;section id="services" class="container"&gt;
    &lt;h2&gt;Our Services&lt;/h2&gt;
    &lt;div class="service-item"&gt;
      &lt;h3&gt;Air Freight&lt;/h3&gt;
      &lt;p&gt;Experience rapid, reliable air freight shipping to any destination worldwide. We manage every detail of your shipment so that your cargo arrives safely, swiftly, and on schedule.&lt;/p&gt;
    &lt;/div&gt;
    &lt;div class="service-item"&gt;
      &lt;h3&gt;Ocean Freight&lt;/h3&gt;
      &lt;p&gt;Our ocean freight solutions offer efficient, cost-effective shipping options for large volumes. Whether you need Less Than Container Load (LCL) or Full Container Load (FCL), our complete door-to-door service has you covered.&lt;/p&gt;
    &lt;/div&gt;
    &lt;div class="service-item"&gt;
      &lt;h3&gt;Household Goods&lt;/h3&gt;
      &lt;p&gt;Moving homes or offices internationally? Our specialized household goods service ensures a seamless and stress-free transition, with careful handling and close coordination every step of the way.&lt;/p&gt;
    &lt;/div&gt;
    &lt;div class="service-item"&gt;
      &lt;h3&gt;All Routes Open&lt;/h3&gt;
      &lt;p&gt;No matter your destination, our extensive global network ensures that your freight reaches any corner of the globe. Every path is clear for your business.&lt;/p&gt;
    &lt;/div&gt;
  &lt;/section&gt;
  
  &lt;section id="about" class="container"&gt;
    &lt;h2&gt;About Us&lt;/h2&gt;
    &lt;p&gt;
      At Moving Objects Worldwide, we deliver more than just a service—we deliver a commitment to your global success. Our experienced logistics professionals, combined with a strategic worldwide network, guarantee that your cargo, whether household goods or business shipments, arrives safely and efficiently. This is our promise.
    &lt;/p&gt;
  &lt;/section&gt;
  
  &lt;section id="booking" class="container"&gt;
    &lt;h2&gt;Booking Request&lt;/h2&gt;
    &lt;p&gt;Submit your booking request online. Fill in your shipment details below, and if needed, include your EDI information for seamless electronic data exchange.&lt;/p&gt;
    &lt;form action="/submit-booking" method="POST" enctype="multipart/form-data"&gt;
      &lt;div&gt;
        &lt;label for="name"&gt;Full Name:&lt;/label&gt;
        &lt;input type="text" id="name" name="name" required&gt;
      &lt;/div&gt;
      
      &lt;div&gt;
        &lt;label for="email"&gt;Email Address:&lt;/label&gt;
        &lt;input type="email" id="email" name="email" required&gt;
      &lt;/div&gt;
      
      &lt;div&gt;
        &lt;label for="phone"&gt;Phone Number:&lt;/label&gt;
        &lt;input type="tel" id="phone" name="phone" required&gt;
      &lt;/div&gt;
      
      &lt;div&gt;
        &lt;label for="service-type"&gt;Service Type:&lt;/label&gt;
        &lt;select id="service-type" name="service_type" required&gt;
          &lt;option value=""&gt;--Choose a Service--&lt;/option&gt;
          &lt;option value="air-freight"&gt;Air Freight&lt;/option&gt;
          &lt;option value="ocean-freight"&gt;Ocean Freight&lt;/option&gt;
          &lt;option value="household-goods"&gt;Household Goods&lt;/option&gt;
        &lt;/select&gt;
      &lt;/div&gt;
      
      &lt;div&gt;
        &lt;label&gt;
          &lt;input type="checkbox" id="edi-capable" name="edi_capable"&gt; Include EDI Integration
        &lt;/label&gt;
      &lt;/div&gt;
      
      &lt;div id="edi-info" style="display:none;"&gt;
        &lt;div&gt;
          &lt;label for="edi-reference"&gt;EDI Reference Number:&lt;/label&gt;
          &lt;input type="text" id="edi-reference" name="edi_reference"&gt;
        &lt;/div&gt;
        &lt;div&gt;
          &lt;label for="edi-file"&gt;Upload EDI File (if applicable):&lt;/label&gt;
          &lt;input type="file" id="edi-file" name="edi_file"&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      
      &lt;div&gt;
        &lt;label for="shipment-details"&gt;Shipment Details:&lt;/label&gt;
        &lt;textarea id="shipment-details" name="shipment_details" rows="5" required&gt;&lt;/textarea&gt;
      &lt;/div&gt;
      
      &lt;div&gt;
        &lt;button type="submit"&gt;Submit Booking Request&lt;/button&gt;
      &lt;/div&gt;
    &lt;/form&gt;
    &lt;script&gt;
      // Toggle the EDI fields based on the checkbox
      document.getElementById('edi-capable').addEventListener('change', function(){
        var ediInfo = document.getElementById('edi-info');
        ediInfo.style.display = this.checked ? 'block' : 'none';
      });
    &lt;/script&gt;
  &lt;/section&gt;
  
  &lt;section id="contact" class="container"&gt;
    &lt;h2&gt;Contact Us&lt;/h2&gt;
    &lt;p&gt;If you have questions or need a custom quote, our team is here to support you.&lt;/p&gt;
    &lt;p&gt;Email: &lt;a href="mailto:info@movingobjectsworldwide.com"&gt;info@movingobjectsworldwide.com&lt;/a&gt;&lt;/p&gt;
    &lt;p&gt;Phone: +1 (404) 797-7779 &lt;/p&gt;
  &lt;/section&gt;
  
  &lt;footer&gt;
    &lt;p&gt;&amp;copy; 2025 Moving Objects Worldwide LLC. All Rights Reserved.&lt;/p&gt;
  &lt;/footer&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
<!-- /wp:code -->