<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* ============================================================
   TYPOGRAPHY SYSTEM — drlaull.com
   Global heading + paragraph scale (Roboto)
   Clinical readability, responsive, modular
   ============================================================ */

/* === Base font setup === */
body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Helvetica, Arial, sans-serif;
  color: #24313f;
  line-height: 1.6;
  font-size: 1rem; /* 16px base */
}

/* === Headings (desktop-first) === */
h1 {
  font-size: 2.75rem;   /* ~44px */
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.25rem;   /* ~36px */
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.75rem;   /* ~28px */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.5rem;    /* ~24px */
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

h5 {
  font-size: 1.25rem;   /* ~20px */
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

h6 {
  font-size: 1.1rem;    /* ~18px */
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

/* === Paragraphs === */
p {
  font-size: 1rem;      /* 16px */
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* === Responsive scaling (mobile < 768px) === */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }     /* ~32px */
  h2 { font-size: 1.75rem; }  /* ~28px */
  h3 { font-size: 1.5rem; }   /* ~24px */
  h4 { font-size: 1.3rem; }   /* ~21px */
  h5 { font-size: 1.15rem; }  /* ~18px */
  h6 { font-size: 1rem; }     /* ~16px */
  p  { font-size: 0.95rem; }  /* ~15px */
}

/* HOME — HERO STYLE (lean, typography handled globally) */
.ll-home-hero {
  background: rgba(79,150,159,0.08); /* teal wash */
  padding: 48px 24px;
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto 40px;
  text-align: center;
}

.ll-home-hero ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
}

.ll-home-hero ul li {
  margin-bottom: 10px;
  color: #4a5a67; /* matches hero paragraph tone */
}
</style>
<!-- end Simple Custom CSS and JS -->
