    /* ══════════════════════════════════════════════
       BLOG ARTICLE PAGE — All styles for the blog
       post page. These should eventually be moved
       into style.css.
       Classes used: .article-hero, .article-hero-label,
       .article-hero-title, .article-hero-meta, .meta-dot,
       .article-breadcrumb, .blog-article-page,
       .article-layout, .article-body, .article-sidebar,
       .article-divider, .step-badge, .key-points,
       .brand-highlight, .brand-highlight-icon,
       .toc-widget, .toc-header, .toc-list,
       .sidebar-widget, .sidebar-widget-header,
       .services-list, .sidebar-cta, .sidebar-cta-icon,
       .sidebar-cta-btn, .faq-section-title
    ══════════════════════════════════════════════ */

    /* ── Article Hero Banner ── */
    .article-hero {
      background: linear-gradient(135deg, #745141 0%, #5E3A2A 100%);
      padding: 64px 0 48px;
      color: #fff;
    }
    .article-hero-label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.15);
      color: #F3ECE4;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 20px;
      padding: 4px 14px;
      margin-bottom: 18px;
    }
    .article-hero-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 700;
      line-height: 1.35;
      color: #fff;
      max-width: 820px;
      margin-bottom: 22px;
    }
    .article-hero-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 14px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.75);
    }
    .article-hero-meta i {
      margin-right: 5px;
      opacity: 0.85;
    }
    .meta-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
    }

    /* ── Breadcrumb ── */
    .article-breadcrumb {
      background: #F3ECE4;
      border-bottom: 1px solid rgba(116,81,65,0.12);
      padding: 10px 0;
    }
    .article-breadcrumb ol {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 6px;
      font-size: 0.82rem;
      color: #837367;
    }
    .article-breadcrumb ol li {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .article-breadcrumb ol li a {
      color: #745141;
      text-decoration: none;
      font-weight: 500;
    }
    .article-breadcrumb ol li a:hover {
      text-decoration: underline;
    }
    .article-breadcrumb ol li.active {
      color: #5E463A;
      font-weight: 500;
    }

    /* ── Main Article Layout ── */
    .blog-article-page {
      background: var(--bg-primary, #E8E0D4);
      padding: 52px 0 72px;
    }
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 40px;
      align-items: start;
    }
    @media (max-width: 991px) {
      .article-layout {
        grid-template-columns: 1fr;
      }
      .article-sidebar {
        order: -1; /* sidebar above content on mobile */
      }
    }

    /* ── Article Body ── */
    .article-body h2 {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--text-heading, #745141);
      margin: 32px 0 14px;
      line-height: 1.3;
    }
    .article-body p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-body, #5E463A);
      margin-bottom: 16px;
    }
    .article-divider {
      height: 1px;
      background: linear-gradient(to right, rgba(116,81,65,0.25), transparent);
      margin: 36px 0;
    }

    /* ── Step Badge ── */
    .step-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #745141, #9E6A50);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .step-badge i {
      font-size: 1rem;
    }

    /* ── Key Points List ── */
    .key-points {
      list-style: none;
      padding: 0;
      margin: 16px 0 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .key-points li {
      background: #F3ECE4;
      border-left: 4px solid #745141;
      border-radius: 0 8px 8px 0;
      padding: 14px 18px;
      font-size: 0.97rem;
      line-height: 1.7;
      color: var(--text-body, #5E463A);
    }
    .key-points li strong {
      display: block;
      color: var(--text-heading, #745141);
      font-weight: 700;
      margin-bottom: 4px;
    }

    /* ── Brand Highlight Box ── */
    .brand-highlight {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: linear-gradient(135deg, #745141 0%, #5E3A2A 100%);
      color: #fff;
      border-radius: 12px;
      padding: 22px 24px;
      margin: 24px 0;
    }
    .brand-highlight-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .brand-highlight p {
      margin: 0;
      font-size: 0.97rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.92);
    }
    .brand-highlight p strong {
      color: #fff;
    }

    /* ── FAQ inside article ── */
    .faq-section-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-heading, #745141);
      margin: 32px 0 20px;
    }
    /* Reuse .faq-item / .faq-question / .faq-answer from style.css */
    /* Override icon layout since article FAQ uses <i> directly in button, not .faq-icon span */
    .article-body .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .article-body .faq-question i {
      flex-shrink: 0;
      font-size: 1rem;
      transition: transform 0.3s ease;
      color: #745141;
    }
    .article-body .faq-item.open .faq-question i {
      transform: rotate(45deg);
    }
    .article-body .faq-answer {
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--text-body, #5E463A);
      padding: 0 18px 16px;
    }

    /* ── Sidebar ── */
    .article-sidebar {
      position: sticky;
      top: 80px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* Table of Contents */
    .toc-widget {
      background: #F3ECE4;
      border: 1px solid rgba(116,81,65,0.15);
      border-radius: 12px;
      overflow: hidden;
    }
    .toc-header {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #745141;
      color: #fff;
      padding: 14px 18px;
      font-weight: 600;
      font-size: 0.9rem;
    }
    .toc-header i {
      font-size: 1rem;
    }
    .toc-list {
      list-style: none;
      padding: 12px 0;
      margin: 0;
    }
    .toc-list li a {
      display: block;
      padding: 7px 18px;
      font-size: 0.875rem;
      color: var(--text-body, #5E463A);
      text-decoration: none;
      border-left: 3px solid transparent;
      transition: all 0.2s;
    }
    .toc-list li a:hover {
      color: #745141;
      border-left-color: #745141;
      background: rgba(116,81,65,0.06);
    }

    /* Services Sidebar Widget */
    .sidebar-widget {
      background: #fff;
      border: 1px solid rgba(116,81,65,0.12);
      border-radius: 12px;
      overflow: hidden;
    }
    .sidebar-widget-header {
      background: linear-gradient(135deg, #745141, #9E6A50);
      color: #fff;
      padding: 16px 18px;
    }
    .sidebar-widget-header h3 {
      font-size: 1rem;
      font-weight: 700;
      margin: 0 0 4px;
      color: #fff;
    }
    .sidebar-widget-header p {
      font-size: 0.78rem;
      margin: 0;
      color: rgba(255,255,255,0.8);
    }
    .services-list {
      list-style: none;
      margin: 0;
      padding: 8px 0;
    }
    .services-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      border-bottom: 1px solid rgba(116,81,65,0.07);
      transition: background 0.2s;
      cursor: pointer;
    }
    .services-list li:last-child {
      border-bottom: none;
    }
    .services-list li:hover {
      background: rgba(116,81,65,0.05);
    }
    .service-icon-wrap {
      width: 30px;
      height: 30px;
      background: rgba(116,81,65,0.1);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #745141;
      font-size: 0.9rem;
    }
    .service-name {
      font-size: 0.82rem;
      color: var(--text-body, #5E463A);
      flex: 1;
      line-height: 1.3;
    }
    .service-arrow {
      font-size: 0.75rem;
      color: #745141;
      opacity: 0.5;
    }

    /* CTA Widget */
    .sidebar-cta {
      background: linear-gradient(135deg, #745141 0%, #5E3A2A 100%);
      border-radius: 12px;
      padding: 28px 22px;
      text-align: center;
      color: #fff;
    }
    .sidebar-cta-icon {
      width: 52px;
      height: 52px;
      background: rgba(255,255,255,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #fff;
      margin: 0 auto 14px;
    }
    .sidebar-cta h4 {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .sidebar-cta p {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 18px;
      line-height: 1.5;
    }
    .sidebar-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #fff;
      color: #745141;
      font-weight: 700;
      font-size: 0.85rem;
      padding: 10px 22px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s;
    }
    .sidebar-cta-btn:hover {
      background: #F3ECE4;
      color: #5E3A2A;
    }
  