.pg-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #071547;
}
.pg-header-inner {
  max-width: 1200px;
  margin: auto;
  min-height: 74px;
  padding: 7px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pg-header img {
  width: 187px;
  height: 60px;
  object-fit: contain;
}
.pg-navigation ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pg-navigation a,
.pg-navigation summary {
  color: #071547;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.pg-navigation summary {
  list-style: none;
}
.pg-subnav > summary:after {
  content: "⌄";
  margin-left: 8px;
}
.pg-subnav {
  position: relative;
}
.pg-subnav > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  box-shadow: 0 4px 14px #07154725;
  padding: 16px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}
.pg-nav-cta {
  display: block;
  background: #ffcc22;
  border-radius: 5px;
  padding: 10px 18px;
}
.pg-mobile-navigation {
  display: none;
}
.pg-footer {
  background: #071547;
  color: white;
  padding: 65px max(24px, calc((100% - 1140px) / 2)) 24px;
  font-size: 15px;
  line-height: 1.7;
}
.pg-footer a {
  color: white;
}
.pg-footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.pg-footer h2 {
  color: white;
  font-size: 22px;
  margin: 0 0 20px;
}
.pg-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pg-footer li {
  margin-bottom: 16px;
}
.pg-footer p {
  margin: 20px 0;
}
.pg-social {
  display: flex;
  gap: 20px;
  font-size: 20px;
}
.pg-footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #ffffff30;
  margin-top: 35px;
  padding-top: 25px;
}
.pg-footer-legal > div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pg-contact-form {
  color: #071547;
  font-size: 15px;
}
.pg-contact-form .pg-field {
  margin: 0 0 20px;
}
.pg-contact-form input:not([type="checkbox"]),
.pg-contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: white;
  padding: 12px;
  font: inherit;
  color: #071547;
}
.pg-contact-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
.pg-contact-form legend {
  font-size: 15px;
  font-weight: 600;
  padding: 0 0 10px;
}
.pg-check {
  display: flex !important;
  align-items: baseline;
  gap: 9px;
  margin: 6px 0;
  font-weight: 400 !important;
  line-height: 1.5;
}
.pg-check input {
  flex: none;
  appearance: auto !important;
  width: 16px !important;
  height: 16px !important;
  opacity: 1 !important;
  position: static !important;
  pointer-events: auto !important;
}
.pg-contact-form .zzdl-privacy-consent {
  margin-top: 16px;
}
.pg-contact-form .zzdl-privacy-consent .pg-check {
  align-items: flex-start;
}
.pg-contact-form .zzdl-privacy-consent .pg-check a {
  color: inherit;
  text-decoration: underline;
}
.pg-contact-form button[type="submit"] {
  background: #ffcc22;
  color: #071547;
  border: 0;
  border-radius: 4px;
  padding: 13px 24px;
  font: inherit;
  font-weight: 600;
  margin-top: 18px;
}
.pg-contact-form button:disabled {
  opacity: 0.6;
}
[data-article-content] h2 {
  font-size: 28px;
}
[data-article-content] h3 {
  font-size: 23px;
}
[data-article-content] h4 {
  font-size: 20px;
}
@media (max-width: 959px) {
  .pg-desktop-navigation {
    display: none;
  }
  .pg-mobile-navigation {
    display: block;
  }
  .pg-mobile-navigation > summary {
    list-style: none;
    cursor: pointer;
    font-size: 26px;
    color: #071547;
  }
  .pg-mobile-navigation > .pg-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    padding: 24px;
    box-shadow: 0 5px 10px #0002;
    max-height: 80vh;
    overflow: auto;
  }
  .pg-mobile-navigation .pg-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .pg-mobile-navigation .pg-subnav > ul {
    position: static;
    box-shadow: none;
    min-width: 0;
    padding: 12px 0 0 16px;
    gap: 12px;
  }
  .pg-mobile-navigation .pg-subnav > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .pg-mobile-navigation .pg-subnav > summary:after {
    transition: transform .2s ease;
  }
  .pg-mobile-navigation .pg-subnav[open] > summary:after {
    transform: rotate(180deg);
  }
  .pg-mobile-navigation .pg-subnav summary img {
    margin-right: auto;
  }
  .pg-mobile-navigation .pg-nav-cta {
    text-align: center;
  }
  .pg-footer-columns {
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .pg-footer-legal {
    flex-direction: column;
  }
  .pg-header-inner {
    padding: 7px 20px;
  }
}
/* Match the inherited Pickgeo palette and dimensions, without Elementor selectors. */
.pg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.pg-header img {
  max-height: 50px;
}
.pg-header-inner {
  min-height: 74px;
}
.pg-navigation a,
.pg-navigation summary {
  font-family: Ubuntu, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1px;
}
.pg-footer {
  background: #f1f2f7;
  color: #666768;
  border-top: 2px solid #235cfb;
  padding-top: 80px;
}
.pg-footer a {
  color: #666768;
}
.pg-footer h2 {
  color: #235cfb;
}
.pg-footer-columns {
  gap: 96px;
}
.pg-footer-columns > div > img {
  width: auto;
  height: 42px;
}
.pg-social a {
  color: #235cfb;
}
.pg-footer-legal {
  border-color: #ccc;
  padding-top: 8px;
}
.pg-footer-legal > div a {
  color: #235cfb;
}
.pg-footer-legal > div button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #235cfb;
  cursor: pointer;
  font: inherit;
}
.pg-footer-legal > div button:hover,
.pg-footer-legal > div button:focus {
  color: #173eac;
  text-decoration: underline;
}
.pg-navigation a,
.pg-navigation summary {
  color: #235cfb;
}
.pg-navigation .pg-nav-cta {
  background: #235cfb;
  color: white;
}
.pg-contact-form {
  color: #666768;
}
.pg-contact-form button[type="submit"] {
  background: #235cfb;
  color: white;
  font-size: 14px;
}
.pg-contact-form .pg-check {
  margin: 2px 0;
  font-weight: 400 !important;
}
.pg-contact-form legend {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 4px;
}
.pg-footer li {
  margin-bottom: 10px;
}
.pg-footer-columns > div:last-child {
  justify-self: end;
}
.pg-footer-columns > div > img {
  width: 300px;
  height: 42px;
  object-fit: contain;
}
.pg-footer-legal {
  margin-top: 20px;
}
.pg-footer {
  padding-left: max(24px, calc((100% - 1104px) / 2));
  padding-right: max(24px, calc((100% - 1104px) / 2));
  font-size: 14px;
}
.pg-header-inner {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 959px) {
  .pg-header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pg-footer-columns > div:last-child {
    justify-self: start;
  }
  .pg-footer-columns > div > img {
    width: 180px;
    object-position: left;
  }
  .pg-footer {
    padding-top: 64px;
  }
}
.pg-subnav summary img {
  width: 16px;
  height: 11px;
  max-height: none;
  vertical-align: middle;
}

/* The shared legacy 404 retains desktop gutters on phones, leaving only
   54px of content at a 390px viewport. All translated templates share this ID. */
@media (max-width: 767px) {
  #pg-globe-widget {
    height: 440px !important;
  }
  body .elementor .elementor-element.elementor-element-416600e {
    --padding-left: 24px;
    --padding-right: 24px;
    --padding-top: 128px;
    --padding-bottom: 64px;
  }
}

/* Transparent hero actions need darker text over their background images.
   Keep the existing colors in their filled hover/focus states. */
body .elementor .elementor-element:is(
  .elementor-element-e52dbb9, .elementor-element-3c92f11,
  .elementor-element-65dbdd8, .elementor-element-8317307
) .elementor-button:not(:hover):not(:focus) {
  color: #173eac;
}

/* The legacy kit assigns an unreadable inherited color to the footer button. */
body button.pickgeo-cookie-preferences {
  background-color: #235cfb;
  color: #fff;
}
body button.pickgeo-cookie-preferences:hover,
body button.pickgeo-cookie-preferences:focus {
  background-color: #173eac;
  color: #fff;
}

/* Darken the kit's pale interaction color only inside controls that use it.
   Transparent secondary actions and the rest of the page palette stay intact. */
.elementor-button,
.pg-contact-form button {
  --e-global-color-64f0277: #173eac;
}

/* Filled product/report shortcuts share these widget IDs across translations.
   Their original #4f7dfc fill has insufficient contrast with white text. */
body .elementor .elementor-element:is(
  .elementor-element-b4d24ea, .elementor-element-ee462fb,
  .elementor-element-c147c49, .elementor-element-365eb01,
  .elementor-element-53d7e38, .elementor-element-bbb274d,
  .elementor-element-4dbdefc, .elementor-element-a6721ff,
  .elementor-element-169b9fc, .elementor-element-ec871b5,
  .elementor-element-9a878fd, .elementor-element-fdbc6cb,
  .elementor-element-0749f1e, .elementor-element-ea8c7f0,
  .elementor-element-e72740b
) .elementor-button {
  background-color: #235cfb;
  color: #fff;
}

body button.pickgeo-cookie-preferences:focus-visible,
body .pg-contact-form button:focus-visible,
body .elementor-button:focus-visible,
body .pg-navigation .pg-nav-cta:focus-visible {
  outline: 2px solid #071547;
  outline-offset: 3px;
  box-shadow: 0 0 0 3px #fff;
}

body .pg-contact-form button[type="submit"]:hover,
body .pg-contact-form button[type="submit"]:focus {
  background-color: #173eac;
  color: #fff;
}
/* Reserve the 64px WhatsApp control, its 20px inset and a 16px gap. */
body:has(.elementor-fixed a[href^="https://wa.me/"]) #scroll-top {
  bottom: calc(100px + env(safe-area-inset-bottom, 0px));
}

/* Keep the legal controls above fixed WhatsApp/back-to-top controls at page end. */
body:has(.elementor-fixed a[href^="https://wa.me/"]) .pg-footer {
  padding-bottom: calc(150px + env(safe-area-inset-bottom, 0px));
}
