    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --white: #f7f9fc;
      --blue: #1a5fa8;
      --blue-light: #e8f0fb;
      --blue-mid: #a8c4e8;
      --blue-dark: #0f3d70;
      --green: #1a8c5e;
      --green-light: #e5f5ef;
      --green-mid: #7ecba8;
      --red: #c0392b;
      --red-light: #fdf0ee;
      --amber: #d4820a;
      --amber-light: #fef6e8;
      --ink: #0d1b2a;
      --ink-soft: #3a4a5c;
      --ink-muted: #7a8a9a;
      --border: #d0dce8;
      --surface: #ffffff;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 4rem;
      background: rgba(247,249,252,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-brand { display: flex; align-items: center; gap: 1rem; }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; letter-spacing: 0.05em; color: var(--ink); text-decoration: none; }
    .nav-logo span { color: #1a8c5e; }
    .nav-divider { width: 1px; height: 1.4rem; background: var(--border); }
    .nav-section { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); white-space: nowrap; }
    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
    .nav-links a { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em; text-decoration: none; color: var(--ink-soft); transition: color 0.2s; }
    .nav-links a:hover { color: var(--blue); }
    .nav-emergency { display: flex; align-items: center; gap: 0.5rem; background: var(--red); color: white; padding: 0.5rem 1.1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 500; text-decoration: none; }
    .pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.3)} }

    /* BREADCRUMB */
    .breadcrumb-bar {
      padding: 5.5rem 4rem 0;
      background: var(--blue-dark);
    }
    .breadcrumb {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; gap: 0.5rem;
      flex-wrap: wrap; padding-bottom: 1.5rem;
    }
    .breadcrumb a { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 300; transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.8); }
    .breadcrumb-sep { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
    .breadcrumb-current { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 400; }

    /* PAGE HEADER */
    .page-header {
      background: var(--blue-dark); padding: 0 4rem 4rem;
      position: relative; overflow: hidden;
    }
    .page-header::after {
      content: ''; position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,140,94,0.15) 0%, transparent 70%);
      right: 5%; top: 20%;
    }
    .header-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
    .header-tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green-mid); margin-bottom: 0.8rem; display: block; }
    .header-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; color: white; line-height: 1.1; margin-bottom: 0.8rem; }
    .header-title em { font-style: italic; color: var(--green-mid); }
    .header-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.6; max-width: 52ch; }
    .header-stat-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; padding: 1.5rem 2rem; text-align: center; flex-shrink: 0; }
    .header-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: white; line-height: 1; display: block; }
    .header-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 0.3rem; }

    /* VERIFIED TIMESTAMP */
    .verified-bar {
      background: var(--green); padding: 0.7rem 4rem;
      display: flex; align-items: center; justify-content: center; gap: 0.8rem;
      font-size: 0.78rem; color: white; font-weight: 300;
    }
    .verified-bar strong { font-weight: 500; }
    .live-dot { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse 2s ease-in-out infinite; }

    /* LAYOUT */
    .page-layout { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }

    /* SIDEBAR */
    .sidebar { position: sticky; top: 6rem; }
    .sidebar-section { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.2rem; }
    .sidebar-title { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 500; color: var(--ink-muted); margin-bottom: 1rem; }

    /* FILTERS */
    .filter-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
    .filter-label { font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); margin-bottom: 0.3rem; }
    .filter-options { display: flex; flex-direction: column; gap: 0.3rem; }
    .filter-option { display: flex; align-items: center; gap: 0.6rem; padding: 0.45rem 0.7rem; border-radius: 0.5rem; cursor: pointer; font-size: 0.82rem; color: var(--ink-soft); font-weight: 300; transition: all 0.2s; border: 1px solid transparent; }
    .filter-option:hover { background: var(--blue-light); color: var(--blue); }
    .filter-option.active { background: var(--blue-light); color: var(--blue); border-color: var(--blue-mid); font-weight: 500; }
    .filter-option input { display: none; }
    .filter-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

    .sidebar-search { width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--border); border-radius: 0.65rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 300; color: var(--ink); background: var(--white); outline: none; transition: border-color 0.2s; }
    .sidebar-search:focus { border-color: var(--blue); }

    .related-lga-list { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
    .related-lga-link { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.7rem; border-radius: 0.5rem; text-decoration: none; font-size: 0.82rem; color: var(--ink-soft); font-weight: 300; transition: all 0.2s; }
    .related-lga-link:hover { background: var(--blue-light); color: var(--blue); }
    .related-lga-count { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; color: var(--ink-muted); }

    /* MAIN LISTINGS */
    .listings-main { min-width: 0; }
    .listings-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
    .listings-count { font-size: 0.82rem; color: var(--ink-muted); font-weight: 300; }
    .listings-count strong { font-weight: 500; color: var(--ink); }
    .sort-select { padding: 0.5rem 2rem 0.5rem 0.8rem; border: 1px solid var(--border); border-radius: 0.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--ink-soft); background: white; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.6rem center; cursor: pointer; outline: none; }

    .listings-stack { display: flex; flex-direction: column; gap: 1rem; }
    .listing-row {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 1rem; padding: 1.8rem;
      transition: box-shadow 0.2s, border-color 0.2s;
      display: grid; grid-template-columns: 1fr auto;
      gap: 1.5rem; align-items: start;
    }
    .listing-row:hover { box-shadow: 0 6px 24px rgba(13,27,42,0.08); border-color: var(--blue-mid); }
    .listing-row-left { display: flex; flex-direction: column; gap: 0.7rem; }
    .row-top { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
    .listing-type-badge { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 100px; white-space: nowrap; }
    .badge-teaching { background: var(--blue-light); color: var(--blue); border: 1px solid var(--blue-mid); }
    .badge-government { background: var(--green-light); color: var(--green); border: 1px solid var(--green-mid); }
    .badge-private { background: var(--amber-light); color: var(--amber); border: 1px solid #f0c060; }
    .badge-emergency { background: var(--red-light); color: var(--red); border: 1px solid #f0a090; }
    .verified-pill { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.65rem; color: var(--green); font-weight: 400; }
    .verified-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
    .row-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--ink); line-height: 1.3; }
    .row-address { font-size: 0.82rem; color: var(--ink-muted); font-weight: 300; line-height: 1.5; display: flex; align-items: flex-start; gap: 0.4rem; }
    .row-phone { font-family: 'IBM Plex Mono', monospace; font-size: 0.88rem; color: var(--blue); text-decoration: none; font-weight: 400; transition: color 0.2s; }
    .row-phone:hover { color: var(--blue-dark); }
    .row-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
    .row-tag { font-size: 0.68rem; padding: 0.15rem 0.6rem; border-radius: 100px; border: 1px solid var(--border); color: var(--ink-muted); font-weight: 300; }
    .row-tag.highlight { background: var(--red-light); color: var(--red); border-color: #f0a090; }
    .row-tag.nhia { background: var(--green-light); color: var(--green); border-color: var(--green-mid); }
    .listing-row-right { display: flex; flex-direction: column; gap: 0.6rem; min-width: 140px; }
    .row-btn { display: block; padding: 0.7rem 1rem; border-radius: 0.65rem; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; text-align: center; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
    .row-btn.primary { background: var(--blue); color: white; }
    .row-btn.primary:hover { background: var(--blue-dark); }
    .row-btn.ghost { background: var(--white); color: var(--ink-soft); border: 1px solid var(--border); }
    .row-btn.ghost:hover { border-color: var(--blue); color: var(--blue); }
    .row-btn.call { background: var(--green-light); color: var(--green); border: 1px solid var(--green-mid); }
    .row-btn.call:hover { background: var(--green); color: white; }

    /* PAGINATION */
    .pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2.5rem; }
    .page-btn { width: 2.2rem; height: 2.2rem; border-radius: 0.5rem; border: 1px solid var(--border); background: white; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--ink-soft); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
    .page-btn:hover { border-color: var(--blue); color: var(--blue); }
    .page-btn.active { background: var(--blue); border-color: var(--blue); color: white; }

    /* RELATED PAGES */
    .related-section { max-width: 1100px; margin: 0 auto 4rem; padding: 0 2rem; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
    .related-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-decoration: none; transition: all 0.2s; }
    .related-card:hover { border-color: var(--blue); transform: translateY(-2px); }
    .related-card-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); font-weight: 500; margin-bottom: 0.4rem; display: block; }
    .related-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: var(--ink); margin-bottom: 0.3rem; }
    .related-card-count { font-size: 0.78rem; color: var(--ink-muted); font-weight: 300; }

    /* FOOTER */
    footer { background: var(--ink); padding: 2.5rem 4rem; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; color: white; text-decoration: none; }
    .footer-brand span { color: var(--green-mid); }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-link { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
    .footer-link:hover { color: var(--green-mid); }

    /* MOBILE NAV */
    .mobile-nav { display: none; position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 200; background: rgba(13,27,42,0.95); backdrop-filter: blur(16px); border-radius: 100px; padding: 0.75rem 1.5rem; align-items: center; gap: 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.3); white-space: nowrap; }
    .mobile-nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: white; text-decoration: none; }
    .mobile-nav-logo span { color: var(--green-mid); }
    .mobile-nav-divider { width: 1px; height: 1.2rem; background: rgba(255,255,255,0.15); }
    .mobile-menu-btn { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; color: rgba(255,255,255,0.8); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; padding: 0; }
    .mobile-menu-icon { display: flex; flex-direction: column; gap: 3px; }
    .mobile-menu-icon span { display: block; width: 16px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.25s; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
    .mobile-menu-drawer { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%); z-index: 199; background: rgba(13,27,42,0.98); backdrop-filter: blur(20px); border-radius: 1.2rem; padding: 1.2rem; min-width: 240px; display: none; flex-direction: column; gap: 0.3rem; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
    .mobile-menu-drawer.open { display: flex; }
    .drawer-link { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 1rem; border-radius: 0.75rem; text-decoration: none; font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 300; transition: background 0.15s; }
    .drawer-link:hover { background: rgba(26,95,168,0.2); color: white; }
    .drawer-link-icon { font-size: 1rem; width: 1.5rem; text-align: center; }
    .drawer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.3rem 0; }
    .drawer-emergency { display: flex; align-items: center; justify-content: center; padding: 0.85rem; border-radius: 100px; background: var(--red); color: white; text-decoration: none; font-size: 0.85rem; font-weight: 500; margin-top: 0.3rem; }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links, .nav-emergency { display: none; }
      .mobile-nav { display: flex; }
      .breadcrumb-bar { padding: 5rem 1.5rem 0; }
      .page-header { padding: 0 1.5rem 3rem; }
      .header-inner { grid-template-columns: 1fr; }
      .header-stat-box { display: none; }
      .verified-bar { padding: 0.7rem 1.5rem; flex-direction: column; gap: 0.3rem; text-align: center; }
      .page-layout { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
      .sidebar { position: static; }
      .listing-row { grid-template-columns: 1fr; }
      .listing-row-right { flex-direction: row; }
      .related-grid { grid-template-columns: 1fr; }
      footer { padding: 2rem 1.5rem; }
    }