
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: Inter, system-ui, -apple-system, sans-serif; background: #F8FAFC; color: #0F172A; line-height: 1.6; }
    .skip-link { position: absolute; top: -40px; left: 0; background: #0284C7; color: #fff; padding: 8px 16px; z-index: 100; transition: top 0.2s; font-weight: 600; border-radius: 0 0 8px 0; text-decoration: none; }
    .skip-link:focus { top: 0; }
    .hero { background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%); color: white; padding: 60px 24px 48px; text-align: center; }
    .hero-flag { font-size: 64px; margin-bottom: 16px; display: block; }
    .hero h1 { font-size: clamp(24px, 5vw, 42px); font-weight: 800; margin-bottom: 12px; }
    .hero p { font-size: clamp(15px, 2.5vw, 18px); max-width: 520px; margin: 0 auto 28px; }
    .cta-btn { display: inline-block; background: white; color: #0369A1; font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 50px; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
    .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
    .content { max-width: 720px; margin: 0 auto; padding: 48px 24px; }
    h2 { font-size: 22px; font-weight: 700; margin: 36px 0 16px; color: #0F172A; }
    h2:first-child { margin-top: 0; }
    h3 { font-size: 17px; font-weight: 700; margin: 20px 0 10px; color: #0F172A; }
    p { margin-bottom: 14px; color: #334155; }
    ul { margin: 0 0 16px 20px; color: #334155; }
    ul li { margin-bottom: 6px; }
    .tip-card { background: #F0F9FF; border: 1px solid #BAE6FD; border-radius: 12px; padding: 16px 20px; margin-bottom: 16px; }
    .tip-card strong { color: #0284C7; }
    .faq-item { border-bottom: 1px solid #E2E8F0; padding: 20px 0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-q { font-weight: 700; color: #0F172A; margin-bottom: 8px; }
    .faq-a { color: #475569; }
    footer { text-align: center; padding: 32px 24px; color: #64748B; font-size: 13px; border-top: 1px solid #E2E8F0; }
    footer a { color: #0284C7; text-decoration: none; }
    a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
      outline: 3px solid #0284C7;
      outline-offset: 2px;
      border-radius: 4px;
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
  
/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-top: 1px solid var(--gray-200, #e2e8f0);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  padding: 16px;
  animation: cookieSlideUp 0.3s ease;
}
@keyframes cookieSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { animation: none; }
}
.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-consent-inner p { font-size: 14px; color: var(--gray-700, #334155); margin: 0; }
.cookie-consent-inner a { color: #0369A1; font-weight: 500; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: all 0.15s; font-family: inherit; }
.cookie-btn:focus-visible { outline: 3px solid #0369a1; outline-offset: 2px; }
.cookie-btn-decline { background: var(--gray-100, #f1f5f9); color: var(--gray-700, #334155); }
.cookie-btn-decline:hover { background: var(--gray-200, #e2e8f0); }
.cookie-btn-accept { background: #0284C7; color: white; }
.cookie-btn-accept:hover { background: #0284C7; }

.inline-cta {
  background: linear-gradient(135deg, #F0F9FF, #EFF6FF);
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin: 32px 0;
}
.inline-cta p {
  font-size: 16px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 12px;
}
.social-share {
  text-align: center;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid #E2E8F0;
}
.social-share p {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 12px;
}
.social-share-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #E2E8F0;
  background: white;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s;
}
.social-btn:hover { background: #F8FAFC; border-color: #CBD5E1; }

  