@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700&display=swap');

/* ============================================
   CSS RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:    #1a2e5a;
  --blue-mid:     #2c4a8a;
  --blue-light:   #e8edf6;
  --green-muted:  #3d7a5c;
  --green-light:  #e8f4ee;
  --gray-100:     #f4f5f7;
  --gray-200:     #e9ebef;
  --gray-300:     #d1d5dd;
  --gray-400:     #9aa3b0;
  --gray-500:     #6b7480;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --white:        #ffffff;
  --accent-gold:  #c9952a;
  --red-soft:     #c0392b;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07);
  --shadow-md:    0 4px 16px rgba(26,46,90,.10);
  --shadow-lg:    0 8px 32px rgba(26,46,90,.14);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Merriweather', Georgia, serif;
  --transition:   .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--gray-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-deep); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); color: var(--blue-deep); line-height: 1.25; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   LAYOUT
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section--gray { background: var(--gray-100); }
.section--white { background: var(--white); }
.section--blue { background: var(--blue-deep); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue h4 { color: var(--white); }

/* ============================================
   HEADER / NAV
============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.45rem; font-weight: 700; color: var(--blue-deep);
  font-family: var(--font-serif); letter-spacing: -.5px;
}
.logo span { color: var(--green-muted); }
.logo-icon {
  width: 38px; height: 38px; background: var(--blue-deep); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block; padding: 8px 14px; font-size: .875rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { background: var(--blue-light); color: var(--blue-deep); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all var(--transition);
  z-index: 200;
}
.main-nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 10px 18px; font-size: .875rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100); transition: background var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--blue-light); color: var(--blue-deep); }

.nav-cta {
  background: var(--blue-deep); color: var(--white) !important;
  border-radius: var(--radius-sm); padding: 8px 18px !important;
}
.nav-cta:hover { background: var(--blue-mid) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media(max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0;
    border-top: 1px solid var(--gray-200); box-shadow: var(--shadow-md);
    padding: 16px 0; max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav > li > a { padding: 12px 24px; border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 3px solid var(--blue-light); margin-left: 24px; }
}

/* ============================================
   FOOTER
============================================ */
.site-footer { background: var(--blue-deep); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--green-muted); }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.footer-col h4 { font-family: var(--font-sans); font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .875rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: .7; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: .8rem; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }
@media(max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   HERO
============================================ */
.hero {
  background: var(--white); padding: 80px 0 72px;
  border-bottom: 1px solid var(--gray-200);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text p { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 32px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 380px; object-fit: cover; }
@media(max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { height: 250px; }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--blue-deep); color: var(--white); }
.btn-primary:hover { background: var(--blue-mid); color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--blue-deep); color: var(--blue-deep); background: transparent; }
.btn-outline:hover { background: var(--blue-deep); color: var(--white); }
.btn-green { background: var(--green-muted); color: var(--white); }
.btn-green:hover { background: #2f5f47; color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: .825rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-white { background: var(--white); color: var(--blue-deep); }
.btn-white:hover { background: var(--gray-100); color: var(--blue-deep); }

/* ============================================
   CARDS
============================================ */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--green-muted); margin-bottom: 10px;
}
.card-body h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card-body h3 a { color: var(--blue-deep); }
.card-body h3 a:hover { color: var(--blue-mid); }
.card-body p { font-size: .875rem; color: var(--gray-500); margin-bottom: 16px; }
.card-meta { display: flex; gap: 16px; font-size: .8rem; color: var(--gray-400); flex-wrap: wrap; }
.card-meta span { display: flex; align-items: center; gap: 5px; }

/* GRID CARDS */
.cards-grid { display: grid; gap: 28px; }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media(max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 640px) {
  .cards-grid--4, .cards-grid--3, .cards-grid--2 { grid-template-columns: 1fr; }
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--blue-deep); color: var(--white); padding: 40px 0;
}
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-family: var(--font-sans); font-size: 2.2rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.stat-item p { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.stat-item .stat-trend { font-size: .8rem; color: #5ec98b; margin-top: 4px; }
@media(max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
}

/* ============================================
   SECTION HEADERS
============================================ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-muted); margin-bottom: 12px;
}

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--blue-deep); }
.breadcrumb span.sep { opacity: .4; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #223a7a 100%);
  padding: 60px 0; color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 620px; }

/* ============================================
   ARTICLE LAYOUT
============================================ */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; padding: 60px 0; }
.article-content { background: var(--white); border-radius: var(--radius-md); padding: 48px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.article-content h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.article-content h3 { margin: 1.5rem 0 .75rem; font-size: 1.2rem; }
.article-content p { margin-bottom: 1.1rem; line-height: 1.8; color: var(--gray-700); }
.article-content ul, .article-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.article-content li { margin-bottom: .5rem; line-height: 1.7; color: var(--gray-700); list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
  border-left: 4px solid var(--green-muted); padding: 16px 24px;
  background: var(--green-light); margin: 1.5rem 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content blockquote p { color: var(--blue-deep); font-style: italic; font-weight: 500; margin: 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .9rem; }
.article-content table th { background: var(--blue-deep); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.article-content table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.article-content table tr:nth-child(even) td { background: var(--gray-100); }
.article-img { width: 100%; border-radius: var(--radius-md); margin: 1.5rem 0; box-shadow: var(--shadow-sm); }

.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--blue-light); font-size: .95rem; }
.widget-links li { border-bottom: 1px solid var(--gray-100); }
.widget-links li:last-child { border-bottom: none; }
.widget-links li a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: .875rem; color: var(--gray-700); }
.widget-links li a:hover { color: var(--blue-deep); }
.widget-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  background: var(--blue-light); color: var(--blue-deep); padding: 5px 12px;
  border-radius: 20px; font-size: .78rem; font-weight: 500; transition: background var(--transition);
}
.tag-chip:hover { background: var(--blue-deep); color: var(--white); }

@media(max-width: 1024px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
@media(max-width: 640px) {
  .article-content { padding: 28px 20px; }
}

/* ============================================
   DATA CHARTS (CSS-based)
============================================ */
.chart-bar-container { margin: 1.5rem 0; }
.chart-bar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.chart-bar-label { font-size: .8rem; font-weight: 500; color: var(--gray-700); min-width: 80px; text-align: right; }
.chart-bar-track { flex: 1; background: var(--gray-200); border-radius: 4px; height: 22px; overflow: hidden; }
.chart-bar-fill {
  height: 100%; border-radius: 4px; display: flex; align-items: center; justify-content: flex-end;
  padding-right: 8px; font-size: .75rem; font-weight: 700; color: var(--white); transition: width 1s ease;
}
.fill-blue { background: var(--blue-mid); }
.fill-green { background: var(--green-muted); }
.fill-gold { background: var(--accent-gold); }
.fill-red { background: var(--red-soft); }

.data-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table thead th { background: var(--blue-deep); color: var(--white); padding: 12px 16px; font-weight: 600; text-align: left; white-space: nowrap; }
.data-table tbody td { padding: 11px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.data-table tbody tr:hover td { background: var(--blue-light); }
.data-table tbody tr:nth-child(even) td { background: var(--gray-100); }
.data-table tbody tr:nth-child(even):hover td { background: var(--blue-light); }
.trend-up { color: var(--green-muted); font-weight: 600; }
.trend-down { color: var(--red-soft); font-weight: 600; }

/* ============================================
   HIGHLIGHT BOXES
============================================ */
.highlight-box {
  padding: 24px 28px; border-radius: var(--radius-md); margin: 1.5rem 0;
}
.highlight-box--blue { background: var(--blue-light); border-left: 4px solid var(--blue-mid); }
.highlight-box--green { background: var(--green-light); border-left: 4px solid var(--green-muted); }
.highlight-box--gold { background: #fef9ec; border-left: 4px solid var(--accent-gold); }
.highlight-box h4 { margin-bottom: 8px; font-family: var(--font-sans); }
.highlight-box p { margin: 0; font-size: .9rem; }

/* ============================================
   EXPERT CARDS
============================================ */
.expert-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.expert-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--blue-light); }
.expert-name { font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; font-family: var(--font-sans); }
.expert-title { font-size: .8rem; color: var(--green-muted); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.expert-bio { font-size: .85rem; color: var(--gray-500); line-height: 1.65; }

/* ============================================
   FAQ
============================================ */
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; background: var(--white); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: .95rem;
  color: var(--blue-deep); transition: background var(--transition);
}
.faq-question:hover { background: var(--blue-light); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: .9rem; color: var(--gray-700); line-height: 1.75; }
.faq-item.open .faq-question { background: var(--blue-light); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }

/* ============================================
   CONTACT FORM
============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm); font-size: .9rem; font-family: var(--font-sans);
  background: var(--white); color: var(--gray-700); transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(44,74,138,.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none; background: var(--green-light); border: 1px solid var(--green-muted);
  border-radius: var(--radius-md); padding: 20px 24px; text-align: center;
  color: var(--green-muted); font-weight: 600; font-size: .95rem;
}
.form-success svg { margin: 0 auto 10px; display: block; }
.form-success.visible { display: block; }
@media(max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   INFO CARDS (alternating layout)
============================================ */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.info-split:last-child { margin-bottom: 0; }
.info-split--reverse .info-split-image { order: 2; }
.info-split--reverse .info-split-text { order: 1; }
.info-split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.info-split-image img { width: 100%; height: 320px; object-fit: cover; }
.info-split-text h2 { margin-bottom: 16px; }
.info-split-text p { color: var(--gray-500); margin-bottom: 16px; line-height: 1.8; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px;
  font-size: .9rem; color: var(--gray-700); list-style: none;
}
.check-list li::before { content: "✓"; color: var(--green-muted); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media(max-width: 768px) {
  .info-split { grid-template-columns: 1fr; gap: 32px; }
  .info-split--reverse .info-split-image { order: 0; }
  .info-split--reverse .info-split-text { order: 0; }
}

/* ============================================
   TIMELINE
============================================ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ""; position: absolute; left: -27px; top: 5px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-mid); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--blue-mid);
}
.timeline-date { font-size: .78rem; font-weight: 700; color: var(--green-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; font-family: var(--font-sans); }
.timeline-body { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   POLICY PAGES
============================================ */
.policy-content { background: var(--white); border-radius: var(--radius-md); padding: 56px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.policy-content h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
.policy-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .75rem; font-family: var(--font-sans); font-weight: 600; color: var(--blue-deep); }
.policy-content p { font-size: .9rem; line-height: 1.85; color: var(--gray-700); margin-bottom: 1rem; }
.policy-content ul, .policy-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.policy-content li { font-size: .9rem; line-height: 1.75; color: var(--gray-700); margin-bottom: .5rem; list-style: disc; }
.policy-content ol li { list-style: decimal; }
.policy-meta { background: var(--blue-light); padding: 16px 20px; border-radius: var(--radius-sm); font-size: .85rem; color: var(--blue-deep); margin-bottom: 2rem; }
@media(max-width: 640px) {
  .policy-content { padding: 28px 20px; }
}

/* ============================================
   SEARCH BAR
============================================ */
.search-bar-wrap { position: relative; max-width: 640px; margin: 0 auto; }
.search-bar-input {
  width: 100%; padding: 14px 60px 14px 20px; border-radius: 40px;
  border: 2px solid var(--gray-300); font-size: 1rem; font-family: var(--font-sans);
  transition: border-color var(--transition);
}
.search-bar-input:focus { outline: none; border-color: var(--blue-mid); }
.search-bar-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: var(--blue-deep); border: none; border-radius: 40px;
  padding: 9px 20px; color: var(--white); font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.search-bar-btn:hover { background: var(--blue-mid); }

/* ============================================
   PAGINATION
============================================ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.page-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--gray-700);
  border: 1.5px solid var(--gray-300); transition: all var(--transition);
}
.page-link:hover, .page-link.active { background: var(--blue-deep); color: var(--white); border-color: var(--blue-deep); }
.page-link.dots { border: none; cursor: default; }

/* ============================================
   MISC
============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 40px 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Notice bar */
.notice-bar { background: var(--blue-light); border-bottom: 1px solid var(--gray-200); padding: 10px 0; font-size: .82rem; color: var(--blue-deep); text-align: center; }
.notice-bar strong { font-weight: 600; }

/* Related articles strip */
.related-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width: 768px) { .related-strip { grid-template-columns: 1fr; } }

/* Map embed */
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); }

/* Inline icon */
.icon-inline { display: inline-flex; align-items: center; gap: 6px; }

/* Scroll to top */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--blue-deep); color: var(--white); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* Cookie Banner */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--blue-deep); color: var(--white); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
#cookieBanner p { font-size: .875rem; color: rgba(255,255,255,.85); margin: 0; }
#cookieBanner a { color: #7eb8ff; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--green-muted); color: var(--white); border: none; padding: 9px 20px; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 600; cursor: pointer; }
.btn-cookie-reject { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); padding: 9px 16px; border-radius: var(--radius-sm); font-size: .875rem; cursor: pointer; }

@media print {
  .site-header, .site-footer, #scrollTop, #cookieBanner, .sidebar { display: none !important; }
  .article-layout { grid-template-columns: 1fr !important; }
}
