/* CSS RESET & BASE TYPOGRAPHY */
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;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1A3C5D;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #299D63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #1A3C5D;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
}
strong, b {
  font-weight: 600;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  font-size: 1rem;
}
th {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1A3C5D;
  background: #F5F5F7;
  font-size: 1.125rem;
}
/* SPACING AND LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
main {
  padding-top: 86px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.text-section ul, .text-section ol {
  margin-top: 12px;
  margin-bottom: 12px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 16px 0;
}
/* HERO & HEADINGS */
.hero {
  background: #F5F5F7;
  padding: 48px 0 16px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #1A3C5D;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 14px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
  color: #299D63;
}
/* NAVIGATION */
header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  z-index: 1002;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 8px rgba(26, 60, 93, 0.02);
  transition: box-shadow .2s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1A3C5D;
  font-size: 1.1rem;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
header nav a:hover, header nav a.active {
  color: #299D63;
}
header .cta-button {
  margin-left: 16px;
}
/* Main CTA-Button */
.cta-button {
  display: inline-block;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  background: #299D63;
  color: #fff !important;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(41,157,99,0.11);
  cursor: pointer;
  text-align: center;
  letter-spacing: .02em;
  transition: background 0.15s, box-shadow 0.18s, color 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: #1A3C5D;
  color: #fff;
  box-shadow: 0 4px 22px rgba(26,60,93,0.10);
}
/* BURGER MENU (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1A3C5D;
  margin-left: 10px;
  z-index: 1103;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  color: #299D63;
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,60,93,0.88);
  z-index: 1110;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.66,.01,.24,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.15rem;
  padding: 20px 22px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 6px;
  margin-right: 12px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 35px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 10px 5px;
  border-radius: 5px;
  transition: background .14s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(41,157,99, 0.16);
  color: #299D63;
}
@media (max-width: 1040px) {
  header .container {
    gap: 12px;
  }
  header nav {
    gap: 12px;
  }
}
@media (max-width: 944px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* FLEX-LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px;
  min-width: 240px;
  flex: 1 1 260px;
  box-shadow: 0 2px 12px rgba(26,60,93,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .23s, border .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(41,157,99,0.12);
  border: 1px solid #299D63;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,60,93,0.05);
  margin-bottom: 20px;
  padding: 26px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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 32px 20px 14px;
  margin-bottom: 20px;
  background: #F5F5F7;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,60,93,0.06);
  font-size: 1.05rem;
  max-width: 720px;
  color: #1A3C5D;
}
.testimonial-card img {
  width: 34px;
  height: 34px;
  margin-right: 8px;
}
.testimonial-card blockquote {
  border: none;
  background: none;
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: #1A3C5D;
  line-height: 1.5;
}
.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-size: 0.97rem;
  font-style: normal;
  color: #299D63;
}
/* FOOTER */
footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid #ececec;
  box-shadow: 0 -2px 8px rgba(26,60,93,0.03);
  padding: 38px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #1A3C5D;
  font-size: 1rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  transition: color .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #299D63;
}
footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: #1A3C5D;
  font-size: 0.97rem;
}
footer img {
  width: 66px;
  height: auto;
}
/* PRICING TABLE */
.pricing-table {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(26,60,93,0.04);
  margin-bottom: 22px;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid #eee;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table thead {
  background:#F5F5F7;
}
/* OTHER COMPONENTS */
blockquote {
  color: #1A3C5D;
  border-left: 3px solid #299D63;
  padding-left: 12px;
  font-size: 1.1rem;
}
::-webkit-input-placeholder { color: #7a8993; opacity: 1; }
::-moz-placeholder { color: #7a8993; opacity: 1; }
:-ms-input-placeholder { color: #7a8993; opacity: 1; }
::placeholder { color: #7a8993; opacity: 1; }

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #ececec;
  box-shadow: 0 -2px 16px rgba(26,60,93,0.09);
  padding: 24px 20px;
  z-index: 1300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: fadeInUp 0.46s;
}
.cookie-banner .cookie-text {
  font-size: 1.02rem;
  color: #1A3C5D;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: #F5F5F7;
  color: #1A3C5D;
  font-weight: 400;
  transition: background 0.16s, color .14s;
}
.cookie-banner button.accept {
  background: #299D63;
  color: #fff;
  font-weight: 500;
}
.cookie-banner button.accept:hover {
  background: #1A3C5D;
}
.cookie-banner button.reject {
  background: #fff;
  color: #1A3C5D;
  border: 1px solid #299D63;
}
.cookie-banner button.reject:hover {
  background: #F5F5F7;
  color: #299D63;
}
.cookie-banner button.settings {
  background: #1A3C5D;
  color: #fff;
}
.cookie-banner button.settings:hover {
  background: #299D63;
}

@keyframes fadeInUp {
  0% { opacity:0; transform: translateY(24px); }
  100% { opacity:1; transform: translateY(0); }
}

/** Cookie Preferences Modal **/
.cookie-modal-bg {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,60,93,0.22);
  z-index: 1600;
  justify-content: center;
  align-items: center;
  animation: fadeIn .25s;
}
.cookie-modal-bg.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 38px rgba(26,60,93,0.13);
  padding: 32px 28px 28px 28px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn .22s;
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal .modal-header {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  color: #1A3C5D;
  margin-bottom: 12px;
}
.cookie-modal .modal-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #ececec;
  border-radius: 22px;
  transition: background 0.15s;
}
.cookie-modal .switch input:checked + .slider {
  background: #299D63;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: #fff;
  transition: .2s;
  box-shadow: 0 1.5px 4px rgba(26,60,93,0.07);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .essential {
  color: #299D63;
  font-weight: 500;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  background: none;
  color: #1A3C5D;
  border: none;
  font-size: 1.6rem;
  position: absolute;
  right: 30px;
  top: 18px;
  cursor: pointer;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 14px 6px;
    max-width: 92vw;
  }
}
/* RESPONSIVENESS */
@media (max-width: 948px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid {
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 186px;
    padding: 22px 12px;
  }
  .testimonial-card {
    padding: 18px 10px 18px 10px;
    font-size: 1rem;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 68px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: 0;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .content-wrapper, .text-section {
    gap: 18px;
  }
  .testimonial-card {
    max-width: 98vw;
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card-content {
    padding: 0;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}
/* MICRO INTERACTIONS */
.card, .feature-grid > div, .testimonial-card {
  will-change: box-shadow, transform;
  transition: box-shadow .19s, transform .18s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 28px rgba(41,157,99,0.10);
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.97);
}
.cta-button:active {
  transform: scale(0.98);
}

/*****************************
   WIDTH/HEIGHT/UTILITIES
*****************************/
.w-100 {
  width: 100%;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-32 {
  margin-bottom: 32px !important;
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
/* Hide visually but keep in DOM (for essential cookies label) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
/* === CUSTOM FONTS === */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
/* ==============
END OF CSS
============== */
