.faq-answer { max-height: none; overflow: visible; padding: 0 24px 20px; }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
        .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
        @media (max-width: 768px) {
            nav .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #1a1a1a; flex-direction: column; padding: 16px; gap: 4px; }
            nav .nav-links.open { display: flex; }
            nav .hamburger { display: flex; }
        }

        /* ===== NEW SEO/GEO COMPONENTS ===== */
        .quick-answer {
            background: rgba(212,168,75,0.08);
            border-left: 4px solid #d4a84b;
            padding: 20px 24px;
            border-radius: 0 8px 8px 0;
            margin: 24px 0;
            color: #1a1a1a;
        }
        .quick-answer strong { color: #1a1a1a; }
        .toc {display: block;
      background: #f8fafc;
            border: 1px solid rgba(26,60,110,0.08);
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
        }
        .toc h3 { font-size: 16px; color: #2c5282; margin-bottom: 12px;; margin-top: 0}
        .toc ol { padding-left: 24px; margin: 0; }
        .toc li { margin-bottom: 8px; }
        .toc a { color: #2c5282; text-decoration: none; }
        .toc a:hover { text-decoration: underline; }
        .ai-summary {
            background: rgba(44,82,130,0.05);
            border: 1px solid rgba(44,82,130,0.15);
            border-radius: 12px;
            padding: 24px;
            margin: 32px 0;
        }
        .ai-summary h3 { font-size: 18px; color: #2c5282; margin-bottom: 8px; }
        .ai-summary p { color: #334155; margin-bottom: 0; }
        .article-cta {
            background: #f8fafc;
            padding: 32px;
            text-align: center;
            margin: 48px 0;
            border-radius: 12px;
            color: #1a1a1a;
        }
        .article-cta h3 { color: #2c5282; font-size: 20px; margin-bottom: 12px; }
        .article-cta p { color: #374151; margin-bottom: 16px; }
        .article-cta a {
            display: inline-block;
            background: #2c5282;
            color: #ffffff;
            padding: 14px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
        }
        .article-cta a:hover { background: #1a3c6e; }
        .cta-contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 16px 0; font-size: 14px; color: #4b5563; }
        .cta-contact span { display: inline-flex; align-items: center; gap: 6px; }
        .faq-section { margin-top: 48px; }
        .faq-section h2 { color: #1a1a1a; margin-bottom: 24px; }

    


/* Resources dropdown nav */
.dropdown { position: relative; display: inline-block; }
.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
  z-index: 199;
}

.dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 1100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; z-index: 1100}
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #2d3748;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu a:hover { background: #f7fafc; color: #2b6cb0; }
.dropdown-menu a.active { color: #2b6cb0; font-weight: 600; }




/* Unified header styles */
body > header {
  background: #1e3a5f !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
}
header nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo::before {
  content: 'A';
  width: 44px;
  height: 44px;
  background: #d4a84b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #1e3a5f;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #d4a84b;
  border-radius: 1px;
}
.nav-cta {
  background: #d4a84b;
  color: #1e3a5f !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
}
.nav-cta:hover { background: #d49010; transform: translateY(-2px); }
/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.lang-switcher a {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}
.lang-switcher a.active {
  background: rgba(255,255,255,0.25);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.lang-switcher a:hover:not(.active) { color: #fff; }
/* Resources dropdown nav */
.dropdown { position: relative; display: inline-block; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: 1100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; z-index: 1100}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #2d3748;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu a:hover { background: #f7fafc; color: #2b6cb0; }
.dropdown-menu a.active { color: #2b6cb0; font-weight: 600; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ===== Author Byline ===== */
.author-byline { font-size: 0.95rem; color: #4a5568; margin: 8px 0 24px; }
.author-byline a { color: #2c5282; text-decoration: underline; }
.author-byline a:hover { color: #d4a84b; }
