/* 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F8FA;
  color: #22313F;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #224563;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #F2B400;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.6em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #224563;
  line-height: 1.18;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, .subheadline {
  margin-bottom: 16px;
  color: #22313F;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  color: #224563;
  margin-bottom: 16px;
  border-left: 4px solid #F2B400;
  padding-left: 16px;
}
strong {
  font-weight: 600;
  color: #224563;
}

/* CONTAINER & LAYOUT CORE */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34, 69, 99, 0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
    border-radius: 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 12px;
  background: #F6F8FA;
  box-shadow: 0 2px 8px 0 rgba(34, 69, 99, 0.03);
  position: relative;
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(34,69,99,0.10);
  transform: translateY(-4px) scale(1.025);
}

.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F6F8FA;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(34,69,99,0.04);
  margin-bottom: 20px;
  flex-direction: column;
  max-width: 700px;
  color: #22313F;
}
.testimonial-card blockquote {
  color: #224563;
  margin: 0 0 8px 0;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #657287;
  align-self: flex-end;
}
.rating-stars {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #F2B400;
  font-weight: 700;
  margin: 20px 0 0 0;
}

/* FEATURES 
   Grid and Icon List for .features-grid, .feature-icons-list
*/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid > div {
  flex: 1 1 200px;
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(34,69,99,0.05);
  padding: 20px 14px 18px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.features-grid > div:hover {
  box-shadow: 0 4px 12px 0 rgba(34,69,99,0.12);
  transform: translateY(-2px) scale(1.016);
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

.feature-icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  list-style: none;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-icons-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
  color: #224563;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-icons-list img {
  width: 22px;
  height: 22px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(34,69,99,0.04);
  overflow: hidden;
  margin-bottom: 24px;
}
thead {
  background: #F6F8FA;
}
th, td {
  text-align: left;
  padding: 16px 12px;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #224563;
  font-weight: 600;
  font-size: 1.04rem;
}
tbody tr {
  border-bottom: 1px solid #e3e8ee;
}
tbody tr:last-child {
  border-bottom: none;
}
td {
  font-size: 1rem;
  color: #22313F;
}

/* Responsive Table - Mobile Scroll */
@media (max-width:600px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 16px;
  }
  td {
    padding: 10px;
    font-size: 0.94rem;
    border-bottom: 1px solid #f2f2f2;
  }
  td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 3px;
    color: #224563;
  }
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(34,69,99,0.08);
  border-bottom: 1px solid #e3e8ee;
  padding: 0;
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 22px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #224563;
  border-radius: 4px;
  padding: 7px 13px;
  transition: background 0.16s, color 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F2B400;
  color: #fff;
}
.cta-btn {
  background: #224563;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(34,69,99,0.06);
  transition: background 0.18s, transform 0.13s, box-shadow 0.13s;
  margin-left: 12px;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #F2B400;
  color: #224563;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 rgba(34, 69, 99, 0.13);
}

@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  .cta-btn {
    padding: 10px 16px;
    font-size: 1rem;
    margin-left: 4px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    padding: 14px 12px;
    gap: 8px;
  }
  .main-nav,
  .cta-btn {
    display: none;
  }
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #224563;
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 200;
}
@media (max-width:768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,69,99,0.97);
  z-index: 299;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.38,1.15,.59,1.00);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  margin: 28px 0 8px 22px;
  align-self: flex-start;
  z-index: 301;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 32px 0 0 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 5px;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B400;
  color: #224563;
}

/* HERO */
section:first-of-type .content-wrapper {
  min-height: 320px;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
section:first-of-type h1 {
  line-height: 1.14;
  font-size: 2.7rem;
  max-width: 690px;
}
section:first-of-type .subheadline {
  font-size: 1.25rem;
  color: #657287;
}
@media (max-width: 768px) {
  section:first-of-type h1 {
    font-size: 1.5rem;
  }
  section:first-of-type .subheadline {
    font-size: 1rem;
  }
}

/* FOOTER */
footer {
  background: #ffffff;
  border-top: 1px solid #e3e8ee;
  box-shadow: 0 -2px 14px 0 rgba(34,69,99,0.04);
  margin-top: 64px;
  padding: 28px 0 18px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #224563;
}
.footer-logo img {
  height: 33px;
}
.footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 0 0;
}
.footer-nav, .footer-policies {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer-nav a, .footer-policies a {
  color: #224563;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.96;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.14s, color 0.16s;
}
.footer-nav a:hover, .footer-policies a:hover {
  background: #F2B400;
  color: #fff;
}
.footer-brand-details {
  margin-top: 10px;
}
.brand-tagline {
  color: #657287;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.81;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .footer-menus {
    gap: 12px;
    flex-direction: column;
  }
  .footer-nav, .footer-policies {
    gap: 8px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  footer .container {
    gap: 10px;
    padding: 0 6px;
  }
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F6F8FA;
  border-radius: 9px;
  box-shadow: 0 1px 5px 0 rgba(34,69,99,0.04);
  padding: 18px 16px 14px 16px;
  color: #22313F;
  cursor: pointer;
  transition: box-shadow 0.18s;
}
.faq-item:hover {
  box-shadow: 0 2px 14px 0 rgba(34,69,99,0.09);
}
.faq-answer {
  margin-top: 9px;
  color: #657287;
  font-size: 1rem;
}
.faq-contact-hint {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-contact-hint .cta-btn {
  margin-top: 2px;
  max-width: 260px;
}

/* .text-section */
.text-section {
  margin-bottom: 24px;
  padding-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section h2, .text-section h3 {
  margin-bottom: 6px;
}
.text-section a {
  word-break: break-all;
}

/* Map Snippet Placeholder */
.map-snippet {
  background: #e3e8ee;
  border-radius: 9px;
  color: #657287;
  font-size: 0.98rem;
  padding: 26px;
  text-align: center;
  margin-top: 9px;
  letter-spacing: 0.02em;
}

/* Cards */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* Partner Logos */
.partner-logos {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 18px 0 2px 0;
}
.partner-logos img {
  height: 42px;
  width: auto;
}

/* Animations & Transitions */
.cta-btn, .main-nav a, .mobile-nav a, .card, .testimonial-card, .faq-item {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.17s;
}

/* GENERAL RESPONSIVE */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.15rem;}
  h3 {font-size: 1rem;}
  .section {padding: 14px 3px;}
  .card {padding: 14px 5px;}
  .features-grid > div {padding: 12px 5px 12px 5px;}
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3999;
  background: #fff;
  box-shadow: 0 -4px 16px 0 rgba(34,69,99,0.11);
  border-top: 1px solid #e3e8ee;
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.99;
  transition: transform 0.35s;
}
.cookie-consent-banner p {
  font-size: 0.97rem;
  color: #224563;
  margin: 0;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
  align-items: flex-end;
}
.cookie-btn, .cookie-settings-btn {
  background: #224563;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.17s, color 0.12s;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #F2B400;
  color: #224563;
}
.cookie-btn.reject {
  background: #e3e8ee;
  color: #224563;
}
.cookie-btn.reject:hover {
  background: #F2B400;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 8px 10px 8px;
  }
  .cookie-consent-actions {
    gap: 9px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,69,99,0.77);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: #fff;
  padding: 32px 20px;
  border-radius: 12px;
  max-width: 440px;
  width: 94vw;
  box-shadow: 0 6px 32px 0 rgba(34,69,99,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #224563;
  position: relative;
  z-index: 4100;
}
.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #224563;
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  color: #22313F;
}
.cookie-category .essential {
  font-weight: 600;
  color: #F2B400;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #224563;
  cursor: pointer;
}
@media (max-width: 500px) {
  .cookie-modal {padding: 16px 5px;}
  .cookie-categories { gap: 8px; }
}

/* UTILITY CLASSES */
.m-b-20 {margin-bottom: 20px;}
.flex-center {display: flex; align-items: center; justify-content: center;}
.flex-row {display: flex; flex-direction: row;}
.flex-column {display: flex; flex-direction: column;}
.gap-20 {gap: 20px;}
.gap-10 {gap: 10px;}
.align-center {align-items: center;}
.justify-center {justify-content: center;}

/* OVERLAY for modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,69,99,0.52);
  z-index: 3988;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide scrollbar for mobile menu */
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* Micro-interactions */
.cta-btn:active,
.main-nav a:active,
.mobile-nav a:active {
  filter: brightness(0.91);
}

/* VISUAL CLEAN BORDERS & MATERIAL FEEL */
.section, .card, .testimony-card, .faq-item, table, .features-grid > div {
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(34, 69, 99, 0.04);
}

/* Hide elements visually only (for JS) */
[hidden], .hidden {
  display: none !important;
}

/* --- END OF STYLE.CSS --- */

/* FONTS LOADING (for browser fallback only, assumes index.html adds actual link!) */
@font-face {font-family: 'Montserrat';font-style:normal;font-weight:400;src:local('Montserrat'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v15/4Q4-LKvEt1UuVA43Bmv_xw.woff2) format('woff2');unicode-range:U+000-5FF;}
@font-face {font-family: 'Roboto';font-style:normal;font-weight:400;src:local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v27/KFOmCnqEu92Fr1Mu4mxP.woff2) format('woff2');unicode-range:U+000-5FF;}
