/**
 * ============================================================
 * GLOBAL TYPOGRAPHY STYLESHEET
 * ============================================================
 * Purpose: Ensure consistent font styling across all pages
 * Applied to: All <p> tags website-wide
 * Font Used: Segoe UI (system font stack for consistency)
 * ============================================================
 */

/* Global Paragraph Font - Applied to ALL <p> tags */
p {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif !important;
  font-size: inherit;
  line-height: 1.6;
  letter-spacing: normal;
}

/* Ensure consistency in nested paragraphs */
p strong, p b { font-weight: 600; }
p em, p i { font-style: italic; }
p code { font-family: 'Courier New', 'Monaco', monospace; }

/* Reset any inline styles that might conflict */
p[style*="font-family"] { font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif !important; }
