/* Contact Us — Islamic contact illustration injected via CSS.
   Done in CSS (not inline HTML) so it survives Next.js React hydration,
   which re-renders the page body from its JS bundle and would otherwise
   discard any static markup added directly to contact-us.html. */

.form_heading_div::before {
  content: "";
  display: block;
  width: 150px;
  height: 120px;
  margin: 0 0 18px;
  background: url("/islamic-contact.svg") left center / contain no-repeat;
}

@media (max-width: 600px) {
  .form_heading_div::before {
    width: 110px;
    height: 88px;
    margin: 0 auto 14px;
  }
}
