.elementor-1188 .elementor-element.elementor-element-3822c4d8{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-524c1b9a */@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --brand:    #1A6B8A;
  --brand-dk: #0D4F6C;
  --accent:   #E74C3C;
  --text:     #1A1A2E;
  --muted:    #5A6472;
  --rule:     #E2EAF0;
  --bg:       #FFFFFF;
  --bg-soft:  #F6FAFD;
  --note-bg:  #EAF4FA;
  --cta-bg:   #FFF4F3;
  --cta-bdr:  #E74C3C;
}

html { scroll-behavior: smooth; }

/* ---- FULL WIDTH BODY ---- */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  width: 100%;
  margin: 0;
  padding: 40px 0 80px;
}

/* ---- CENTERED CONTENT WRAPPER ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- OPTIONAL FULL WIDTH SECTIONS ---- */
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* ---- breadcrumb ---- */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--brand); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ---- headings ---- */
h1 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 20px;
}

h2 {
  font-family: 'Lora', serif;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 600;
  color: var(--brand-dk);
  margin: 48px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rule);
}

h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  margin: 32px 0 10px;
}

h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}

p { margin-bottom: 18px; }

a { color: var(--brand); text-decoration: underline; }
a:hover { color: var(--brand-dk); }

strong { font-weight: 600; }

/* ---- meta bar ---- */
.meta-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  margin-bottom: 32px;
}
.meta-bar span { display: flex; align-items: center; gap: 5px; }

/* ---- intro lead ---- */
.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  border-left: 3px solid var(--brand);
  padding-left: 16px;
  margin-bottom: 28px;
}

/* ---- TOC ---- */
.toc {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 32px 0 40px;
}
.toc h2 {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  margin: 0 0 14px;
  padding: 0;
}
.toc ol {
  padding-left: 22px;
  margin: 0;
}
.toc li {
  margin-bottom: 6px;
  font-size: 15px;
}
.toc a {
  color: var(--brand);
  text-decoration: none;
}
.toc a:hover { text-decoration: underline; }

/* ---- lists ---- */
ul, ol { padding-left: 22px; margin-bottom: 18px; }
li { margin-bottom: 7px; }

/* ---- tables ---- */
.table-wrap { overflow-x: auto; margin: 24px 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
thead th {
  background: var(--brand);
  color: #fff;
  text-align: left;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 14px;
}
tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
tbody tr:nth-child(even) td { background: var(--bg-soft); }
tfoot td {
  padding: 10px 14px;
  background: var(--brand-dk);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* ---- callout ---- */
.callout {
  background: var(--note-bg);
  border-left: 4px solid var(--brand);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: 15.5px;
}
.callout strong { color: var(--brand); }

/* ---- CTA box ---- */
.cta-box {
  background: var(--cta-bg);
  border: 2px solid var(--cta-bdr);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 36px 0;
  text-align: center;
}
.cta-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.cta-box a {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s;
}
.cta-box a:hover { background: var(--brand-dk); color: #fff; }

/* ---- internal links ---- */
.internal-links {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 40px 0;
}
.internal-links h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 14px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.internal-links ul { margin: 0; padding-left: 0; list-style: none; }
.internal-links li { margin-bottom: 9px; font-size: 15px; }
.internal-links li::before { content: "-> "; color: var(--brand); font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { margin: 20px 0; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 18px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-dk);
  margin-bottom: 8px;
}
.faq-a { font-size: 15.5px; color: var(--text); margin: 0; }

/* ---- highlight ---- */
.highlight { background: #FFF9E6; padding: 2px 5px; border-radius: 3px; font-weight: 600; }

/* ---- mobile ---- */
@media (max-width: 600px) {
  body { padding: 24px 0 60px; }
  .container { padding: 0 16px; }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
}/* End custom CSS */