/* fix.css - Arctixo service detail page heading and content spacing fix */
/* Root cause: theme section h2 margin-bottom 89px designed for homepage section titles, */
/* not article content. Override margins for service_single content area only. */

/* H2: professional B2B spacing */
#service_single h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* H3: tighter than H2, still breathable */
#service_single h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

/* Reset H3 margins for service cards in related section */
#service_single .service-card h3 {
  margin-top: 0;
  margin-bottom: 0;
}

/* Lists: proper spacing and bullet padding */
#service_single ul,
#service_single ol {
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 20px;
}

#service_single ul li,
#service_single ol li {
  margin-bottom: 8px;
}

/* Paragraphs: consistent bottom margin */
#service_single p {
  margin-top: 0;
  margin-bottom: 15px;
}

/* Figure/images: consistent spacing */
#service_single figure {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* FAQ items: compact internal spacing */
#service_single .faq-item {
  margin-bottom: 20px;
}

#service_single .faq-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
}
