/* ===============================
   CSS 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,
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;
}
/* HTML5 display-role reset for older browsers */
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: #222E36;
  background: #F4F7FA;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #0D3756;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #43B69A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin: 12px 0 18px 0;
}
li {
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0D3756;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 { font-size: 32px; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 24px; line-height: 1.25; margin-bottom: 16px; }
h3 { font-size: 18px; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
h5, h6 { font-size: 14px; }
p {
  margin-bottom: 16px;
  color: #222E36;
  font-size: 16px;
}
blockquote {
  font-style: italic;
  color: #406179;
  background: #ECF2F6;
  border-left: 4px solid #43B69A;
  margin: 0 0 10px 0;
  padding: 12px 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 6px rgba(13,55,86,0.05);
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}
th, td {
  padding: 14px 16px;
  text-align: left;
  font-size: 16px;
}
th {
  background: #0D3756;
  color: #fff;
  font-weight: 600;
}
td {
  border-bottom: 1px solid #ECF2F6;
}
tr:last-child td {
  border-bottom: none;
}

/* ===============================
   Layout Containers
=============================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(13, 55, 86, 0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(13,55,86,0.08);
  border-radius: 10px;
  background: #fff;
  position: relative;
  flex: 1 1 260px;
  padding: 24px 18px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(67,182,154,0.16);
}

.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;
  background: #ECF2F6;
  box-shadow: 0 2px 8px rgba(13,55,86,0.04);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  color: #103146;
  flex: 1 1 350px;
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0 0 0 6px;
  font-size: 17px;
  color: #0D3756;
  font-style: italic;
  border-left: 3px solid #43B69A;
  background: none;
}
.testimonial-author {
  font-size: 15px;
  color: #406179;
  margin-left: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F7FA;
  border-radius: 10px;
  padding: 24px 18px;
  box-shadow: 0 1px 4px rgba(13,55,86,0.03);
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(67,182,154,0.10);
  background: #ECF2F6;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
  margin-bottom: 16px;
}
.team-card {
  background: #F4F7FA;
  box-shadow: 0 1px 4px rgba(13,55,86,0.03);
  border-radius: 10px;
  padding: 20px 16px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.team-card:hover {
  box-shadow: 0 3px 18px rgba(67,182,154,0.12);
}
.team-name {
  font-weight: 700;
  font-size: 18px;
  color: #0D3756;
}
.team-title {
  color: #406179;
  font-size: 15px;
  margin-bottom: 10px;
}

.project-summary {
  background: #F4F7FA;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(13,55,86,0.04);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.trust-badges img {
  width: 30px; height: 30px;
  filter: grayscale(30%);
}
.trust-badges span {
  font-size: 15px;
  color: #406179;
}

.rating-overview {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 16px;
}
.rating-overview img {
  width: 22px; height: 22px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #F4F7FA;
  padding: 18px 18px 10px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(13,55,86,0.05);
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 3px 18px rgba(67,182,154,0.10);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 20px;
  align-items: center;
  margin-top: 18px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #0D3756;
  margin: 0;
}
.contact-info img {
  width: 22px; height: 22px;
}

/* CTA Primary Button */
.cta-primary {
  display: inline-flex;
  padding: 13px 32px;
  background: #0D3756;
  color: #fff !important;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(13,55,86,0.09);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.18s, box-shadow 0.18s, color 0.16s;
  letter-spacing: 0.2px;
  outline: none;
  align-items: center;
  justify-content: center;
  min-width: 148px;
}
.cta-primary:active {
  background: #264969;
}
.cta-primary:hover, .cta-primary:focus {
  background: #43B69A;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(67,182,154,0.17);
  text-decoration: none;
}

/* ===========================
   Header & Navigation Styles
=========================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(13,55,86,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #0D3756;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.16s;
  position: relative;
}
.main-nav a:not(.cta-primary):before {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: #43B69A;
  transition: width 0.18s;
}
.main-nav a:not(.cta-primary):hover:before, .main-nav a:not(.cta-primary):focus:before {
  width: 90%;
}
.main-nav .cta-primary {
  margin-left: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: #0D3756;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.15s;
  z-index: 250;
  outline: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #43B69A;
}

/* ===========================
   Mobile Menu Overlay
=========================== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(13, 55, 86, 0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 48px;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.43,0,0.32,1);
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: block;
  position: absolute;
  top: 18px;
  right: 30px;
  background: #fff;
  color: #0D3756;
  border: none;
  border-radius: 6px;
  font-size: 30px;
  width: 44px; height: 44px;
  cursor: pointer;
  outline: none;
  transition: background 0.13s;
  z-index: 1020;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #43B69A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 7px;
  min-width: 160px;
  text-align: center;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #43B69A;
  color: #fff;
}
.mobile-nav a.cta-primary {
  background: #43B69A;
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(13,55,86,0.11);
}
.mobile-nav a.cta-primary:hover {
  background: #fff;
  color: #0D3756;
}

/* =====================
   Footer Styles
===================== */
footer {
  background: #0D3756;
  color: #fff;
  padding: 40px 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #ECF2F6;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #43B69A;
  text-decoration: underline;
}
footer img {
  width: 52px;
  height: auto;
  margin-bottom: 3px;
}
footer small {
  font-size: 14px;
  opacity: 0.80;
}

/* =======================
   Cookie Consent Banner
======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #0D3756;
  color: #fff;
  box-shadow: 0 -2px 12px rgba(13,55,86,0.13);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px 20px 16px;
  transition: transform 0.33s cubic-bezier(0.47, 0, 0.745, 0.715);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
  width: 100%;
}
.cookie-banner-content p {
  color: #ECF2F6;
  font-size: 15px;
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner button {
  padding: 10px 22px;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: #43B69A;
  color: #fff;
  transition: background 0.14s, color 0.14s;
  outline: none;
}
.cookie-banner button.reject {
  background: #fff;
  color: #0D3756;
  border: 1px solid #43B69A;
}
.cookie-banner button.settings {
  background: #F4F7FA;
  color: #0D3756;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #264969;
  color: #fff;
}
.cookie-banner button.reject:hover {
  background: #ECF2F6;
  color: #0D3756;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,55,86,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.28s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #0D3756;
  border-radius: 18px;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 8px 40px rgba(13,55,86,0.18);
  width: 95%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: #ECF2F6;
  border: none;
  border-radius: 6px;
  font-size: 25px;
  width: 38px;
  height: 38px;
  color: #0D3756;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #43B69A;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F4F7FA;
  padding: 12px 13px;
  border-radius: 7px;
}
.cookie-category-label {
  font-size: 16px;
  font-weight: 500;
  flex: 1 1 auto;
}
.cookie-category-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 18px;
  background: #ECF2F6;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  margin-left: 8px;
}
.cookie-category-toggle:checked {
  background: #43B69A;
}
.cookie-category-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 19px;
  background: #fff;
  transition: transform 0.18s;
}
.cookie-category-toggle:checked:before {
  transform: translateX(15px);
}
.cookie-category-desc {
  font-size: 14px;
  color: #406179;
  margin-left: 4px;
  font-weight: 400;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 22px;
  font-size: 16px;
  border-radius: 7px;
  border: none;
  background: #43B69A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-actions button.reject {
  background: #fff;
  color: #0D3756;
  border: 1px solid #43B69A;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #0D3756;
  color: #fff;
}
.cookie-modal-actions button.reject:hover {
  background: #ECF2F6;
  color: #0D3756;
}

/* ===========================
   Miscellaneous / General
=========================== */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #0D3756;
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #F4F7FA;
}

::-selection {
  background: #43B69A;
  color: #fff;
}

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 1024px) {
  .container { max-width: 920px; }
  .main-nav { gap: 16px; }
  .card-container, .feature-grid, .team-grid, .faq-list { gap: 16px; }
}
@media (max-width: 900px) {
  .container { max-width: 720px; }
  .content-wrapper, .section { padding: 26px 10px; }
  .card, .feature-item, .team-card, .faq-item {
    min-width: unset;
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header, .footer-nav { flex-direction: column; gap: 15px; }
  .container { max-width: 96vw; padding: 0 6vw; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .team-grid, .card-container, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .team-card, .faq-item {
    flex: 1 1 100%;
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 44px;
  }
  .cookie-banner {
    padding: 18px 6px 14px 6px;
  }
  .cookie-banner-content {
    max-width: 98vw;
  }
}
@media (max-width:600px) {
  h1 { font-size: 24px; }
  h2 { font-size: 19px; }
  h3 { font-size: 16px; }
  .section, .content-wrapper {
    padding: 15px 4px;
  }
}

/* Prevent any CSS grid or column misuse */
[class*="grid"], [class*="columns"] {
  display: flex !important;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===========================
   Accessibility & Visual Hierarchy
=========================== */
:focus {
  outline: 2px solid #43B69A;
  outline-offset: 2px;
}

/* ===========================
   Utility Classes
=========================== */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-20 { margin-top: 20px!important; }
.mb-20 { margin-bottom: 20px!important; }
.text-center { text-align: center!important; }

/* ===========================
   Spacing Consistency
=========================== */
main > section + section, .content-wrapper > div + div, .content-wrapper > * + * {
  margin-top: 24px;
}

/* =============================
   Hide elements helpers
============================= */
.hide { display: none !important; }

/* =============================
   End of CSS
============================= */