FAQ - frequently asked questions
<!-- faq.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Panno Bianco</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background: #fafafa; color: #333; }
header { text-align: center; margin-bottom: 30px; }
h1 { font-size: 2rem; }
.faq { max-width: 700px; margin: 10px auto; }
.faq h3 { margin-top: 20px; }
</style>
</head>
<body>
<header>
<h1>Frequently Asked Questions</h1>
</header>
<div class="faq">
<h3>1. How can I place an order?</h3>
<p>Simply browse our collection, add your favorite items to the cart, and proceed to checkout.</p>
<h3>2. What payment methods do you accept?</h3>
<p>We accept major credit cards, PayPal, and other secure online payment methods.</p>
<h3>3. How long does shipping take?</h3>
<p>Shipping times vary depending on your location, but most orders are delivered within 5–10 business days.</p>
<h3>4. Can I return or exchange an item?</h3>
<p>Yes! We offer easy returns and exchanges within 30 days of purchase. Please check our return policy for details.</p>
</div>
</body>
</html>