<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>FAQ | Your Brand</title> <style> body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f9f9f9; margin: 0; padding: 2rem; color: #333; } h1 { text-align: center; margin-bottom: 2rem; } .faq-container { max-width: 800px; margin: 0 auto; } .faq-item { background: #fff; border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; } .faq-question { cursor: pointer; padding: 1rem 1.5rem; font-weight: 600; position: relative; } .faq-question::after { content: '+'; font-size: 1.5rem; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); transition: transform 0.3s; } .faq-item.active .faq-question::after { content: '-'; transform: translateY(-50%) rotate(180deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 1.5rem; } .faq-item.active .faq-answer { padding: 1rem 1.5rem; max-height: 500px; /* Large enough for most content */ } </style> </head> <body> <h1>Frequently Asked Questions</h1> <div class="faq-container"> <div class="faq-item"> <div class="faq-question">What services do you offer?</div> <div class="faq-answer"> We specialize in magazine production, branding, website design, and creative campaigns for nonprofits, publishers, and lifestyle brands. </div> </div> <div class="faq-item"> <div class="faq-question">Can I purchase services à la carte?</div> <div class="faq-answer"> Yes, we offer both packages and customizable à la carte services. You can mix and match to fit your project's needs and budget. </div> </div> <div class="faq-item"> <div class="faq-question">How do I request a quote?</div> <div class="faq-answer"> Simply fill out our contact form or email us directly. We’ll schedule a consultation and send a tailored quote based on your scope. </div> </div> <div class="faq-item"> <div class="faq-question">What’s the turnaround time for a full magazine?</div> <div class="faq-answer"> It depends on the complexity, but our average timeline is 6–8 weeks from initial concept to press-ready files. </div> </div> </div> <script> const faqItems = document.querySelectorAll('.faq-item'); faqItems.forEach(item => { item.querySelector('.faq-question').addEventListener('click', () => { item.classList.toggle('active'); faqItems.forEach(otherItem => { if (otherItem !== item) { otherItem.classList.remove('active'); } }); }); }); </script> </body> </html>