/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; 
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.15; }
article, aside, footer, header, nav, section { display: block; }
body { background: #F9FAFC; color: #22384C; min-height: 100vh; }
a { background: transparent; color: inherit; text-decoration: none; transition: color .2s; }
b, strong { font-weight: bold; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; display: block; height: auto; }
input, button, select, textarea { font: inherit;}
button { cursor: pointer; background: none; border: none; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
html, body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #22384C;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #22384C;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p, li, address, small, span, dl, dt, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22384C;
  line-height: 1.6;
}

.lead {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #22384C;
  margin-bottom: 18px;
}

.text-center { text-align: center; }

/* CONTAINERS & SECTION SPACING */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(34,56,76,0.07);
}

.content-wrapper {
  width: 100%;
}

/* FLEXBOX LAYOUTS */
.card-container, .company-grid, .equipment-grid, .feature-list, .icon-list, .fact-boxes, .statements, .company-spotlights, .footer-top, .footer-bottom, .content-grid, .kpi-charts, .comparison-view {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container { margin-bottom: 32px; }
.card { background: #fff; border-radius: 16px; box-shadow: 0 2px 10px rgba(34,56,76,0.10); margin-bottom: 20px; position: relative; transition: box-shadow .25s; }
.card:hover, .company-card:hover, .equipment-card:hover {
  box-shadow: 0 6px 24px rgba(241,168,81,0.16);
  z-index: 2;
}
.card-content {
  display: flex; flex-direction: column; justify-content: center; padding: 32px;
}

.company-grid, .equipment-grid {
  justify-content: space-between;
  gap: 24px;
}
.company-card, .equipment-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(39,104,122,0.07);
  padding: 28px 22px 22px 22px;
  min-width: 270px;
  flex: 1 1 280px;
  transition: box-shadow .25s;
}
.company-card h3, .equipment-card h3 { margin-bottom: 10px; color: #27687A; font-size: 1.3rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }

.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(34,56,76,0.11);
  color: #22384C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.98rem;
  margin-top: 6px;
  color: #27687A;
  opacity: 0.7;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* UTILITIES & VISUAL ELEMENTS */
ul.feature-list,
ul.icon-list,
ul.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 30px 0 0 0;
}
ul.feature-list li, ul.icon-list li, ul.usp-list li {
  background: #F6F8FB;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(39,104,122,0.05);
  padding: 18px 20px;
  font-size: 1.08rem; 
  font-family: 'Roboto', Arial, sans-serif;
  color: #22384C;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-width: 240px;
}
ul.feature-list img, ul.icon-list img, .opening-hours img, .trust-signs img {
  width: 32px;
  height: 32px;
}

ol {
  margin-left: 24px;
  color: #22384C;
  font-family: 'Roboto', Arial, sans-serif;
}

blockquote {
  border-left: 5px solid #F1A851;
  padding-left: 18px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(34,56,76,0.07);
  border-radius: 12px;
}

ul.filter-list {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

ul.faq-list {
  margin: 32px 0 0 0;
}
.faq-list dt {
  margin-top: 18px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #27687A;
}
.faq-list dd {
  margin: 0 0 12px 0;
}

.thank-you-message, .next-steps {
  margin: 18px 0 18px 0;
  font-size: 1.04rem;
}

.opening-hours, .team-intro, .trust-signs {
  margin: 18px 0;
}
.trust-signs {
  display: flex;
  align-items: center;
  gap: 14px;
}

.address {
  font-size: 1rem;
}

.fact-boxes {
  display: flex; flex-wrap: wrap; gap: 20px; margin: 32px 0;
}
.fact-box {
  background: #27687A;
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
}

.statements {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}

.company-spotlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}

.kpi-charts {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 25px 0 6px 0;
}

.leaderboard ol {
  list-style: decimal inside;
  font-family: 'Montserrat', Arial, sans-serif;
}
.leaderboard li {
  margin-bottom: 14px;
}
.leaderboard li span {
  color: #F1A851;
  font-weight: 700;
  margin-left: 6px;
}

/**** PRIMARY BUTTON & LINKS ****/
.button,
a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  background-color: #F1A851;
  color: #22384C;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 14px 30px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 8px rgba(241,168,81,0.13);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: background .22s, color .22s, transform .18s;
  margin: 8px 0;
}
.button.primary, a.button.primary {
  background-color: #F1A851;
  color: #22384C;
}
.button.primary:hover, a.button.primary:hover, .button.primary:focus, a.button.primary:focus {
  background: #27687A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(39,104,122,0.18);
}
.button.large { font-size: 1.25rem; padding: 19px 38px; }

/* Tables */
table {
  width: 100%;
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(39,104,122,0.06);
  background: #fff;
}
thead {
  background: #27687A;
  color: #fff;
}
th, td {
  padding: 16px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid #F6F8FB;
}
th { font-weight: 800; letter-spacing: 0.2px; color: #fff; }
tbody tr:nth-child(even) { background: #F6F8FB; }
td { color: #22384C; font-family: 'Roboto', Arial, sans-serif; }
thead th { border: none; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22384C;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  z-index: 1200;
  padding: 26px 18px 18px 18px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 26px rgba(34,56,76,0.25);
  font-size: 1rem;
  animation: banner-slideup .56s cubic-bezier(.2,1.8,.58,1) 1;
}
@keyframes banner-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: 20px;
}
.cookie-banner .button {
  min-width: 0;
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 20px;
}
.cookie-banner .button.primary {
  background: #F1A851;
  color: #22384C;
}
.cookie-banner .button.secondary {
  background: #fff;
  color: #27687A;
  border: 2px solid #27687A;
  font-weight: 700;
}
.cookie-banner .button.secondary:hover {
  background: #27687A;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #F1A851;
  padding: 0 8px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 1rem;
}
.cookie-banner .cookie-settings:hover {
  color: #fff;
  text-decoration: none;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1310;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39,56,76,0.70);
  justify-content: center;
  align-items: center;
  animation: fadein .36s;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 90vw;
  padding: 32px 26px 22px 26px;
  box-shadow: 0 4px 40px 0 rgba(34,56,76,0.23);
  font-family: 'Roboto', Arial, sans-serif;
  color: #22384C;
  position: relative;
  animation: modal-pop .42s cubic-bezier(.33,.8,.67,1.4);
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(.6) translateY(120px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 { color: #27687A; margin-bottom: 10px; font-family: 'Montserrat', Arial, sans-serif; font-size: 1.3rem; }
.cookie-modal .modal-close {
  position: absolute;
  right: 22px;
  top: 12px;
  background: none;
  color: #F1A851;
  font-size: 1.6rem;
  border: none;
  font-weight: 900;
  cursor: pointer;
  padding: 4px;
}
.cookie-modal .cookie-category {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-modal .cookie-category .toggle {
  min-width: 44px;
  min-height: 28px;
  border-radius: 18px;
  border: none;
  background: #E1EAF2;
  cursor: pointer;
  position: relative;
  transition: background .18s;
  outline: none;
}
.cookie-modal .cookie-category .toggle[aria-checked="true"] {
  background: #F1A851;
}
.cookie-modal .cookie-category .toggle:
  before {
    content: '';
    display: block;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 6px;
    top: 4px;
    width: 20px; height: 20px;
    transition: left .18s;
  }
.cookie-modal .cookie-category .toggle[aria-checked="true"]:before {
  left: 18px;
}
.cookie-modal .cookie-category .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #27687A;
}
.cookie-modal .button {
  margin-top: 20px;
}

/* Header & Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(34,56,76,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 18px;
  min-height: 68px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-left: 24px;
}
header nav a {
  color: #27687A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 7px 8px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus { background: #F1A851; color: #22384C; }
header .button {
  margin-left: 32px;
}
header a img {
  height: 38px;
}

/* Mobile Nav */
.mobile-menu-toggle {
  display: none;
  background: #F1A851;
  color: #22384C;
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  justify-content: center; align-items: center;
  align-self: center;
  margin-left: 18px;
  border: none;
  position: relative;
  z-index: 1201;
  box-shadow: 0 2px 14px rgba(241,168,81,0.11);
  transition: background .18s, color .2s, box-shadow .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22384C;
  color: #F1A851;
  box-shadow: 0 4px 18px rgba(34,56,76,0.13);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #22384C;
  color: #fff;
  z-index: 1300;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.3,1.23,.38,1.01);
  box-shadow: -3px 0 50px rgba(34,56,76,.22);
  padding: 32px 12px 12px 12px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  color: #F1A851;
  font-size: 2.1rem;
  background: none;
  border: none;
  margin-bottom: 16px;
  margin-right: 3px;
  cursor: pointer;
  transition: color .14s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 7px 4px 7px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background .19s, color .19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1A851;
  color: #22384C;
}

/* Hide nav on mobile, show burger */
@media (max-width: 980px) {
  header .container nav,
  header .container .button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/* Show nav on desktop, hide burger */
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Footer */
footer {
  background: #22384C;
  color: #fff;
  padding: 0 0 0 0;
  font-size: .98rem;
  box-shadow: 0 -2px 22px rgba(34,56,76,0.08);
  border-radius: 34px 34px 0 0;
  margin-top: 60px;
}
footer .container {
  padding: 32px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1A851;
}
.footer-top img {
  height: 42px;
}
.footer-top nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.footer-top nav a {
  color: #F1A851;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.footer-top nav a:hover {
  background: #F1A851;
  color: #22384C;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.social-links a {
  background: #fff;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 1px 3px rgba(34,56,76,0.08);
  transition: box-shadow .16s, background .16s;
  display: flex; align-items: center; justify-content: center;
}
.social-links a:hover {
  background: #F1A851;
  box-shadow: 0 4px 18px rgba(241,168,81,0.13);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  justify-content: space-between;
}
.footer-bottom small {
  color: #fff;
  opacity: 0.87;
  font-size: .93rem;
}
.footer-bottom a {
  color: #F1A851;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
}
.footer-bottom a:hover { color: #fff; }

/***** Responsive Design ******/
@media (max-width: 980px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .company-grid, .equipment-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-list, .icon-list, .usp-list, .fact-boxes, .statements, .footer-top, .footer-bottom,
  .content-grid, .kpi-charts, .comparison-view,
  .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .card, .company-card, .equipment-card {
    min-width: 92%;
    max-width: 100%;
  }
  .section { padding: 30px 9px; margin-bottom: 38px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
  .lead { font-size: 1.06rem; }
  th, td { font-size: 0.97rem; padding: 12px 7px; }
  .mobile-menu { padding: 16px 4px 4px 4px; }
}
@media (max-width: 600px) {
  .section {
    padding: 18px 1px;
  }
  .company-card, .equipment-card {
    padding: 18px 4px 12px 9px;
  }
  .card-content { padding: 16px 4px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.1rem; }
  .button, a.button { font-size: 0.97rem; padding: 12px 16px; }
}

/***** Accessibility - Focus States *****/
a, button, .button {
  outline: none;
}
a:focus, button:focus, .button:focus {
  box-shadow: 0 0 0 2px #F1A851; outline: none;
}

/**** MISC ****/
::-webkit-scrollbar {
  width: 8px;
  background: #E4E8ED;
}
::-webkit-scrollbar-thumb {
  background: #F1A851;
  border-radius: 8px;
}

/*---- Hide Cookie Modal and Mobile Menu overlays by default ----*/
.cookie-modal-overlay[aria-hidden='true'] { display: none !important; }

/***** Custom geometric decorative shapes *****/
/* Example: add bold geometric accents */
.section {
  position: relative;
  z-index: 1;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -32px; right: -22px;
  width: 120px; height: 120px;
  background: #F1A851;
  opacity: 0.2;
  clip-path: polygon(50% 0,100% 100%,0 100%);
  z-index: 0;
}
.section:nth-child(even):before {
  left: -26px; right: auto; top: -24px;
  background: #27687A;
  opacity: 0.13;
}
.section > * { position: relative; z-index: 1; }

/****** Tables on small screens: Horizontal scroll if needed ******/
@media (max-width:900px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/*----------- Spacing helpers -----------*/
.mb-24 { margin-bottom: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.gap-20 { gap: 20px !important; }

/***** Hide decorative pseudo-elements on mobile for performance *****/
@media (max-width: 600px) {
  .section:before { display: none !important; }
}
