/* =============================================
   Christine's Bail Bonds — Main Stylesheet
   MOBILE-FIRST: base styles target phones,
   media queries add desktop enhancements.

   Color palette:
     --dark:       #242424  (header / text)
     --accent:     #90EAFF  (light blue highlight)
     --accent-dark:#4bbfdc  (hover / links)
     --light:      #F9F9F9  (alt section bg)
     --white:      #FFFFFF
   ============================================= */

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --dark:        #242424;
  --accent:      #90EAFF;
  --accent-dark: #4bbfdc;
  --light:       #F9F9F9;
  --white:       #FFFFFF;
  --text:        #3c3c3c;
  --border:      #e0e0e0;
  --radius:      8px;
  /* Space below content so sticky bar doesn't cover it on mobile */
  --sticky-bar-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.65;
  font-size: 16px;
  /* Room for sticky bottom bar on mobile */
  padding-bottom: var(--sticky-bar-h);
  /* Fixed full-page background image — content scrolls over it */
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-color: #1a1a1a; /* fallback while image loads */
}

/* On mobile, fixed-attachment can flicker — switch to scroll */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

p { margin-top: 0; }

/* ================================================
   STICKY BOTTOM CALL BAR — mobile only
   Injected by JS; hidden on desktop via CSS
   ================================================ */
.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--sticky-bar-h);
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--white);
  transition: filter 0.15s;
}
.mobile-call-bar a:active { filter: brightness(0.9); }
.mobile-call-bar .bar-call  { background: #1a7a1a; }   /* green — call */
.mobile-call-bar .bar-apply { background: var(--dark); } /* dark — apply */
.mobile-call-bar .bar-icon  { font-size: 1.15rem; }

/* Hide the bar on desktop screens */
@media (min-width: 901px) {
  .mobile-call-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 16px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.top-bar a { color: var(--accent); font-weight: 600; }
.top-bar a:hover { opacity: 0.85; text-decoration: none; }

/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  background: var(--white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo img {
  height: 46px;
  width: auto;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 901px) {
  .nav-links { display: flex; }
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex;
  align-items: center;
  padding: 9px 11px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  min-height: 44px;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active {
  background: var(--accent);
  color: var(--dark);
  text-decoration: none;
}
.nav-links .btn-nav {
  background: var(--dark);
  color: var(--white) !important;
  border-radius: 5px;
  padding: 9px 14px;
}
.nav-links .btn-nav:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

/* Dropdown */
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 270px;
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 200;
}
.nav-links li:hover .dropdown-menu,
.nav-links li:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  color: var(--dark);
  transition: background 0.15s;
  min-height: 44px;
  line-height: 26px;
}
.dropdown-menu li a:hover {
  background: var(--light);
  text-decoration: none;
}

/* Hamburger button */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  border-radius: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: var(--light); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 901px) {
  .nav-hamburger { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  max-height: calc(100vh - 65px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}
.mobile-nav ul li a {
  display: block;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--light);
  min-height: 50px;
  line-height: 24px;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a:active {
  background: var(--light);
  text-decoration: none;
}
.mobile-nav ul li.submenu-header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  padding: 14px 24px 4px;
}
.mobile-nav ul li a.indent {
  padding-left: 40px;
  font-weight: 500;
  font-size: 0.93rem;
  color: #555;
}
.mobile-nav ul li a.indent:hover { color: var(--dark); }

/* ================================================
   HERO — mobile first
   ================================================ */
.hero {
  position: relative;
  /* Dark overlay so text is readable over the body background image */
  background: rgba(10, 10, 10, 0.72);
  color: var(--white);
  padding: 52px 20px 60px;
  text-align: center;
  overflow: hidden;
}
/* The hero-bg div is no longer needed — body handles the image.
   Keep the element in HTML but make it invisible. */
.hero-bg {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 14px;
}
.hero h2 {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 28px;
}

/* Hero call buttons — stacked on mobile, inline on desktop */
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 560px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: var(--dark) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  text-decoration: none !important;
  min-height: 52px;
  min-width: 200px;
  text-align: center;
}
.btn-primary-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--white);
  color: var(--dark) !important;
  border: 2px solid var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none !important;
  min-height: 52px;
  min-width: 200px;
  text-align: center;
}
.btn-secondary-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark) !important;
}

/* Hero phone note — only on desktop (mobile has sticky bar) */
.hero-phone-note {
  display: none;
  margin-top: 20px;
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
}
@media (min-width: 901px) {
  .hero-phone-note { display: block; }
  .hero h1 { font-size: 2.6rem; }
  .hero h2 { font-size: 1.3rem; }
}

/* ================================================
   SECTIONS
   ================================================ */
.section { padding: 48px 16px; background: rgba(255, 255, 255, 0.93); }
.section-alt { background: rgba(244, 244, 244, 0.93); }
.container { max-width: 1200px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 36px;
  font-size: 0.97rem;
}
.section-divider {
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 18px;
}

@media (min-width: 768px) {
  .section { padding: 64px 24px; }
  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: 1.05rem; }
}

/* ================================================
   SERVICE CARDS — 1 col mobile, 2 col tablet, 3-4 desktop
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 540px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 22px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.service-card svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  display: block;
}
.service-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 14px;
  line-height: 1.5;
}
.link-arrow {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.link-arrow:hover { text-decoration: underline; }

/* ================================================
   TEAM GRID — 2 col mobile, 4 col desktop
   ================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

.team-card { text-align: center; }
.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 10px;
  border: 3px solid var(--accent);
  display: block;
}
.team-card h4 { font-size: 0.92rem; margin-bottom: 3px; }
.team-card p  { font-size: 0.78rem; color: #777; margin: 0; }

@media (min-width: 768px) {
  .team-card img { width: 130px; height: 130px; }
  .team-card h4 { font-size: 1rem; }
  .team-card p  { font-size: 0.85rem; }
}

/* ================================================
   TWO-COL — stacked on mobile
   ================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.two-col img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
/* Reverse order on mobile so text comes first */
.two-col .order-first { order: -1; }
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .two-col .order-first { order: 0; }
}

/* ================================================
   INFO / GUARANTEE BLOCK
   ================================================ */
.info-block {
  background: var(--dark);
  color: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
}
.info-block h3 { color: var(--accent); margin-bottom: 14px; font-size: 1.3rem; }
.info-block p  { color: #ddd; }

@media (min-width: 768px) {
  .info-block { padding: 40px 36px; }
}

/* ================================================
   AREAS GRID — 2 col mobile, 4 col desktop
   ================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .areas-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
  display: block;
  color: var(--dark);
  min-height: 48px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area-card:hover {
  background: var(--accent);
  text-decoration: none;
}

/* ================================================
   REVIEWS — 1 col mobile, 3 col desktop
   ================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px 20px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
}
.review-card p {
  margin-bottom: 12px;
  font-style: italic;
  padding-top: 28px;
  font-size: 0.95rem;
}
.review-card strong { font-size: 0.88rem; color: #555; }
.stars { color: #f5a623; font-size: 1.05rem; margin-bottom: 6px; }

/* ================================================
   BLOG / RESOURCES GRID
   ================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
}
.blog-card .post-date {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p  { font-size: 0.88rem; color: #666; margin: 0; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 48px 20px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; font-size: 1.4rem; }
.cta-banner p  { color: var(--accent); font-size: 1rem; margin-bottom: 24px; }
@media (min-width: 768px) {
  .cta-banner h2 { font-size: 1.8rem; }
  .cta-banner p  { font-size: 1.1rem; }
}

/* ================================================
   CONTACT / FORMS
   ================================================ */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
}
@media (min-width: 600px) {
  .contact-form { padding: 36px 32px; }
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.92rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;      /* prevents iOS auto-zoom on focus */
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(144,234,255,.3);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 560px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  min-height: 52px;
  font-family: inherit;
}
.btn-submit:hover { background: #444; }
@media (min-width: 560px) {
  .btn-submit { width: auto; }
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 16px 18px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: background 0.2s;
  min-height: 56px;
  font-family: inherit;
  line-height: 1.4;
  gap: 12px;
}
.faq-question:hover { background: var(--light); }
.faq-question .icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
  color: var(--accent-dark);
  flex-shrink: 0;
  line-height: 1;
}
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 2px 18px 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  background: var(--white);
  color: var(--text);
}
.faq-answer.open { display: block; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: rgba(10, 10, 10, 0.72);
  color: var(--white);
  padding: 44px 20px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.page-hero p {
  color: var(--accent);
  font-size: 0.97rem;
  margin: 0;
}
@media (min-width: 768px) {
  .page-hero { padding: 56px 20px; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p  { font-size: 1.1rem; }
}

/* ================================================
   PHONE STRIP
   ================================================ */
.phone-strip {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1rem;
  /* Hide on mobile — sticky bar does the job */
  display: none;
}
.phone-strip a { color: var(--dark); }
.phone-strip a:hover { text-decoration: underline; }
@media (min-width: 901px) {
  .phone-strip { display: block; }
}

/* ================================================
   FOOTER — stacked on mobile, 4-col on desktop
   ================================================ */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 44px 20px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
}

.footer-logo img { height: 52px; width: auto; margin-bottom: 14px; }
.footer-hours   { font-size: 0.88rem; margin-bottom: 6px; }
.footer-phone a {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
}
.footer-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #aaa;
  font-size: 0.88rem;
  transition: color 0.2s;
  display: inline-block;
  min-height: 32px;
  line-height: 32px;
}
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-social { margin-top: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #444;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: background 0.2s;
  margin-right: 8px;
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent-dark); }
.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 16px 0;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.82rem;
  color: #666;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.mt-0  { margin-top: 0 !important; }
.mb-0  { margin-bottom: 0 !important; }

.badge-avail {
  display: inline-block;
  background: #28a745;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.breadcrumb a { color: var(--accent); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.55;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* Prevent images being too tall on mobile */
@media (max-width: 540px) {
  .two-col img { max-height: 220px; object-fit: cover; }
}
