<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>worldtotable.com Is For Sale</title>
    <link rel="icon" type="image/png" sizes="32x32" href="bg_sale.png">
    <link rel="icon" type="image/png" sizes="16x16" href="bg_sale.png">
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
    <style>
        /* CSS styles from the second file go here */
        body {
            font-family: 'Poppins', Arial, sans-serif;
            background-color: #0a192f;
            color: #ffffff;
            margin: 0;
            padding: 15px 0 0;
            font-size: 16px;
        }
        .container {
            width: 100%;
            max-width: 800px;
            margin: 5px auto 55px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        h1 {
            font-size: 1.2em;
            margin-bottom: 0;
            margin-top: 0;
            font-weight: 300;
            text-align: center;
        }
        h2 {
            margin-bottom: 0;
            margin-top: 0;
        }
        .card p {
            margin-bottom: 25px;
            margin-top: 10px;
        }
        .domain-name {
            font-size: 2.1em;
            font-weight: 700;
            margin-top: 0px;
            margin-bottom: 5px;
        }
        .for-sale {
            font-size: 2.1em;
            font-weight: 300;
            margin-left: 5px;
            margin-top: 0;
        }
        .card {
            background-color: #ffffff;
            color: #000000;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border: none;
            border-radius: 5px;
            width: 100%;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 15px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        .button svg {
            margin-right: 10px;
        }
        .button.primary {
            background-color: #1e3a8a;
            color: #ffffff;
        }
        .button.primary:hover {
            background-color: #2563eb;
        }
        .button.secondary {
            background-color: #3b82f6;
            color: #ffffff;
        }
        .button.secondary:hover {
            background-color: #60a5fa;
        }
        .benefits {
            margin-top: 20px;
            font-size: 0.9em;
        }
        .benefits p::before {
            content: "✓";
            color: #4ade80;
            margin-right: 5px;
        }
        .white-container {
            background-color: #ffffff;
            color: #000000;
            padding: 20px 0;
            margin-top: 20px;
            width: 100%;
        }
        .interest-banner {
            background-color: #4ade80;
            color: #000000;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .interest-icon {
            color: #000000;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        .interest-icon svg {
            width: 24px;
            height: 24px;
        }
        .interest-text {
            display: flex;
            flex-direction: column;
        }
        .interest-text strong {
            margin-bottom: 2px;
        }
        .interest-text p {
            margin: 0;
        }
        .faq h2 {
            margin-top: 0;
            font-size: 1.5em;
        }
        .faq dt {
            font-weight: 600;
            margin-top: 15px;
        }
        .faq dd {
            margin-left: 0;
            margin-bottom: 15px;
        }
        .more-questions {
            margin-top: 30px;
        }
        .more-questions h2 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>
            <span class="domain-name">worldtotable.com</span>
            <span class="for-sale"> is for sale</span>
        </h1>
        
        <div class="card">
            <h2>Purchase Domain</h2>
            <p>Make an offer using Escrow.com below.</p>
            
            <form action="https://www.escrow.com/offer" method="post" target="_blank">
                <input type="hidden" name="type" value="domain_name">
                <input type="hidden" name="non_initiator_email" value="domains@avinuity.com">
                <input type="hidden" name="non_initiator_id" value="2783595">
                <input type="hidden" name="non_initiator_role" value="seller">
                <input type="hidden" name="title" value="worldtotable.com">
                <input type="hidden" name="currency" value="USD">
                <input type="hidden" name="domain" value="worldtotable.com">
                <input type="hidden" name="price" value="1750">
                <input type="hidden" name="concierge" value="false">
                <input type="hidden" name="with_content" value="false">
                <input type="hidden" name="inspection_period" value="1">
                <input type="hidden" name="fee_payer" value="buyer">
                <input type="hidden" name="return_url" value="">
                <input type="hidden" name="button_types" value="make_offer">
                <input type="hidden" name="auto_accept" value="">
                <input type="hidden" name="auto_reject" value="1000">

                <button class="button secondary" type="submit">
                    <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
                        <line x1="12" y1="1" x2="12" y2="23"></line>
                        <path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>
                    </svg>
                    Make an offer
                </button>
            </form>
            
            <div class="benefits">
                <p>Secure transaction powered by Escrow.com</p>
            </div>
        </div>
    </div>
    
    <div class="white-container">
        <div class="container">
            <div class="interest-banner">
                <div class="interest-icon">
                    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
                        <polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline>
                        <polyline points="17 6 23 6 23 12"></polyline>
                    </svg>
                </div>
                <div class="interest-text">
                    <strong>Strong Buyer Interest</strong>
                    <p>219 buyers viewed this listing recently. 1 offer was sent recently.</p>
                </div>
            </div>
            
            <div class="faq">
                <h2>Frequently Asked Questions</h2>
                <dl>
                    <dt>How does the Escrow.com work?</dt>
                    <dd>Escrow.com acts as a neutral third party to collect, hold, and disburse funds according to buyer and seller instructions.</dd>
                    
                    <dt>How does the transfer work?</dt>
                    <dd>Escrow.com will securely hold your verified payment until we transfer the domain name to you. This transfer will be completed either by providing an authorization code or by initiating a transfer to your designated registrar. Once you have the domain, Escrow.com will release your funds to us and the transaction will be complete.</dd>

                    <dt>Is Escrow.com the only payment method available?</dt>
                    <dd>Yes, we exclusively use Escrow.com for all transactions to ensure security and trust for both parties. Escrow.com accepts wire transfers and for smaller transactions they allow credit cards or PayPal.</dd>
                    
                    <dt>How long does the transfer process take?</dt>
                    <dd>The domain transfer process typically takes 1-5 business days after payment is verified.</dd>
                    
                    <dt>Can I negotiate the price?</dt>
                    <dd>Yes, you can make an offer by using the above "Make an offer" button or emailing <a href="/cdn-cgi/l/email-protection#6147425051515a47425050505a47425051585a474258565a47425051545a47425050515a47425050545a474257555a474258565a47425050595a47425051545a47425050515a47425050565a47425051545a47425050575a47425053505a474255575a474258585a47425050505a47425051585a">&#100;&#111;&#109;&#97;&#105;&#110;&#115;&#64;&#97;&#118;&#105;&#110;&#117;&#105;&#116;&#121;&#46;&#99;&#111;&#109;</a>. We'll respond to all reasonable offers.</dd>
                    
                    <dt>Are there any additional fees?</dt>
                    <dd>The listed price includes a free domain transfer. Escrow.com fees are typically paid by the buyer but this can be negotiated.</dd>
                </dl>
            </div>
            
            <div class="more-questions">
                <h2>Have More Questions?</h2>
                <p>Email us any questions or offers at <a href="/cdn-cgi/l/email-protection#efc9ccdedfdfd4c9ccdededed4c9ccdedfd6d4c9ccd6d8d4c9ccdedfdad4c9ccdededfd4c9ccdededad4c9ccd9dbd4c9ccd6d8d4c9ccdeded7d4c9ccdedfdad4c9ccdededfd4c9ccdeded8d4c9ccdedfdad4c9ccdeded9d4c9ccdeddded4c9ccdbd9d4c9ccd6d6d4c9ccdededed4c9ccdedfd6d4">&#100;&#111;&#109;&#97;&#105;&#110;&#115;&#64;&#97;&#118;&#105;&#110;&#117;&#105;&#116;&#121;&#46;&#99;&#111;&#109;</a>.</p>
            </div>
        </div>
    </div>
<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script></body>
</html>
