:root{
  --gs1-navy:#003a70;
  --gs1-light:#f4f7fb;
  --gs1-orange:#d35400;
  --text:#0b1b2b;
  --muted:#5a6b7b;
  --link:#0a6ea8;
  --border:#dfe6ee;
  --max:1200px;
}

*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--text)}
a{color:inherit;text-decoration:none}

/* Header */
.topbar{background:#fff;border-bottom:1px solid #e6edf5}
.topbar__inner{max-width:var(--max);margin:0 auto;padding:10px 16px;display:flex;justify-content:space-between;align-items:center}
.topbar__tagline{color:var(--muted);font-size:14px}

.nav{background:#fff}
.nav__inner{max-width:var(--max);margin:0 auto;padding:16px;display:flex;align-items:center;gap:20px}
.nav__menu{display:flex;gap:18px;flex:1;justify-content:center}
.nav__item{color:var(--gs1-navy);font-weight:600}
.nav__cta{background:var(--gs1-orange);color:#fff;padding:10px 14px;border-radius:6px;font-weight:700}

/* Hero */
.hero{background:var(--gs1-navy);color:#fff}
.hero__inner{max-width:var(--max);margin:0 auto;padding:48px 16px;display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:center}
.hero__title{margin:0 0 12px;font-size:44px;line-height:1.1}
.hero__lead{margin:0 0 18px;font-size:20px;opacity:.9}
.btn{display:inline-block;background:var(--gs1-orange);color:#fff;padding:12px 16px;border-radius:6px;font-weight:700}
.hero__imgPlaceholder{height:280px;background:rgba(255,255,255,.12);border-radius:10px}

/* Sections */
.section{background:var(--gs1-light)}
.section__inner{max-width:var(--max);margin:0 auto;padding:40px 16px}
.section__title{margin:0 0 20px;color:var(--gs1-navy);font-size:40px}

/* Rich text blocks */
.section__text{max-width:900px;margin-top:16px}
.section__text p{font-size:18px;line-height:1.7;color:#2f2f2f;margin:0 0 14px}

/* Cards (kept) */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:#fff;border:1px solid #e6edf5;border-radius:10px;padding:18px;box-shadow:0 2px 10px rgba(0,0,0,.04)}
.card__title{margin:0 0 8px;color:var(--gs1-navy)}
.card__text{margin:0;color:var(--muted)}

/* News list - subtler like "Available pages" */
.news-list{
  max-width: 900px;
  margin-top: 12px;
}

.news-item{
  padding: 18px 0 22px;
  border-top: 1px solid var(--border);
}

.news-item:first-child{
  border-top: 0;
}

.news-item__date{
  display: inline-block;
  background: var(--gs1-orange);
  color: #fff;
  font-weight: 500;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 16px;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.news-item__title{
  display: block;
  color: var(--link);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  text-decoration: none;
}

.news-item__title:hover{
  text-decoration: underline;
}

/* Footer */
.footer{background:#fff;border-top:1px solid #e6edf5}
.footer__inner{max-width:var(--max);margin:0 auto;padding:18px 16px;color:var(--muted)}

.hero__logo{
  height:60%;
  max-height:240px;
  width:auto;
  object-fit:contain;
}
.section__text a{
  color:#0a6ea8;
  text-decoration:underline;
}

.section__text a:hover{
  text-decoration:none;
}
