/* RESET & BASE ------------------------------------------------------------ */
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, font, 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1E3A56;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 20px;
}
a {
  color: #1E3A56;
  text-decoration: none;
  transition: color .15s;
}
a:hover, a:focus {
  color: #35A585;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* TYPOGRAPHY ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1E3A56;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, blockquote {
  color: #26384a;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  font-style: italic;
  color: #1E3A56;
  margin: 0 0 12px 0;
  background: #F5F8FA;
  border-left: 4px solid #35A585;
  padding: 10px 18px;
}
.cta-text {
  font-size: 1.18rem;
  font-weight: 500;
  color: #1E3A56;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 600;
}

/* LAYOUT PRIMITIVES ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}

/* CARDS & FLEX LAYOUTS ------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 16px 0 rgba(30,58,86,0.05);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(30,58,86,0.10);
}
.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: #F5F8FA;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 16px 0 rgba(30,58,86,0.04);
  flex-direction: row;
  transition: box-shadow .14s;
  min-width: 0;
}
.testimonial-card strong {
  color: #1E3A56;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(30,58,86,0.08);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0.5px 10px 0 rgba(30,58,86,0.04);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .13s;
}
.features-grid > div:hover {
  box-shadow: 0 4px 18px 0 rgba(30,58,86,0.10);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.map-placeholder {
  background: #F5F8FA;
  padding: 18px;
  border-radius: 11px;
  font-size: 1rem;
  margin-top: 12px;
  color: #1E3A56;
}

/* NAVIGATION ----------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 3px 23px 0 rgba(30,58,86,0.05);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 32px;
}
header img {
  height: 42px;
  margin-right: 26px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #1E3A56;
  padding: 5px 4px;
  border-radius: 4px;
  transition: background .13s, color .13s;
}
header nav a:hover, header nav a:focus {
  background: #F5F8FA;
  color: #35A585;
}
header .btn-primary {
  margin-left: 18px;
}

/* MOBILE MENU ---------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid #1E3A56;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1E3A56;
  position: fixed;
  right: 18px;
  top: 12px;
  z-index: 200;
  transition: background .13s, border .13s, color .13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F5F8FA;
  border-color: #35A585;
  color: #35A585;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 64px rgba(30,58,86,0.26);
  z-index: 9999;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.42,0,.58,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #1E3A56;
  font-size: 2rem;
  margin: 16px 22px 0 auto;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #35A585;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #1E3A56;
  font-weight: 500;
  padding: 12px 0;
  border-radius: 5px;
  width: 100vw;
  text-align: center;
  transition: background .13s, color .13s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F8FA;
  color: #35A585;
}

/* HERO --------------------------------------------------------------- */
.hero {
  background: #F5F8FA;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 52px 0 40px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 3px 23px 0 rgba(30,58,86,0.05);
  margin-bottom: 50px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}

/* BUTTONS -------------------------------------------------------------- */
.btn-primary,
.btn-primary:visited,
.btn-primary[type="submit"] {
  display: inline-flex;
  align-items: center;
  background: #1E3A56;
  color: #fff;
  border-radius: 7px;
  border: none;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background .13s, box-shadow .13s, color .13s;
  box-shadow: 0 2px 8px 0 rgba(30,58,86,0.09);
  margin-top: 8px;
  margin-bottom: 6px;
  text-align: center;
  gap: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #35A585;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(53,165,133,0.13);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #1E3A56;
  border: 2px solid #1E3A56;
  border-radius: 7px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  margin-top: 8px;
  margin-bottom: 6px;
  text-align: center;
  gap: 8px;
  transition: background .13s, border-color .13s, color .13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F5F8FA;
  border-color: #35A585;
  color: #35A585;
}

/* BLOG CATEGORY LINKS --------------------------------------------------- */
.blog-categories {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  margin-top: 18px;
}
.blog-categories span {
  font-weight: 600;
  color: #1E3A56;
}
.blog-categories a {
  color: #35A585;
  background: #F5F8FA;
  padding: 5px 13px;
  border-radius: 18px;
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .13s, color .13s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #35A585;
  color: #fff;
}

/* FOOTER --------------------------------------------------------------- */
footer {
  background: #fff;
  box-shadow: 0 -3px 24px 0 rgba(30,58,86,0.07);
  padding: 36px 0 16px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: flex-start;
}
footer nav a {
  font-size: .98rem;
  color: #1E3A56;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: .85;
  transition: color .14s;
}
footer nav a:hover, footer nav a:focus {
  color: #35A585;
  opacity: 1;
}
footer .contact-info {
  font-size: 0.97rem;
  color: #98a8b8;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
footer p {
  color: #99aacc;
  font-size: 0.97rem;
  margin-top: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIE CONSENT BANNER -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px 0 rgba(30,58,86,0.18);
  border-top: 2.5px solid #35A585;
  z-index: 20000;
  padding: 22px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: slideUp .46s cubic-bezier(.42,0,.58,1);
}
@keyframes slideUp {
  0% {transform: translateY(100%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: #1E3A56;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn-primary {
  padding: 10px 24px;
  font-size: 1rem;
}
.cookie-banner .btn-secondary {
  padding: 10px 20px;
  background: #F5F8FA;
  border: none;
  color: #1E3A56;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .13s, color .13s;
}
.cookie-banner .btn-secondary:hover,.cookie-banner .btn-secondary:focus {
  background: #e4ecee;
  color: #35A585;
}

/* COOKIE CONSENT MODAL ------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 30000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,58,86,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .27s;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 46px 0 rgba(30,58,86,0.16);
  max-width: 400px;
  width: 90vw;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: popIn .36s cubic-bezier(.42,0,.58,1);
}
@keyframes popIn {
  0% {transform: scale(.96); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: #1E3A56;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1.03rem;
  color: #1E3A56;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F5F8FA;
  border-radius: 16px;
  transition: background .14s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background-color: #35A585;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 2.5px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform .14s;
  box-shadow: 0 2px 7px rgba(30,58,86,0.08);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 1.01rem;
  padding: 7px 19px;
}

/* UTILITIES ------------------------------------------------------------ */
.bg-accent {
  background: #F5F8FA;
}
.text-primary {
  color: #1E3A56;
}
.text-secondary {
  color: #35A585;
}
.text-right {
  text-align: right;
}
.rounded {
  border-radius: 12px;
}
.shadow {
  box-shadow: 0 1.5px 16px rgba(30,58,86,0.06);
}

/* RESPONSIVE DESIGN ---------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  .features-grid > div,
  .card {
    min-width: 180px;
    padding: 22px 12px;
  }
  .hero {
    padding: 42px 0 28px 0;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero {
    padding: 36px 0 16px 0;
    border-radius: 0 0 18px 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .footer .container,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .features-grid {
    gap: 18px;
  }
  .section, section {
    padding: 32px 0;
    margin-bottom: 37px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 680px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  header .container {
    padding: 4px 8px;
    min-height: 62px;
  }
  .features-grid > div,
  .card {
    min-width: 98vw;
    width: 100vw;
  }
  .hero {
    border-radius: 0 0 10px 10px;
    padding: 18px 0 16px 0;
  }
  h1 {
    font-size: 1.675rem;
  }
  h2 {
    font-size: 1.23rem;
  }
}
@media (max-width: 640px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  footer nav {
    flex-direction: column;
    gap: 6px;
  }
  footer .container {
    gap: 18px;
    padding: 0 3px !important;
  }
  .card, .features-grid > div {
    min-width: 90vw;
    width: 100vw;
    padding: 18px 6px;
  }
  .blog-categories {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ADDITIONAL INTERACTIVE MICRO-ANIMATIONS ----------------------------- */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .12s, box-shadow .12s, color .12s, border .12s;
}

.card, .features-grid > div, .testimonial-card {
  transition: box-shadow .16s, transform .18s;
}

.card:hover, .features-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.012);
}

/* SCROLLBAR ----------------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #F5F8FA;
}
::-webkit-scrollbar-thumb {
  background: #dbe2e6;
  border-radius: 12px;
}

/* OVERRIDE - ADDITIONAL MINIMALIST UTILITIES -------------------------- */
hr {
  border: none;
  border-bottom: 1px solid #e4ecee;
  margin: 32px 0;
}

/* END OF CSS */