
    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      background: #f8f7f4;
      color: #2c2c2c;
      line-height: 1.75;
    }

    /* ===== WORDPRESS WRAPPER — kill theme spacing ===== */
    .aok-location-html-page {
      margin: 0 !important;
      padding: 0 !important;
      max-width: none !important;
    }
    .aok-location-html-page p:empty {
      display: none !important;
      margin: 0 !important;
      padding: 0 !important;
      line-height: 0 !important;
      font-size: 0 !important;
    }

    /* ===== TOP NAV ===== */
    .site-nav {
      background: #1a1a2e;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .site-nav .logo {
      font-family: 'Arial', sans-serif;
      font-size: 1.35rem;
      font-weight: 900;
      color: #e8c84a;
      letter-spacing: 0.5px;
      text-decoration: none;
    }
    .site-nav .logo span { color: #ffffff; }
    .nav-cta {
      background: #e8c84a;
      color: #1a1a2e;
      font-family: 'Arial', sans-serif;
      font-weight: 700;
      font-size: 0.875rem;
      padding: 0.5rem 1.25rem;
      border-radius: 4px;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: #f5d76e; }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 520px;
      overflow: hidden;
      background: #082645;
    }
    .hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: brightness(1.05) saturate(1.04);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(8,38,69,0.02) 0%,
        rgba(8,38,69,0.16) 52%,
        rgba(8,38,69,0.48) 100%
      );
    }
    .hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2.5rem 3rem 2.5rem;
    }
    .hero-badge {
      display: inline-block;
      background: #e8c84a;
      color: #1a1a2e;
      font-family: 'Arial', sans-serif;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 3px;
      margin-bottom: 0.75rem;
    }
    .hero-content h1 {
      font-family: 'Arial', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 0.6rem;
      text-shadow: 0 2px 8px rgba(0,0,0,0.42);
    }
    .hero-tagline {
      font-family: 'Georgia', serif;
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: rgba(255,255,255,0.9);
      font-style: italic;
      max-width: 700px;
      text-shadow: 0 1px 5px rgba(0,0,0,0.42);
    }

    /* ===== QUICK STATS BAR ===== */
    .stats-bar {
      background: #1a1a2e;
      color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 0;
      margin: 0 !important;
      padding: 0.5rem 0;
    }
    .stat-item {
      padding: 1.5rem 2.5rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.12);
      flex: 1;
    }
    .stat-item:last-child { border-right: none; }
    .stat-label {
      font-family: 'Arial', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #e8c84a;
      display: block;
      margin-bottom: 0.1rem;
    }
    .stat-value {
      font-family: 'Arial', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      line-height: 1.3;
    }
    /* Counter animation */
    .stat-value {
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .stat-value.animated {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== MAIN LAYOUT ===== */
    .page-wrapper {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ===== CONTENT SECTIONS ===== */
    .content-section {
      padding: 3rem 0 2rem;
      border-bottom: 1px solid #e0ddd6;
    }
    .content-section:last-of-type { border-bottom: none; }

    h2 {
      font-family: 'Arial', sans-serif;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 800;
      color: #1a1a2e;
      letter-spacing: 0.3px;
      margin-bottom: 1.25rem;
      padding-bottom: 0.6rem;
      border-bottom: 3px solid #e8c84a;
      display: inline-block;
    }
    h3 {
      font-family: 'Arial', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #1a1a2e;
      margin: 1.5rem 0 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    p {
      margin-bottom: 1.1rem;
      font-size: 1.02rem;
      color: #3a3a3a;
    }
    strong { color: #1a1a2e; }

    /* ===== TWO-COLUMN LAYOUT for demographics + prices ===== */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      padding: 3rem 0 2rem;
      border-bottom: 1px solid #e0ddd6;
    }
    @media (max-width: 700px) {
      .two-col { grid-template-columns: 1fr; }
    }

    /* ===== TABLES ===== */
    .table-wrap {
      overflow-x: auto;
      margin: 1rem 0 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    table {
      width: 100%;
      border-collapse: collapse;
      font-family: 'Arial', sans-serif;
      font-size: 0.92rem;
    }
    thead {
      background: #1a1a2e;
      color: #ffffff;
    }
    thead th {
      padding: 0.75rem 1rem;
      text-align: left;
      font-weight: 700;
      letter-spacing: 0.3px;
    }
    tbody tr:nth-child(even) { background: #f0ede6; }
    tbody tr:nth-child(odd) { background: #ffffff; }
    tbody td {
      padding: 0.65rem 1rem;
      border-bottom: 1px solid #e8e4dc;
      color: #2c2c2c;
    }
    tbody tr:last-child td { border-bottom: none; }

    /* ===== LISTS ===== */
    ul {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 1.5rem;
    }
    ul li {
      padding: 0.55rem 0 0.55rem 1.75rem;
      position: relative;
      border-bottom: 1px solid #ece9e1;
      font-size: 0.98rem;
      color: #3a3a3a;
    }
    ul li:last-child { border-bottom: none; }
    ul li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: #e8c84a;
      font-size: 0.9rem;
      top: 0.6rem;
    }

    /* ===== SCHOOLS SECTION ===== */
    .schools-section {
      background: #f0ede6;
      border-radius: 10px;
      padding: 2rem;
      margin: 1rem 0;
    }

    /* ===== ACTIVITIES GRID ===== */
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin: 1rem 0 1.5rem;
    }
    .activity-card {
      background: #ffffff;
      border-radius: 8px;
      padding: 1.1rem 1.25rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      border-left: 4px solid #e8c84a;
    }
    .activity-card strong {
      display: block;
      font-family: 'Arial', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 0.35rem;
    }
    .activity-card p {
      font-size: 0.85rem;
      color: #555;
      margin: 0;
      line-height: 1.5;
    }

    /* ===== WHY AOK SECTION ===== */
    .why-aok {
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
      color: #ffffff;
      border-radius: 12px;
      padding: 2.5rem 2.5rem;
      margin: 2rem 0;
    }
    .why-aok h2 {
      color: #ffffff !important;
      border-bottom-color: rgba(232,200,74,0.4);
    }
    .why-aok p { color: rgba(255,255,255,0.88); }
    .why-aok strong { color: #e8c84a; }

    /* ===== CTA SECTION ===== */
    .cta-section {
      background: #e8c84a;
      border-radius: 12px;
      padding: 2.5rem 2.5rem;
      margin: 2rem 0 3rem;
      text-align: center;
    }
    .cta-section h2 {
      font-family: 'Arial', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: #1a1a2e !important;
      border: none !important;
      display: block;
      margin-bottom: 0.75rem;
    }
    .cta-section p {
      color: #2a2a2a;
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }
    .cta-btn {
      display: inline-block;
      background: #1a1a2e;
      color: #e8c84a !important;
      font-family: 'Arial', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      padding: 0.9rem 2.5rem;
      border-radius: 50px;
      text-decoration: none !important;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(26,26,46,0.3);
    }
    .cta-btn:hover {
      background: linear-gradient(135deg, #e6a817, #c48b0a) !important;
      color: #1a1a2e !important;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(230,168,23,0.4);
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: #111122;
      color: rgba(255,255,255,0.5);
      text-align: center;
      padding: 1.5rem;
      font-family: 'Arial', sans-serif;
      font-size: 0.8rem;
    }
    .site-footer a { color: #e8c84a; text-decoration: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero { height: 380px; }
      .hero-content { padding: 1.5rem; }
      .hero-content h1 { font-size: 1.6rem !important; }
      .stat-item { padding: 0.75rem 1rem; }
      .stats-bar { flex-direction: column; }
      .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); width: 100%; }
      .stat-item:last-child { border-bottom: none !important; }
      .page-wrapper { padding: 0 1rem; }
      .why-aok, .cta-section { padding: 1.75rem 1.5rem; }

      /* Stack Demographics & Rental Prices side-by-side sections */
      .data-section, .content-section {
        display: block !important;
      }
      .data-section > div,
      .content-section > div {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
      }

      /* Tables full width on mobile */
      table {
        width: 100% !important;
        font-size: 0.85rem !important;
      }
      thead th, tbody td {
        padding: 0.5rem 0.6rem !important;
      }

      /* Activity cards single column */
      .activity-grid, .things-grid {
        grid-template-columns: 1fr !important;
      }

      /* Section headings smaller on mobile */
      h2 {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
      }

      /* Content text readable */
      p, li {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
      }

      /* CTA section */
      .cta-section h2 {
        font-size: 1.2rem !important;
      }
      .why-aok h2 {
        font-size: 1.2rem !important;
      }

      /* School cards stack */
      .school-list, .schools-grid {
        grid-template-columns: 1fr !important;
      }
    }

    @media (max-width: 480px) {
      .hero { height: 300px; }
      .hero-content h1 { font-size: 1.3rem !important; }
      .hero-tagline { font-size: 0.85rem !important; }
      .stat-label { font-size: 0.6rem !important; }
      .stat-value { font-size: 1rem !important; }
    }
  
