<!DOCTYPE html>
}
.subtitle{
text-align:center;
color:#666;
margin-bottom:30px;
}
.faq{
background:#fff;
border-radius:10px;
margin-bottom:12px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
overflow:hidden;
}
.question{
padding:16px;
font-weight:bold;
cursor:pointer;
background:#ffe6ef;
}
.answer{
display:none;
padding:16px;
color:#555;
border-top:1px solid #eee;
}
.footer{
text-align:center;
margin-top:30px;
color:#777;
font-size:14px;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>Frequently Asked Questions</h1>
<p class="subtitle">Baby Bacha Store - Kids Sandals & Shoes Pakistan</p>
<div class="faq">
<div class="question">What products do you sell?</div>
<div class="answer">We sell comfortable and stylish baby sandals, shoes, and kids footwear for all seasons in Pakistan.</div>
</div>
<div class="faq">
<div class="question">How long is delivery time?</div>
<div class="answer">Delivery time is usually 3 to 7 working days across Pakistan depending on your city.</div>
</div>
<div class="faq">
<div class="question">Do you offer Cash on Delivery?</div>
<div class="answer">Yes, we provide Cash on Delivery (COD) service all over Pakistan.</div>
</div>
<div class="faq">
<div class="question">Can I exchange my order?</div>
<div class="answer">Yes, exchange is available within 3 days if product is unused and in original condition.</div>
</div>
<div class="faq">
<div class="question">How can I contact you?</div>
<div class="answer">You can contact us at zyracollectiononline@gmail.com for any support or order help.</div>
</div>
<div class="footer">
© Baby Bacha Store - All Rights Reserved
</div>
</div>
<script>
document.querySelectorAll('.question').forEach(q=>{
q.addEventListener('click',()=>{
const ans = q.nextElementSibling;
ans.style.display = ans.style.display === 'block' ? 'none' : 'block';
});
});
</script>
</body>
</html>