/* ==========================================================
   Dutch Governance Advisory – Design System v1.0
   Consistent, professioneel, toegankelijk (WCAG), stil & strak
   ========================================================== */

/* -------------------------
   RESET & BASE
-------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Arial, sans-serif;
  background: #f7f9fc;
  color: #1a1a1a;
  line-height: 1.65;
  font-size: 18px;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Global spacing */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Headings */
h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: 2.7rem;
  color: #0b3d91;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #0b3d91;
}

.subtitle {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Paragraphs */
p {
  margin-bottom: 20px;
  color: #333;
}

/* -------------------------
   TOP NAVIGATION
-------------------------- */

.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b3d91;
  padding: 16px 28px;
}

.nav-left {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-right a {
  color: #dbe6ff;
  text-decoration: none;
  margin-left: 28px;
  font-weight: 500;
  transition: 0.2s;
}

.nav-right a:hover {
  color: #ffffff;
}

.nav-right .active {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

/* -------------------------
   HERO SECTION
-------------------------- */

.hero {
  background: linear-gradient(to bottom, #0b3d91, #07306a);
  text-align: center;
  color: white;
  padding: 130px 20px 120px 20px;
}

.hero h1 {
  font-size: 3rem;
}

.hero .tagline {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 18px;
  color: #d6e4ff;
}

/* -------------------------
   CTA BUTTONS
-------------------------- */

.cta,
.button {
  display: inline-block;
  background: #00a86b;
  padding: 14px 28px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.1s;
}

.cta:hover,
.button:hover {
  background: #008f5d;
  transform: translateY(-2px);
}

button.cta {
  border: none;
  cursor: pointer;
}

/* -------------------------
   FORMS
-------------------------- */

label {
  display: block;
  margin: 18px 0 10px;
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-top: 6px;
}

/* -------------------------
   LISTS (✔︎)
-------------------------- */

ul {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 25px;
  padding-left: 0;
}

ul li {
  padding: 6px 0 6px 26px;
  position: relative;
}

ul li::before {
  content: "✔︎";
  position: absolute;
  left: 0;
  top: 3px;
  color: #00a86b;
  font-weight: 900;
}

/* -------------------------
   FOOTER
-------------------------- */

.footer {
  text-align: center;
  padding: 45px 20px;
  font-size: 0.9rem;
  color: #666;
}

/* -------------------------
   RESPONSIVE
-------------------------- */

@media (max-width: 700px) {

  h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 95px 20px 90px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .topnav {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .nav-right a {
    margin-left: 16px;
  }

  .section {
    padding: 40px 18px;
  }

}
