/* 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7FAFC;
  color: #193153;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
a {
  text-decoration: none;
  color: #12A47E;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #193153;
}
ul, ol {
  margin-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
strong {
  font-weight: 700;
}
address {
  font-style: normal;
  color: #193153;
  font-size: 15px;
  margin-top: 18px;
  line-height: 1.8;
}

/* FONTS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #193153;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.015em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
p, li, label {
  color: #1e355b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* CONTAINERS */
.container {
  max-width: 1160px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 3px solid #12A47E;
  box-shadow: 0 3px 18px 0 rgba(25, 49, 83, 0.10);
  z-index: 90;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 7px 0 7px 0;
  color: #193153;
  letter-spacing: -0.01em;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover {
  background: #12A47E;
  color: #fff;
}
header .cta-btn {
  margin-left: 14px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #193153;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E0FBF6;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #193153ee;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 30px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 1010;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #12A47E;
  color: #fff;
}
.mobile-nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 32px;
  border-radius: 0 32px 32px 0/0 16px 16px 0;
  background: rgba(18, 164, 126, 0.14);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #12A47E;
  color: #fff;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: #12A47E;
  border: none;
  border-radius: 26px;
  box-shadow: 0 3px 20px 0 rgba(18,164,126,0.10);
  outline: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background 0.2s, transform 0.21s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #193153;
  color: #fff;
  transform: translateY(-2px) scale(1.038);
  box-shadow: 0 6px 28px 0 rgba(25,49,83,0.18);
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(25,49,83,0.09);
  padding: 32px 25px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  min-height: 180px;
  gap: 16px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(25,49,83,0.08);
  margin-bottom: 20px;
  border-left: 6px solid #12A47E;
  min-width: 240px;
  max-width: 480px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
section:first-of-type {
  background: linear-gradient(90deg, #12A47E 15%, #193153 100%);
  color: #fff;
  border-radius: 0 0 48px 48px/0 0 32px 32px;
  box-shadow: 0 10px 38px 0 rgba(25,49,83,0.16), 0 1.5px 12px 0 rgba(18,164,126,0.07);
  margin-bottom: 60px;
  padding: 60px 20px 48px 20px;
}
section:first-of-type h1,
section:first-of-type h2,
section:first-of-type p {
  color: #fff;
}
section:first-of-type .cta-btn {
  background: #fff;
  color: #12A47E;
  font-weight: bold;
}
section:first-of-type .cta-btn:hover,
section:first-of-type .cta-btn:focus {
  background: #193153;
  color: #fff;
}

/* FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  padding: 26px 18px;
  min-width: 220px;
  box-shadow: 0 2px 14px 0 rgba(18,164,126,0.10);
  border-top: 5px solid #12A47E;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 26px 0 rgba(18,164,126,0.13);
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #12A47E44);
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.trust-badges span {
  background: #193153;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 14px;
  padding: 7px 20px;
  font-size: 15px;
  letter-spacing: 0.014em;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-weight: 500;
  color: #193153;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #12A47E;
}

/* ARTICLE PREVIEWS (Blog) */
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.article-previews > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(18,164,126,0.08);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-left: 5px solid #12A47E;
  transition: transform 0.16s, box-shadow 0.18s;
}
.article-previews > div:hover {
  transform: scale(1.025) translateY(-3px);
  box-shadow: 0 7px 20px 0 #19315325;
}
.article-previews h3 {
  font-size: 1.17rem;
  color: #193153;
}
.article-previews a {
  color: #12A47E;
  text-decoration: underline;
  font-weight: 500;
}

.category-tags {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.category-tags span {
  background: #E0FBF6;
  color: #193153;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 14px;
  padding: 7px 17px;
  border-radius: 14px;
  letter-spacing: 0.009em;
}

/* FOOTER */
footer {
  background: #193153;
  color: #fff;
  padding: 56px 0 26px 0;
  margin-top: 70px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  opacity: 0.8;
  font-size: 15px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: opacity 0.16s;
}
footer nav a:hover, footer nav a:focus {
  opacity: 1;
  color: #12A47E;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-social a img {
  width: 34px;
  height: 34px;
  filter: grayscale(0.5) contrast(1.1);
  opacity: 0.8;
  transition: opacity 0.14s, filter 0.21s;
}
.footer-social a:hover img {
  filter: grayscale(0) contrast(1.38) drop-shadow(0 4px 14px #12A47E55);
  opacity: 1;
}
.footer-copy {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.68;
  letter-spacing: 0.012em;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 30px;
}
.faq-list > div {
  background: #fff;
  border: 1.4px solid #E0FBF6;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(18,164,126,0.06);
  padding: 19px 24px;
  transition: box-shadow 0.13s;
}
.faq-list > div:hover {
  box-shadow: 0 5px 22px rgba(25,49,83,0.12);
}
.faq-list h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #12A47E;
}
.faq-list p {
  color: #193153;
  font-size: 1rem;
}
.quick-links {
  margin-top: 23px;
}
.quick-links a {
  color: #12A47E;
  font-weight: 500;
  margin-right: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* CONTACT FORM (STATIC DISPLAY) */
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #193153;
  font-size: 1.01rem;
  font-weight: 600;
}

/* PROCESS OL TIMELINE */
ol {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 20px;
  margin-left: 1.35em;
}
ol li {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 21px 18px;
  box-shadow: 0 2px 12px #12A47E10;
  font-size: 1.02rem;
  color: #193153;
}
ol li img {
  height: 36px;
  width: 36px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2500;
  background: #fff;
  color: #193153;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 26px 0 rgba(18,164,126,0.1);
  padding: 22px 18px 22px 18px;
  font-size: 1rem;
  gap: 22px;
  flex-wrap: wrap;
  border-top: 3px solid #12A47E;
  animation: slideUp 0.55s cubic-bezier(.47,.85,.6,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-right: 5px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #12A47E;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #F7444E;
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #E0FBF6;
  color: #193153;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #193153;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,49,83,0.55);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.28s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(18,164,126,0.19);
  max-width: 480px;
  width: 90%;
  padding: 38px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2650;
  animation: popupIn 0.26s cubic-bezier(.47,.85,.6,1);
}
@keyframes popupIn { from {transform: scale(0.81);opacity:0;} to {transform: scale(1);opacity:1;} }
.cookie-modal h2 {
  font-size: 1.33rem;
  color: #193153;
  margin-bottom: 7px;
}
.cookie-modal ul {
  list-style: none;
  margin-left: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1.01rem;
  color: #193153;
}
.cookie-modal .cookie-switch {
  min-width: 40px;
  height: 23px;
  background: #E0FBF6;
  border-radius: 14px;
  position: relative;
  transition: background 0.14s;
  cursor: pointer;
  display: flex;align-items:center;
}
.cookie-modal .cookie-switch.active {
  background: #12A47E;
}
.cookie-modal .cookie-switch::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 2px 7px #19315324;
  transition: left 0.16s;
}
.cookie-modal .cookie-switch.active::before {
  left: 19px;
  background: #193153;
}
.cookie-modal label {
  cursor: pointer;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 15px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 17px; right: 20px;
  background: none;
  border: none;
  color: #193153;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 50%;
  width: 28px; height: 28px;
  transition: background 0.13s;
}
.cookie-modal .close-modal-btn:hover {
  background: #E0FBF6;
  color: #12A47E;
}

/* RESPONSIVENESS */
@media (max-width: 1020px) {
  .container {
    max-width: 92vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 870px) {
  .footer-row {
    flex-direction: column;
    gap: 30px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.01rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  section {
    padding: 30px 10px;
    margin-bottom: 38px;
  }
  .hero .container, .container {
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .feature-grid, .card-container, .testimonial-slider, .article-previews {
    flex-direction: column;
    gap: 17px;
  }
  .footer-row {
    flex-direction: column;
    gap: 22px;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
  }
  .category-tags, .trust-badges {
    flex-wrap: wrap;
    gap: 10px;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1040;
  }
  header nav {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}
@media (max-width: 620px) {
  .feature-grid > div, .card, .faq-list > div, .article-previews > div {
    min-width: unset;
    padding: 13px 9px;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  section {
    padding: 24px 2px;
  }
  .cta-btn {
    padding: 12px 12px;
    font-size: 15px;
  }
  .testimonial-card, .feature-grid > div, .article-previews > div {
    border-radius: 8px;
    padding: 8px 7px;
  }
}

/* CREATIVE ARTISTIC DECORATIVE TOUCHES */
section, .card, .testimonial-card, .feature-grid > div, .faq-list > div, .article-previews > div {
  position: relative;
  /* Decorative element for artistic feel */
}
section::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -12px; right: 40px;
  width: 54px; height: 54px;
  background: rgba(18,164,126,0.15);
  border-radius: 50%;
  filter: blur(1.2px);
}
section:nth-of-type(even)::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: 60px; bottom: -16px;
  width: 48px; height: 48px;
  background: rgba(25,49,83,0.11);
  border-radius: 50%;
  filter: blur(1.8px);
}
.feature-grid > div::after {
  content: '';
  position: absolute;
  right: 12px; top: 12px;
  width: 16px; height: 16px;
  background: #E0FBF6;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}
.card::after, .testimonial-card::before {
  content: '';
  position: absolute;
  left: -18px; bottom: -12px;
  width: 24px; height: 24px;
  background: #12A47E22;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.5;
}

/* TYPOGRAPHY ARTISTIC */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.013em;
}
h1 {
  background: linear-gradient(90deg, #12A47E 55%, #193153 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* VISUAL HIERARCHY (Spacing & size) */
section, .card, .testimonial-card, .feature-grid > div, .faq-list > div, .article-previews > div {
  margin-bottom: 20px;
  gap: 15px;
}

/* Micro-Interactions */
.cta-btn,
.cookie-banner .cookie-btn,
.cookie-modal .cookie-btn {
  transition: background 0.16s, transform 0.15s, box-shadow 0.13s;
}
.card:hover, .faq-list > div:hover, .article-previews > div:hover {
  box-shadow: 0 8px 32px rgba(25,49,83,0.17);
  transform: translateY(-2px) scale(1.03);
}

/* Prevent scrolling under open mobile-menu and modal */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* END OF CSS */
