body {
    background-color: #ffffff;
    color: #082860;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
}

.nav-link {
    color: #2090d0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link.active {
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-color: #2090d0;
    text-underline-offset: 0.35rem;
}

/* HOME LOGO */
.logo-large {
    display: block;
    margin: 0 auto 2rem auto;
    width: 520px;
    max-width: 92vw;
}

/* CONTENT */
.content {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
    text-align: center;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    color: #FFFFFF;
}

p {
    line-height: 1.65;
    margin-bottom: 1rem;
    color: #EAEAEA;
}

/* LISTS */
.content ul {
    list-style: disc;
    margin: 1rem auto;
    padding-left: 1.2rem;
    text-align: left;
    display: inline-block;
}

.content ul li {
    text-align: left;
    line-height: 1.65;
}

/* FOOTER */
.site-footer {
    text-align: center;
    color: #9A9A9A;
    margin-top: 3rem;
    padding: 1rem;
    border-top: 1px solid #1f1f1f;
}

/* ------------------------------------------------------------
   SMARTVENTIX - GLOBAL HELPERS (added)
   Added to support "Our Solutions" page layout without exposing IP.
   ------------------------------------------------------------ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header/footer wrappers (optional; safe if unused) */
.site-header {
  padding-top: 1.25rem;
}
.site-main {
  padding: 2rem 0 3rem 0;
}

/* Brand link styling (optional; safe if unused) */
.brand__link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand__link:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: #2090d0;
  text-underline-offset: 0.35rem;
}

/* Nav inside header (optional; safe if unused). If you already use .main-nav/.nav-link, those remain leading. */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
}
.site-nav a {
  color: #2090d0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
}
.site-nav a:hover {
  color: #FFFFFF;
}
.site-nav a[aria-current="page"] {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: #2090d0;
  text-underline-offset: 0.35rem;
}

/* ------------------------------------------------------------
   OUR SOLUTIONS (integrated from our-solutions.css, adapted to dark theme)
   ------------------------------------------------------------ */

.solutions__header {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

.solutions__lead {
  max-width: 75ch;
}

.solutions__card {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
}

.solutions__card h2 {
  margin-top: 0;
}

.solutions__section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.solutions__section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.solutions__pitch {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(32, 144, 208, 0.08);
}

.solutions__payback {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: #EAEAEA;
}

/* Small screens */
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .solutions__card { padding: 1rem; }
  .site-nav, .main-nav { gap: 1rem; flex-wrap: wrap; }
}

/* ------------------------------------------------------------
   MENU & TYPOGRAPHY FORCE OVERRIDES
   These rules are intentionally strong to prevent any page-specific
   scaling differences (e.g., Home showing smaller menu text).
   ------------------------------------------------------------ */
html { font-size: 16px !important; }
body { font-size: 16px !important; line-height: 1.6; }

/* Force menu sizing everywhere */
.main-nav { font-size: 16px !important; }
.nav-link { font-size: 16px !important; }

/* Extra specificity for injected header */
#site-header, .site-header { font-size: 16px !important; }
#site-header .main-nav, .site-header .main-nav { font-size: 16px !important; }
#site-header .nav-link, .site-header .nav-link { font-size: 16px !important; }

/* Also cover legacy menu class if any page still uses it */
.site-nav { font-size: 16px !important; }
.site-nav a { font-size: 16px !important; }

/* Our Solution layout (example-style)
   - Headings/intro centered
   - Content blocks left-aligned for readability
*/
.solutions { max-width: 1100px; margin: 0 auto; }
.solutions__header { text-align: center !important; }
.solutions__lead { margin-left: auto; margin-right: auto; max-width: 75ch; }

.solutions__card {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  text-align: left !important;
}

.solutions__card h2,
.solutions__card h3 {
  text-align: left !important;
}

.solutions__card p,
.solutions__pitch,
.solutions__payback {
  text-align: left !important;
}

.solutions__pitch {
  border-left: 4px solid #2090d0;
}

@media (max-width: 640px) {
  .solutions__card { padding: 1rem !important; }
}

/* ------------------------------------------------------------
   OUR SOLUTION - Example-style layout (matches provided reference)
   Title centered, content left aligned, readable width, spaced bullets.
   ------------------------------------------------------------ */

.solutions--example .solutions__header h1 {
  text-align: center;
}

.solutions--example .solutions__intro {
  max-width: 97ch;
  margin: 0.75rem auto 0 auto;
  text-align: left;
}

.solutions--example .solutions__block {
  max-width: 1100px;
  margin: 2.25rem auto 0 auto;
  text-align: left;
}

.solutions--example .solutions__block h2 {
  margin: 0 0 1rem 0;
  text-align: left;
}

.solutions--example .solutions__list {
  margin: 0;
  padding-left: 2.25rem;          /* controls the bullet-to-text gutter */
  list-style-position: outside;
}

.solutions--example .solutions__list li {
  margin: 1.1rem 0 1.25rem 0;
  padding-left: 0.35rem;          /* fine-tunes distance from bullet to text */
}

.solutions--example .solutions__list li::marker {
  font-size: 1em;
}

.solutions--example .solutions__list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.solutions--example .solutions__list span {
  display: block;
  max-width: 107ch;
}

.solutions--example .solutions__quote {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid #2090d0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.solutions--example .solutions__block--payback {
  margin-bottom: 1rem;
}

.solutions--example .solutions__payback {
  max-width: 97ch;
  margin: 0;
}

/* Make sure any earlier forced centering doesn't override this page */
.solutions--example,
.solutions--example * {
  text-align: inherit;
}

@media (max-width: 640px) {
  .solutions--example .solutions__intro { max-width: 100%; }
  .solutions--example .solutions__block { margin-top: 1.75rem; }
  .solutions--example .solutions__list { padding-left: 1.25rem; }
}

/* ------------------------------------------------------------
   HEADER BRAND LOGO
   ------------------------------------------------------------ */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 44px;
  width: auto;
  display: block;
}

/* On small screens keep it tidy */
@media (max-width: 640px) {
  .site-logo { height: 40px; }
}

/* ------------------------------------------------------------
   WHITE THEME OVERRIDES (logo-based)
   Backgrounds: white
   Text color: SmartVentix 'Smart' color (#082860)
   ------------------------------------------------------------ */
html, body {
  background: #ffffff !important;
  color: #082860 !important;
}

.site-header, .site-main, .site-footer, main, footer, header {
  background: #ffffff !important;
}

a, p, li, span, strong, em, h1, h2, h3, h4, h5, h6 {
  color: #082860;
}

/* Navigation */
.main-nav {
  background: #ffffff !important;
}
.nav-link {
  color: #082860 !important;
}
.nav-link:hover {
  color: #082860 !important;
  text-decoration: underline;
  text-decoration-color: #082860;
  text-underline-offset: 0.35rem;
}
.nav-link.active, .nav-link[aria-current="page"] {
  color: #082860 !important;
  text-decoration: underline;
  text-decoration-color: #082860;
  text-underline-offset: 0.35rem;
}

/* Our Solution cards and quote on light theme */
.solutions__card {
  background: #ffffff !important;
  border: 1px solid rgba(8, 40, 96, 0.15) !important;
}
.solutions--example .solutions__quote {
  background: rgba(8, 40, 96, 0.04) !important;
  border-left-color: #082860 !important;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(8, 40, 96, 0.12);
}

/* ------------------------------------------------------------
   Language switch (top-right)
   ------------------------------------------------------------ */
.site-header { position: relative; }

.lang-switch {
  position: absolute;
  top: 12px;
  right: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.lang-link {
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(8, 40, 96, 0.18);
  background: rgba(255,255,255,0.75);
}

.lang-link.active {
  border-color: rgba(8, 40, 96, 0.45);
  background: rgba(8, 40, 96, 0.06);
}

@media (max-width: 640px) {
  .lang-switch {
    top: 10px;
    right: 12px;
  }
}

/* Flags + abbreviations in the language switch */
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-link .flag {
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(8, 40, 96, 0.18);
}

/* ------------------------------------------------------------
   Robust language flags (no external images)
   ------------------------------------------------------------ */
.lang-switch {
  z-index: 9999;
}

.lang-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.lang-link .flag {
  width: 18px !important;
  height: 12px !important;
  display: inline-block !important;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(8, 40, 96, 0.18);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1 !important;
  filter: none !important;
}

.flag--en { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2060%2040%22%3E%0A%20%20%3Crect%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%23012169%22/%3E%0A%20%20%3Cpath%20d%3D%22M0%200%20L7%200%20L60%2033%20L60%2040%20L53%2040%20L0%207%20Z%22%20fill%3D%22%23FFFFFF%22/%3E%0A%20%20%3Cpath%20d%3D%22M60%200%20L53%200%20L0%2033%20L0%2040%20L7%2040%20L60%207%20Z%22%20fill%3D%22%23FFFFFF%22/%3E%0A%20%20%3Cpath%20d%3D%22M0%200%20L3.8%200%20L60%2031.2%20L60%2035.8%20L56.2%2035.8%20L0%204.6%20Z%22%20fill%3D%22%23C8102E%22/%3E%0A%20%20%3Cpath%20d%3D%22M60%200%20L56.2%200%20L0%2031.2%20L0%2035.8%20L3.8%2035.8%20L60%204.6%20Z%22%20fill%3D%22%23C8102E%22/%3E%0A%20%20%3Crect%20x%3D%2224%22%20y%3D%220%22%20width%3D%2212%22%20height%3D%2240%22%20fill%3D%22%23FFFFFF%22/%3E%0A%20%20%3Crect%20x%3D%220%22%20y%3D%2214%22%20width%3D%2260%22%20height%3D%2212%22%20fill%3D%22%23FFFFFF%22/%3E%0A%20%20%3Crect%20x%3D%2226.5%22%20y%3D%220%22%20width%3D%227%22%20height%3D%2240%22%20fill%3D%22%23C8102E%22/%3E%0A%20%20%3Crect%20x%3D%220%22%20y%3D%2216.5%22%20width%3D%2260%22%20height%3D%227%22%20fill%3D%22%23C8102E%22/%3E%0A%3C/svg%3E"); }
.flag--nl { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2060%2040%22%3E%0A%20%20%3Crect%20width%3D%2260%22%20height%3D%2240%22%20fill%3D%22%23FFFFFF%22/%3E%0A%20%20%3Crect%20width%3D%2260%22%20height%3D%2213.333%22%20y%3D%220%22%20fill%3D%22%23AE1C28%22/%3E%0A%20%20%3Crect%20width%3D%2260%22%20height%3D%2213.333%22%20y%3D%2226.667%22%20fill%3D%22%2321468B%22/%3E%0A%3C/svg%3E"); }


.hero-products {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 2rem auto;
}

.contact-logo {
  display: block;
  margin: 0 auto 1.25rem auto;
  width: 320px;
  max-width: 70%;
  height: auto;
}
