Untitled

 avatar
unknown
html
5 months ago
3.1 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Return Policy</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 20px;
            padding: 0;
            background-color: #f4f4f4;
        }
        .container {
            max-width: 800px;
            margin: auto;
            background: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #333;
        }
        h2 {
            color: #555;
            margin-top: 20px;
        }
        p {
            margin-bottom: 15px;
        }
        ul {
            margin-left: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        a {
            color: #0073e6;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>Return Policy</h1>
        <p>Thank you for shopping with us! If you're not satisfied with your purchase, we’re happy to assist with returns.</p>

        <h2>Return Window</h2>
        <p>You have <strong>30 days</strong> from the date you receive your order to initiate a return. Items must be in new, unused condition and returned in their original packaging to qualify for a refund.</p>

        <h2>Return Process</h2>
        <ul>
            <li><strong>Request a Return</strong>: To start your return, please email us at <a href="mailto:refund@mavenmeals.com">refund@mavenmeals.com</a> with your order details and the reason for your return.</li>
            <li><strong>Return Label</strong>: Once your return request is approved, we will send you a prepaid return shipping label via email at no additional cost. Print the label and affix it to your return package.</li>
            <li><strong>Send the Item Back</strong>: After receiving the return label, please send the item back within <strong>14 days</strong>.</li>
        </ul>

        <h2>Refund Process</h2>
        <p>Once we receive and inspect the returned item to ensure it meets our return conditions, we will process your refund within <strong>7 business days</strong>.</p>
        <p>Refunds will be issued to your original payment method. Please note, depending on your payment provider, it may take additional time for the refund to reflect in your account.</p>

        <h2>Return Conditions</h2>
        <ul>
            <li>Items must be in new, unused condition and returned in the original packaging to be eligible for a refund.</li>
            <li>All returns must be initiated within <strong>30 days</strong> of receipt of your order.</li>
            <li>Certain items may be ineligible for return or refund, such as personalized products or final sale items. These exclusions will be noted on the product page.</li>
        </ul>

        <h2>Return Shipping Fees</h2>
        <p>Return shipping is free for all approved returns. You will receive a prepaid return shipping label as part of the return process.</p>
    </div>

</body>
</html>
Editor is loading...
Leave a Comment