/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #145374;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #145374;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #145374;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Container sets gap to 0, inner wrappers use gap. */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(20,83,116,0.04);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 270px;
  min-width: 260px;
  margin-bottom: 20px;
  background: #fff;
  border: 2px solid #E0F7FA;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 2px 12px rgba(20, 83, 116, 0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .card:focus-within {
  border-color: #37718E;
  box-shadow: 0 4px 18px rgba(20,83,116,0.12);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #E0F7FA;
  border-radius: 18px;
  border-left: 6px solid #37718E;
  box-shadow: 0 2px 8px rgba(20,83,116,0.06);
}
.testimonial-card blockquote {
  font-size: 18px;
  line-height: 1.5;
  color: #145374;
  font-style: italic;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-meta span {
  color: #145374;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: bold;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #E0F7FA;
  padding: 16px;
  margin-top: 10px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(20, 83, 116, 0.039);
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 16px;
  background: #E0F7FA;
  color: #145374;
  border-bottom: 2px solid #37718E;
}
tbody td {
  font-size: 15px;
  padding: 12px 16px;
  border-bottom: 1px solid #E0F7FA;
}
tbody tr:last-child td {
  border-bottom: none;
}

.certification-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #145374;
}
h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
h2 {
  font-size: 32px;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  margin-top: 14px;
}
h3 {
  font-size: 24px;
  letter-spacing: 0;
  margin-bottom: 6px;
  margin-top: 10px;
}
h4, h5, h6 {
  font-size: 18px;
  margin-top: 7px;
}
p, li, blockquote, td, th {
  color: #145374;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
strong {
  font-weight: 700;
  color: #37718E;
}

/* BUTTONS */
.btn-primary, .btn-secondary, button, input[type=submit], .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 600;
  border: none;
  outline: none;
  padding: 12px 32px;
  border-radius: 36px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: inline-block;
  min-width: 140px;
  margin-right: 8px;
  box-shadow: 0 1px 4px rgba(20, 83, 116, 0.06);
}
.btn-primary {
  background: #145374;
  color: #fff;
  border: 2px solid #145374;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #37718E;
  border-color: #37718E;
  color: #fff;
  box-shadow: 0 2px 8px rgba(20,83,116,0.15);
}
.btn-secondary {
  background: #E0F7FA;
  color: #145374;
  border: 2px solid #37718E;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #37718E;
  border-color: #145374;
  color: #fff;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 16px 0;
  gap: 32px;
}
.main-nav .logo {
  display: flex;
  align-items: center;
  margin-right: 16px;
  text-decoration: none;
}
.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 18px;
  color: #145374;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #E0F7FA;
  color: #37718E;
}
.main-nav .btn-primary {
  margin-left: 24px;
}

/* FOOTER */
footer {
  background: #E0F7FA;
  padding: 40px 0 16px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  color: #145374;
  text-decoration: underline;
  margin-bottom: 4px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #37718E;
  text-decoration: none;
}
.footer-contact {
  font-size: 15px;
  color: #145374;
}
.footer-contact a {
  color: #37718E;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #145374;
}

/* Responsive typography & layout (mobile first) */
h1 { font-size: 32px; }
h2 { font-size: 22px; }
h3 { font-size: 18px; }

@media (min-width: 370px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}
@media (min-width: 800px) {
  h1 { font-size: 48px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}
body, p, li, td, th {
  font-size: 15px;
}
@media (min-width:800px) {
  body, p, li, td, th { font-size:16px; }
}

/* --- BURGER MENU (mobile navigation) --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px;
  right: 16px;
  width: 46px;
  height: 46px;
  background: #E0F7FA;
  color: #145374;
  font-size: 32px;
  border: 2px solid #37718E;
  border-radius: 14px;
  z-index: 2001;
  box-shadow: 0 1px 6px rgba(20,83,116,0.05);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #37718E;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.55,.1,.37,1.3);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0.98;
  box-shadow: -6px 0 28px 0 rgba(20,83,116,0.18);
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 32px;
  color: #145374;
  padding: 10px 24px 10px 12px;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 22px 20px 0 0;
  border-radius: 10px;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E0F7FA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 32px 0 32px;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #145374;
  border-bottom: 2px solid #E0F7FA;
  width: 100%;
  transition: color 0.15s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #37718E;
  border-bottom: 2px solid #37718E;
}
@media (min-width:990px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none!important;
  }
}
@media (max-width:989px) {
  .main-nav ul, .main-nav .btn-primary {
    display: none !important;
  }
  .main-nav {
    width: 100%;
    padding-right: 60px;
  }
}
@media (max-width: 767px) {
  .main-nav {
    gap: 8px;
    padding: 12px 0;
    min-height: 54px;
  }
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 34px;
    border-radius: 14px;
    min-width: 0;
  }
  .card, .testimonial-card {
    border-radius: 10px;
    padding: 14px 10px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .map-placeholder {
    border-radius: 8px;
    padding: 8px;
  }
  .footer-logo img {
    height: 30px;
    margin-bottom: 10px;
  }
  table { font-size: 14px; }
}

/* FLEX PATTERN ENFORCEMENT */
/* Provided as required by mission */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; 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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Geometric STRUCTURED VISUALS */
.section {
  border: 2.5px solid #E0F7FA;
  box-shadow: 0 4px 24px rgba(20,83,116,0.05);
}
.card, .testimonial-card {
  box-shadow: 0 4px 12px rgba(20, 83, 116, 0.07);
  border-radius: 18px;
}
.card {
  border: 2.5px solid #E0F7FA;
}
.card::before {
  content: '';
  display: block;
  position: absolute;
  left: 18px;
  top: -14px;
  width: 44px;
  height: 8px;
  background: #37718E;
  border-radius: 4px 4px 12px 12px;
  opacity: 0.12;
  z-index: 1;
}
.feature-item {
  border-left: 5px solid #37718E;
  padding-left: 14px;
}

/* VISUAL HIERARCHY (using accent backgrounds and strong lines) */
h2 {
  border-bottom: 2px solid #E0F7FA;
  padding-bottom: 6px;
}
h3 {
  border-left: 4px solid #37718E;
  padding-left: 9px;
}

/* SHADOWS & ACCENTS */
.btn-primary, .btn-secondary, .mobile-menu-toggle {
  box-shadow: 0 2px 8px rgba(55,113,142,0.09);
}
.card, .testimonial-card {
  box-shadow: 0 4px 18px 0 rgba(55,113,142,0.055);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 30px 0 rgba(20,83,116,0.13);
  border-color: #37718E;
}

/* MICRO-INTERACTIONS */
a:hover, a:focus {
  color: #37718E;
  text-decoration-skip-ink: auto;
}
a.btn-primary:hover,
a.btn-secondary:hover {
  filter: brightness(0.98);
}

/* Misc accent backgrounds */
.certification-badges img {
  background: #E0F7FA;
  border-radius: 12px;
  padding: 8px;
  height: 38px;
  border: 2px solid #37718E;
  box-shadow: 0 1px 4px rgba(20,83,116,0.05);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #E0F7FA;
  box-shadow: 0 -5px 24px rgba(20,83,116,0.06);
  padding: 22px 18px 18px 18px;
  z-index: 5001;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px;
}
.cookie-banner p {
  flex: 1 1 200px;
  font-size: 15px;
  color: #145374;
  margin: 0;
}
.cookie-banner button {
  margin: 0 7px 0 0;
  min-width: 120px;
  padding: 11px 20px;
  font-size: 15px;
  border-radius: 27px;
  border: 2px solid #37718E;
}
.cookie-banner .accept {
  background: #145374;
  color: #fff;
  border-color: #145374;
}
.cookie-banner .reject {
  background: #E0F7FA;
  color: #37718E;
  border-color: #37718E;
}
.cookie-banner .settings {
  background: #fff;
  color: #145374;
  border-color: #37718E;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #37718E;
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #37718E;
  color: #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #E0F7FA;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20,83,116,0.45);
  z-index: 7700;
  align-items: center;
  justify-content: center;
  transition: background 0.24s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 38px 26px 28px 26px;
  max-width: 420px;
  width: 96%;
  box-shadow: 0 9px 44px rgba(20,83,116,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  border: 2.5px solid #E0F7FA;
}
.cookie-modal-content h3 {
  font-size: 22px;
  border-left: none;
  padding-left: 0;
}
.cookie-modal-content label {
  font-size: 16px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #145374;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-toggle {
  appearance: none;
  width: 34px;
  height: 18px;
  background: #E0F7FA;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.23s;
  border: 2px solid #37718E;
}
.cookie-toggle:checked {
  background: #37718E;
}
.cookie-toggle:before {
  content: '';
  width: 14px;
  height: 14px;
  position: absolute;
  left: 3px;
  top: 1px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(20,83,116,0.12);
}
.cookie-toggle:checked:before {
  transform: translateX(14px);
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 17px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #37718E;
  border-radius: 10px;
  cursor: pointer;
  padding: 4px 9px;
  font-weight: 700;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E0F7FA;
  color: #145374;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal .accept {
  background: #145374;
  color: #fff;
  border: 2px solid #145374;
}
.cookie-modal .reject {
  background: #E0F7FA;
  color: #37718E;
  border: 2px solid #37718E;
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus {
  background: #37718E;
  border-color: #37718E;
}
.cookie-modal .reject:hover,
.cookie-modal .reject:focus {
  background: #37718E;
  color: #fff;
}

/* --------- STRUCTURED GEOMETRIC / ANGULAR TYPEFACE --------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* Use only geometric/structured sans-serif fonts: Montserrat for headings */
h1, h2, h3, .main-nav ul li a, .btn-primary, .btn-secondary, .mobile-nav a, .cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* --- Z-INDEX order --- */
header, .main-nav { z-index: 102; }
.mobile-menu { z-index: 2001; }
.mobile-menu-toggle { z-index: 2002; }
.cookie-banner { z-index: 5001; }
.cookie-modal { z-index: 7700; }

/* Accessibility: dark text on light BGs always in testimonials/important content */
.testimonial-card, .testimonial-card blockquote, .testimonial-card strong, .testimonial-meta span {
  color: #145374!important;
  background: none!important;
}

/* Table scroll on small screens */
@media (max-width:690px) {
  .table-responsive,
  table {
    display: block;
    overflow-x: auto;
    width: 100%;
    font-size: 13px;
  }
  thead th, tbody td {
    min-width: 110px;
    padding: 10px;
  }
}

/* Geometric accent shapes for sections (subtle) */
.section::after {
  content: '';
  display: block;
  width: 70px;
  height: 6px;
  background: #E0F7FA;
  border-radius: 4px 14px 4px 14px;
  margin: 24px auto 0 auto;
  opacity: 0.40;
}

/* Hide accent if section is very small */
@media (max-width:599px) {
  .section::after {
    display: none;
  }
}

/* Spacing utilities if needed */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* REMOVE ALL GRID/COLUMNS: Guarantee only flexbox */
/* No display: grid, no columns, no clamp() anywhere */

/* END OF CSS */
