وصلني – مشاوير داخل كركوك body { font-family: ‘Cairo’, sans-serif; background-color: #f9f9f9; margin: 0; padding: 0; color: #333; } header { background-color: #ff9900; padding: 20px; text-align: center; font-size: 28px; font-weight: bold; color: #000; } .accordion { max-width: 900px; margin: 30px auto; padding: 0 20px; } .accordion-item { background-color: #fff; margin-bottom: 10px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); overflow: hidden; } .accordion-header { padding: 15px 20px; background-color: #ff9900; color: #000; font-size: 20px; cursor: pointer; font-weight: bold; } .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: #fff; } .accordion-body table { width: 100%; border-collapse: collapse; } .accordion-body th, .accordion-body td { padding: 12px; border: 1px solid #ddd; text-align: center; } .accordion-body th { background-color: #f0f0f0; } footer { background-color: #222; color: #ccc; text-align: center; padding: 20px; margin-top: 40px; font-size: 14px; }
وصلني – أسعار المشاوير داخل كركوك
من حي النصر
إلىالسعر
حي المصلى5,000 دينار
حي القادسية5,000 دينار
حي الشورجة5,000 دينار
من حي المصلى
إلىالسعر
حي النصر5,000 دينار
حي الشورجة5,000 دينار
حي عرفة5,000 دينار
من حي القادسية
إلىالسعر
حي النصر5,000 دينار
حي القورية5,000 دينار
حي رحيم آوه5,000 دينار
function toggleAccordion(element) { const body = element.nextElementSibling; if (body.style.maxHeight) { body.style.maxHeight = null; } else { body.style.maxHeight = body.scrollHeight + “px”; } }