/* --- CSS RESET & NORMALIZE (modern, minimal, keeps brand personality) --- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  background: #F6F7FB;
  color: #121921;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #06407A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus-visible {
  color: #21A179;
  text-decoration: underline;
}
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  outline: none;
  background: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #06407A;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.25rem; margin-bottom: 12px; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}
p, ul, ol, table {margin-bottom: 20px;}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(6,64,122,0.08), 0 1.5px 8px 0 rgba(33,161,121,0.04);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.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) {
  .container, .content-wrapper, .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .section { padding: 32px 10px; }
}

/* --- NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #21A179;
  box-shadow: 0 2px 8px 0 rgba(6,64,122,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  min-height: 68px;
  justify-content: space-between;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #06407A;
  font-size: 1rem;
  padding: 10px 8px;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s, box-shadow 0.16s;
}
.main-nav a:hover, .main-nav a:focus-visible {
  background: #F6F7FB;
  color: #21A179;
  text-decoration: none;
}
.main-nav .cta {
  background: #21A179;
  color: #fff;
  padding: 10px 22px;
  font-size: 1.04rem;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(33,161,121,0.13);
  border: none;
  margin-left: 8px;
}
.main-nav .cta:hover, .main-nav .cta:focus-visible {
  background: #06407A;
  color: #fff;
}

/* Mobile nav icons */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: #06407A;
  background: none;
  margin-left: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #21A17911;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 0 48px 0 rgba(6,64,122,0.07);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 36px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  align-self: flex-end;
  color: #06407A;
  background: none;
  margin: 24px 24px 0 0;
  border-radius: 8px;
  line-height: 1;
  transition: background .15s, color.15s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: #21A17911;
}
.mobile-nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 46px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #06407A;
  background: none;
  padding: 13px 0;
  border-radius: 12px;
  width: 100%;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F7FB;
  color: #21A179;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* -- PAGE SECTIONS & WRAPPERS -- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

/* --- HERO --- */
.hero {
  background: #06407A;
  color: #fff;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 16px 54px 0 rgba(6,64,122,0.10);
}
.hero h1, .hero h2, .hero h3 { color: #fff; }

.subheadline {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  margin-bottom: 30px;
  color: #232c36;
}

@media (max-width: 768px) {
  section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin: 30px 0 8px 0;
}
.feature-grid li {
  display: flex;
  align-items: center;
  background: #fff;
  color: #06407A;
  padding: 18px 26px;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(6,64,122,0.07);
  font-weight: 700;
  min-width: 260px;
  gap: 16px;
  font-size: 1.08rem;
}
.feature-grid img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li {
    min-width: 160px;
  }
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.4px;
  background: #fff;
  color: #06407A;
  padding: 12px 28px;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(6,64,122,0.10);
  border: 2px solid #21A179;
  margin-top: 8px;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.cta.primary {
  background: #21A179;
  color: #fff;
  border-color: #21A179;
  box-shadow: 0 4px 24px 0 rgba(33,161,121,0.13);
}
.cta:hover, .cta:focus {
  background: #06407A;
  color: #fff;
  border-color: #06407A;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #21A179;
  border-color: #21A179;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 32px 18px 32px;
  background: #fff;
  color: #22293a;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(6,64,122,0.07);
  margin-bottom: 20px;
  min-width: 255px;
  max-width: 520px;
}
.testimonial-card p {
  color: #06407A;
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #21A179;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 12px 16px 16px;
  }
}

/* --- CARDS, BENEFIT LISTS, ETC. --- */
.benefits-list li {
  font-weight: 700;
  margin-bottom: 13px;
  color: #21A179;
  background: #e4f8f1;
  border-radius: 12px;
  padding: 10px 18px;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 120px;
  background: #F6F7FB;
  border: 2px dashed #21A179;
  border-radius: 18px;
}

/* --- TABLES --- */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 30px;
}
thead {
  background: #21A179;
}
thead th {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  padding: 10px 16px;
}
tbody tr {
  background: #fff;
  border-bottom: 1px solid #e3ebe7;
}
tbody td {
  font-size: 1.02rem;
  color: #06407A;
  padding: 12px 16px;
  font-weight: 600;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* --- TEXT BLOCKS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.09rem;
  color: #22293a;
}
@media (max-width: 900px) { .text-section { gap:14px; font-size:1rem;} }

/* --- FOOTER --- */
footer {
  background: #06407A;
  color: #fff;
  padding: 48px 0 18px 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.footer-nav a {
  color: #fff;
  opacity: .89;
  font-size: 1rem;
  transition: color .13s;
}
.footer-nav a:hover { color: #21A179; opacity: 1; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.footer-contact img {
  vertical-align: bottom;
  margin-right: 8px;
  height: 18px;
  width: 18px;
}
@media (max-width: 900px) {
    footer .container {
      flex-direction: column;
      align-items: flex-start;
      gap:32px;
    }
}

/* --- UTILITIES & MODERN_BOLD EFFECTS --- */
section, .card, .testimonial-card, .feature-grid li {
  box-shadow: 0 2.5px 24px 0 rgba(6,64,122,0.07);
}
.geometric-accent {
  position: absolute;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: #21A179;
  opacity: 0.07;
  z-index: 0;
  top: -26px; right: -26px;
}

/* --- BUTTONS GENERAL --- */
button, .cta {
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  cursor: pointer;
}
button:active, .cta:active {
  box-shadow: 0 1px 4px 0 #21A17922;
}

/* --- MICRO-INTERACTONS & HOVER STATES --- */
.cta, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cta:focus-visible, .main-nav a:focus-visible, .footer-nav a:focus-visible, .mobile-nav a:focus-visible {
  outline: 2.5px dashed #21A179;
  outline-offset: 2px;
}

/* --- RESPONSIVE: SPACING BETWEEN CARDS/SECTIONS --- */
section, .card-container, .card, .testimonial-card, .content-grid, .text-image-section, .feature-item {
  margin-bottom: 20px;
  gap: 20px;
}

/* --- COOKIE CONSENT BANNER + MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #fff;
  border-top: 3px solid #21A179;
  box-shadow: 0 -2px 14px 0 rgba(6,64,122,0.11);
  z-index: 120;
  padding: 22px 16px 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookiebannerin 0.45s cubic-bezier(.71,-0.12,.27,1.36);
}
@keyframes cookiebannerin {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 22px;
  border: 2px solid #21A179;
  background: #fff;
  color: #06407A;
  transition: background 0.13s, color 0.13s, box-shadow 0.16s;
}
.cookie-banner .accept {
  background: #21A179;
  color: #fff;
  border: 2px solid #21A179;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #06407A;
  color: #fff;
  border-color: #06407A;
}
.cookie-banner .reject {
  background: #fff;
  color: #06407A;
  border-color: #21A179;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff0f3;
  color: #06407A;
}
.cookie-banner .settings {
  border-color: #21A179;
  background: #f2fefd;
  color: #21A179;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #e4f8f1;
  color: #06407A;
}
@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-right: 12px;
  }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(6,64,122,0.28);
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodalin 0.28s cubic-bezier(.95,-0.78,.29,1.38);
}
@keyframes cookiemodalin {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 28px;
  padding: 38px 28px 28px 38px;
  box-shadow: 0 4px 48px 0 rgba(33,161,121,0.17);
  max-width: 415px;
  width: 98vw;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiemodalcontentin 0.28s cubic-bezier(.7,-0.2,.5,1.22);
}
@keyframes cookiemodalcontentin {
  0% { transform: scale(0.92); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.cookie-category {
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-category label {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #21A179;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
  margin-right: 7px;
}
.cookie-category input[disabled] {
  opacity: .56;
  pointer-events: none;
}
.cookie-modal-content .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 2.1rem;
  background: none;
  color: #06407A;
  border: none;
  border-radius: 7px;
  transition: background 0.13s;
}
.cookie-modal-close:active{
  background: #21A17918;
}

/* -- FEATURE ITEM REQUIREMENTS -- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- ALIGNMENT + SPACING (MANDATORY) --- */
.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;
}

/* --- CUSTOM FONT IMPORTS (FAMILY FALLBACKS) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* --- ACCESSIBILITY & FOCUS VISIBLE --- */
:focus-visible {
  outline: 2.5px solid #21A179;
  outline-offset: 1.5px;
}

/* --- FINAL --- */
::-webkit-scrollbar { width: 10px; background: #F6F7FB; }
::-webkit-scrollbar-thumb { background: #e4f8f1; border-radius: 8px; }

/* --- Utility classes --- */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.text-center { text-align: center; }

/* --- END --- */
