.phone-bar {
  background: #dc2626;
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  position: sticky;
  top: 0;
  z-index: 1100;
}

.phone-bar a {
  color: #fff;
  text-decoration: none;
}

.phone-bar a:hover {
  text-decoration: underline;
}

.global-header {
  background: transparent !important;
  color: #1e3a8a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none !important;
  border: none !important;
  margin: 0;
  padding: 0;
}

.global-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent !important;
}

.global-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.global-nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.global-nav-links a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.global-nav-links a:hover {
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.08);
}

.global-language-switch {
  margin-left: auto;
  background: #b91c1c;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-nav {
  background: transparent;
  padding: 0.75rem 1rem 0 1rem;
  border: none;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: #1e3a8a;
  text-decoration: none;
}

.breadcrumb-item::after {
  content: "/";
  color: #94a3b8;
  margin-left: 0.5rem;
}

.breadcrumb-item:last-child::after {
  content: "";
}

.breadcrumb-item.active {
  color: #475569;
  font-weight: 600;
}

/* Remove leftover light header bars on legacy pages */
.page-intro + nav,
.page-intro + div > nav {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.page-intro + nav .nav-container,
.page-intro + div > nav .nav-container {
  background: transparent !important;
  border: none !important;
  padding: 0 1.5rem !important;
}

.page-intro + nav a,
.page-intro + div > nav a {
  background: transparent !important;
  color: #1e3a8a !important;
  padding: 0.35rem 0.55rem !important;
  font-weight: 600;
}

.page-intro + nav a:hover,
.page-intro + div > nav a:hover {
  color: #b91c1c !important;
  background: rgba(220, 38, 38, 0.08) !important;
}

.page-intro {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #fff;
  padding: 2.5rem 1.5rem;
  margin: 0;
  border-bottom: 4px solid #dc2626;
}

.page-intro h1,
.page-intro h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-intro p {
  color: #e0e7ff;
  margin-bottom: 0;
}

.page-intro .back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #fef3c7;
  font-weight: 600;
  text-decoration: none;
}

.page-intro .back-link:hover {
  color: #fff;
}

.page-intro .nav-container {
  margin-top: 1.5rem;
}

.page-intro .nav-container a {
  color: #fff;
  font-weight: 600;
}

.page-intro .nav-container a:hover {
  color: #fde68a;
}

.page-intro .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.related-topics {
  margin: 3rem auto;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fdf2f8;
  max-width: 900px;
}

.related-topics h2 {
  color: #be123c;
  margin-bottom: 1rem;
}

.related-topics ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
}

.related-topics li a {
  text-decoration: none;
  color: #9d174d;
  font-weight: 600;
}

.related-topics li a:hover {
  text-decoration: underline;
}

.related-topics .related-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.case-cta {
  margin: 3rem auto;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  text-align: center;
  max-width: 900px;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.25);
}

.case-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.case-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #ffe4e6;
}

.global-btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.global-btn.primary {
  background: #ffffff;
  color: #b91c1c;
  border: 2px solid #ffffff;
}

.global-btn.secondary {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.2);
}

.global-btn:hover {
  opacity: 0.9;
}

.global-footer {
  background: #0b1221;
  color: #e2e8f0;
  margin-top: 4rem;
  padding: 3rem 1rem 2rem;
}

.global-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.global-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.global-footer__column h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #f8fafc;
}

.global-footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-footer__column li {
  margin-bottom: 0.35rem;
}

.global-footer__column a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.95rem;
}

.global-footer__column a:hover {
  text-decoration: underline;
}

.global-footer__legal {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .global-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .global-language-switch {
    margin-left: 0;
  }

  .global-nav-links {
    flex-direction: column;
  }

  .related-topics ul {
    grid-template-columns: 1fr;
  }

  .page-intro {
    padding: 2rem 1rem;
  }
}
