:root {
      --primary: #007cb5;
      --primary-dark: #005a8a;
      --text-dark: #0f172a;
      --text-medium: #475569;
      --text-light: #64748b;
      --bg-primary: #ffffff;
      --bg-secondary: #f8fafc;
      --border: #e2e8f0;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background: var(--bg-secondary);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    .header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid #e2e8f0;
    }
    .header-container {
      max-width: 1400px; margin: 0 auto;
      padding: 20px 40px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo-img { height: 55px; transition: all 0.3s ease; }
    @media (max-width: 600px) { .logo-img { max-height: 40px; } }
    .nav-buttons { display: flex; align-items: center; gap: 32px; }
    .nav-button {
      font-family: 'Outfit', sans-serif;
      font-size: 15px; font-weight: 600;
      color: #475569; text-decoration: none;
      position: relative; padding: 8px 0;
      transition: color 0.3s ease;
    }
    .nav-button::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: #007cb5;
      transition: width 0.3s ease;
    }
    .nav-button:hover { color: #007cb5; }
    .nav-button:hover::after { width: 100%; }
    .burger-menu {
      display: none; flex-direction: column; gap: 6px;
      cursor: pointer; background: transparent; border: none; z-index: 101;
    }
    .burger-menu span {
      width: 28px; height: 3px; background: #007cb5;
      border-radius: 2px; transition: all 0.3s ease;
    }
    .burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .burger-menu.active span:nth-child(2) { opacity: 0; }
    .burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 99; background: #fff;
      display: flex; flex-direction: column;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(.76,0,.24,1);
      overflow-y: auto;
    }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu-content {
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      gap: 4px; flex: 1; padding: 40px;
    }
    .mobile-menu .nav-button {
      font-size: 24px; font-weight: 700;
      padding: 14px 32px; border-radius: 12px;
      width: 100%; text-align: center;
    }
    .mobile-menu .nav-button:hover { color: #007cb5; background: #f0f9ff; }
    @media (max-width: 768px) {
      .burger-menu { display: flex; }
      .nav-buttons { display: none; }
      .logo-img { height: 40px; }
      .header-container { padding: 12px 20px; }
    }
    .main-content { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
    h1 {
      font-family: 'Outfit', sans-serif;
      font-size: 48px; font-weight: 300;
      color: var(--primary); margin-bottom: 16px;
    }
    .page-date { font-size: 14px; color: var(--text-light); margin-bottom: 40px; }
    .content-card {
      background: white; border-radius: 16px; padding: 48px;
      color: var(--text-medium); line-height: 1.8;
      border: 1px solid var(--border);
    }
    .content-card h2 {
      font-family: 'Outfit', sans-serif;
      color: var(--primary); font-size: 24px;
      margin-bottom: 16px; margin-top: 32px;
    }
    .content-card h2:first-of-type { margin-top: 0; }
    .content-card p { margin-bottom: 20px; }
    .content-card ul { margin-bottom: 20px; padding-left: 24px; }
    .content-card li { margin-bottom: 10px; }
    .content-card a { color: var(--primary); }
    .highlight-box {
      background: #fef3c7; border-left: 4px solid #f59e0b;
      padding: 20px; margin: 24px 0; border-radius: 4px;
    }
    .highlight-box strong { color: #92400e; font-size: 16px; }
    .placeholder-box {
      background: #fee2e2; border-left: 4px solid #dc2626;
      padding: 16px 20px; margin: 12px 0 24px; border-radius: 4px;
      font-size: 14px; color: #991b1b;
    }
    .footer { padding: 52px 32px 36px; border-top: 1px solid #e2e8f0; background: #fff; margin-top: 80px; }
    .footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
    .footer-links { display: flex; gap: 8px 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
    .footer-link { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; color: #66636d; text-decoration: none; transition: color .2s; }
    .footer-link:hover { color: #007cb5; }
    .footer p { font-size: 13px; color: #94a3b8; }
    @media (max-width: 768px) {
      h1 { font-size: 36px; }
      .content-card { padding: 32px 24px; }
      .footer { padding: 40px 20px 28px; }
    }
    @media (max-width: 480px) {
      h1 { font-size: 28px; }
      .content-card { padding: 24px 20px; }
      p { font-size: 15px; }
    }

/* Extracted from inline style attributes - CSP unsafe-inline removal */
.highlight-box--spaced { margin-top: 40px; }
