/* 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 {
  min-height: 100vh;
  background: #fff;
  color: #17495F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #17495F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #24AEB1;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17495F;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
p, ul, ol {
  font-size: 1rem;
  color: #17495F;
  margin-bottom: 1rem;
}
small {
  font-size: 0.9rem;
  color: #335870;
}
strong {
  font-weight: 700;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(23, 73, 95, 0.04);
  padding: 36px 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .text-section {
    padding: 30px 12px;
  }
}

/* SECTION SPACING (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border: none;
}

/* CARDS & CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(23,73,95,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  transition: box-shadow 0.2s;
  min-width: 230px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(23, 73, 95, 0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FEATURE ITEMS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(23, 73, 95, 0.05);
  padding: 24px;
  margin-bottom: 20px;
}

/* CARDS: BLOG PREVIEW */
.blog-preview-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(23, 73, 95, 0.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, border 0.18s;
}
.blog-preview-card:hover, .blog-preview-card:focus-within {
  box-shadow: 0 6px 20px rgba(23,73,95,0.13);
  border: 1px solid #24AEB1;
}
.blog-preview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 3px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F9F7F2;
  border-radius: 12px;
  padding: 20px 26px;
  box-shadow: 0 2px 6px rgba(23, 73, 95, 0.04);
  margin-bottom: 20px;
}
.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: #F9F7F2;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(23, 73, 95, 0.07);
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #17495F;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-meta {
  color: #17495F;
  opacity: 0.85;
  font-size: 0.98rem;
}
@media (max-width: 640px) {
  .testimonial-card {
    padding: 18px 10px;
  }
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 6px rgba(23, 73, 95, 0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 72px;
  margin-bottom: 0;
}
header > a img {
  height: 38px;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #17495F;
  padding: 7px 10px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
  font-weight: 500;
}
header nav a:hover,
header nav a:focus {
  color: #24AEB1;
  background: #F9F7F2;
}
header .cta-btn {
  background: #24AEB1;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 26px !important;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(23, 73, 95, 0.09);
  transition: background 0.18s, box-shadow 0.18s;
  border: none;
}
header .cta-btn:hover,
header .cta-btn:focus {
  background: #17495F;
  color: #fff;
  box-shadow: 0 3px 16px rgba(36, 174, 177, 0.12);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #17495F;
  cursor: pointer;
  margin-left: 28px;
  align-items: center;
  z-index: 51;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #24AEB1;
  outline: none;
}

@media (max-width: 1080px) {
  header .cta-btn {
    padding: 10px 18px !important;
  }
}
@media (max-width: 920px) {
  header nav {
    gap: 14px;
  }
}
@media (max-width: 760px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.44s cubic-bezier(0.83,0,0.17,1);
  box-shadow: 0 0 100px 15px rgba(23,73,95,0.07);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 16px 0;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #17495F;
  cursor: pointer;
  z-index: 102;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #24AEB1;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding-left: 48px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #17495F;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  font-weight: 500;
  margin-bottom: 0;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #24AEB1;
  background: #F9F7F2;
}
@media (max-width: 420px) {
  .mobile-nav {
    padding-left: 18px;
    gap: 14px;
  }
  .mobile-menu-close {
    margin: 16px 10px 7px 0;
    font-size: 2rem;
  }
}


/* MAIN LAYOUT */
main {
  flex: 1 0 auto;
  width: 100%;
  background: none;
}

/* FOOTER */
footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid #EDF2F5;
  padding: 40px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: #17495F;
  opacity: 0.85;
  font-size: 0.97rem;
  padding: 7px 10px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover,
footer nav a:focus {
  color: #24AEB1;
  background: #F9F7F2;
}
footer address {
  font-style: normal;
  color: #335870;
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
footer img {
  height: 33px;
}
footer small {
  color: #335870;
  opacity: 0.7;
  margin-top: 6px;
}
@media (max-width: 540px) {
  footer .container {
    gap: 14px;
    padding: 0 2px;
  }
  footer nav {
    gap: 9px;
    flex-wrap: wrap;
  }
  footer img {
    height: 23px;
  }
}

/* BUTTONS & CTA */
.cta-btn {
  display: inline-block;
  background: #24AEB1;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 30px;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,73,95,0.07);
  margin-top: 12px;
  transition: background 0.15s, box-shadow 0.18s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #17495F;
  color: #fff;
  box-shadow: 0 4px 14px #24AEB120;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  transition: background 0.17s, color 0.13s;
}

/* Cookie Consent Banner and Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #17495F;
  color: #fff;
  width: 100vw;
  z-index: 2030;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  box-shadow: 0 -4px 28px rgba(23, 73, 95, 0.18);
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  animation: cookieUp 0.45s cubic-bezier(0.73,0,0.25,1);
}
@keyframes cookieUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  background: #24AEB1;
  color: #fff;
  border-radius: 7px;
  font-weight: 600;
  padding: 8px 19px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
  font-size: 1rem;
  margin-left: 0;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #24AEB1;
  border: 1px solid #24AEB1;
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: #fff;
  border: 1px solid #24AEB1;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #17495F;
  color:#24AEB1;
}
@media (max-width: 680px){
  .cookie-banner {
    flex-direction: column;
    padding: 20px 8px;
    gap: 16px;
    border-radius: 15px 15px 0 0;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 2300;
  background: rgba(23, 73, 95, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieFade 0.32s cubic-bezier(0.73,0,0.25,1);
}
@keyframes cookieFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  color: #17495F;
  border-radius: 16px;
  box-shadow: 0 8px 38px rgba(23,73,95,0.16);
  padding: 38px 30px 28px 30px;
  max-width: 380px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalUp 0.33s cubic-bezier(0.73,0,0.25,1);
}
@keyframes cookieModalUp {
  from { transform: translateY(60px); }
  to   { transform: translateY(0); }
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #17495F;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover { color: #24AEB1; }
.cookie-modal h3 { font-size: 1.3rem; margin-bottom: 13px; }
.cookie-modal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-modal label {
  user-select: none;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #24AEB1;
  width: 18px; height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 12px;
}
.cookie-modal .modal-btn {
  background: #24AEB1;
  color: #fff;
  border-radius: 7px;
  font-weight: 600;
  padding: 8px 19px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
  font-size: 1rem;
}
.cookie-modal .modal-btn.secondary {
  background: #fff;
  color: #24AEB1;
  border: 1px solid #24AEB1;
}
.cookie-modal .modal-btn:hover, .cookie-modal .modal-btn:focus { background: #17495F; color: #24AEB1; }

/* GENERAL UTILITIES & ACCESSIBILITY */
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
[tabindex="0"]:focus:not(:focus-visible),
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: none !important;
}

/* SPACING & GAPS */
section, .card, .testimonial-card, .feature-item, .faq-item, .blog-preview-card {
  margin-bottom: 20px;
}
section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container, .content-grid {
  gap: 24px !important;
}
@media (max-width: 768px) {
  .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
}

/* ADDRESS STYLING */
address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-style: normal;
  color: #335870;
  margin-bottom: 0;
  text-align: center;
}
address img {
  display: inline;
  height: 17px;
  vertical-align: -0.25em;
  margin-right: 4px;
}
address a {
  color: #24AEB1;
}

/* CONTACT INFO SECTION */
.contact-info {
  color: #17495F;
  font-size: 1.1rem;
  background: #F9F7F2;
  padding: 16px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  word-break: break-all;
}
.contact-info strong{
  font-weight: 700;
}

/* FORM ELEMENTS (in case forms included elsewhere) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #EDF2F5;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: #F9F7F2;
  color: #17495F;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #24AEB1;
  outline: none;
}
label {
  font-weight: 600;
  margin-bottom: 7px;
  display: block;
}

/* OL STEPS (How it Works) */
ol {
  counter-reset: list;
}
ol > li {
  position: relative;
  list-style: none;
  padding-left: 2.3em;
  min-height: 40px;
}
ol > li:before {
  counter-increment: list;
  content: counter(list) ". ";
  position: absolute;
  left: 0;
  top: 0;
  color: #24AEB1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.8;
}
ol img {
  height: 28px !important;
  width: 28px !important;
  margin-right: 10px;
  vertical-align: middle;
}

/* ICONS in LISTS */
ul li img, ol li img {
  height: 24px;
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

/* MICRO-ANIMATIONS */
.cta-btn, .cookie-btn, .modal-btn, .blog-preview-card {
  transition: box-shadow 0.18s, background 0.13s, border 0.18s, color 0.13s, filter 0.18s;
}

/* SCROLLBAR STYLING (subtle/minimal) */
::-webkit-scrollbar {
  width: 8px;
  background: #F9F7F2;
}
::-webkit-scrollbar-thumb {
  background: #EDF2F5;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #24AEB1;
}

/* MEDIA RESPONSIVE ADJUSTMENTS */
@media (max-width: 1000px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 690px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.20rem; }
  .card, .blog-preview-card, .testimonial-card, .feature-item, .faq-item, .text-section {
    padding: 16px 8px !important;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  .cta-btn { font-size: 0.95rem; padding: 9px 8px; }
  section, .text-section { padding: 22px 4px !important; }
}

/* FOCUS VISIBLE (ACCESSIBILITY) */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #24AEB1;
  outline-offset: 2px;
}

/* Hide .mobile-menu by default (visible only when .open is set by JS) */
.mobile-menu { display: flex; pointer-events: none; opacity: 0; }
.mobile-menu.open { pointer-events: all; opacity: 1; }

/* Hide cookie modal by default (visible when .open is set) */
.cookie-modal { display: none; }
.cookie-modal.open { display: flex; }

/* END CSS */
