/* CSS 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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F4F4F4;
  color: #222;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
:focus {
  outline: 2px solid #39A949;
  outline-offset: 2px;
}

/* BRAND FONT-FACE (GOOGLE FONTS FALLBACK) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:700,400&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: #F4F4F4;
  color: #181c22;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  color: #204574;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p, li, td, th, input, button {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}
strong {
  font-weight: 700;
  color: #204574;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 12px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,69,116, 0.07);
}

.hero {
  background: #204574;
  color: #fff;
  position: relative;
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
  padding-top: 54px;
  padding-bottom: 54px;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #F4F4F4;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.hero .cta-btn {
  margin-top: 18px;
}

.cta-btn {
  display: inline-block;
  background: #39A949;
  color: #fff;
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 13px 36px;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(57,169,73,0.14);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background 180ms, box-shadow 180ms, transform 160ms;
}
.cta-btn:hover, .cta-btn:focus {
  background: #204574;
  color: #fff;
  box-shadow: 0 6px 24px rgba(32,69,116,.18);
  transform: translateY(-2px) scale(1.03);
}

/* FLEX CONTAINERS - MANDATORY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(32,69,116,0.10);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(32,69,116,0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 20px 22px 24px;
  gap: 12px;
}
.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;
  background: #fff;
  box-shadow: 0 2px 20px rgba(32,69,116,0.13);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 510px;
  border: 2px solid #2045740d;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(32,69,116,0.16);
}
.testimonial-meta {
  font-weight: 700;
  color: #204574;
  font-size: 1rem;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #39A949;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #222;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HOME PAGE SPECIAL GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div {
  background: #fff;
  box-shadow: 0 2px 16px rgba(32,69,116,0.08);
  border-radius: 16px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 230px;
  padding: 30px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.19s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(57,169,73,0.11);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #204574;
}
.feature-grid p {
  font-size: 1rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 16px;
}
.service-grid > div {
  box-shadow: 0 2px 18px rgba(32,69,116,0.08);
  border-radius: 14px;
  background: #fff;
  flex: 1 1 260px;
  max-width: 320px;
  min-width: 220px;
  padding: 26px 17px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  border: 2px solid #39A94913;
  transition: box-shadow 0.19s;
}
.service-grid > div:hover {
  box-shadow: 0 8px 28px rgba(57,169,73,0.13);
  border: 2px solid #39A94944;
}
.service-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 9px;
}
.service-grid h3 {
  font-size: 1.1rem;
  color: #204574;
}
.service-grid p {
  font-size: 0.97rem;
  color: #444;
}

.usp-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.usp-icons img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 2px rgba(32,69,116,0.12));
}

.trust-signals {
  display: flex;
  gap: 28px;
  margin-top: 18px;
}
.trust-signals span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #204574;
  font-weight: 700;
  font-size: 1rem;
  background: #E7F6EA;
  border-radius: 22px;
  padding: 7px 18px 7px 11px;
}
.trust-signals img {
  width: 32px;
  height: 32px;
}

/* TESTIMONIAL SLIDER & LIST */
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.review-highlights ul {
  list-style: disc inside;
  margin-left: 0;
  margin-top: 12px;
  color: #204574;
  font-weight: 600;
  font-size: 1.05rem;
  padding-left: 16px;
}

/* FAQ & ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(32,69,116,0.07);
  padding: 16px 18px 12px;
  transition: box-shadow 0.18s;
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(57,169,73,0.09);
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: #204574;
}
.faq-item p {
  color: #222;
  font-size: 1rem;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1.5px solid #20457433;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.18s;
  background: #fff;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1.5px solid #39A949;
  box-shadow: 0 0 0 1.5px #39A94920;
}

/* TABLES */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.pricing-table th, .pricing-table td {
  padding: 13px 10px;
  border: 1.5px solid #20457414;
  background: #fff;
  color: #204574;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #204574;
  color: #fff;
  font-weight: bold;
  font-size: 1.08rem;
}

/******************  HEADER / NAVBAR  ******************/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 14px rgba(32,69,116,0.04);
  position: sticky;
  top: 0;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  min-height: 71px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav li {
  position: relative;
}
.main-nav a {
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 8px 12px;
  color: #204574;
  border-radius: 32px;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #204574;
  color: #fff;
}
.main-nav .cta-btn {
  margin-left: 24px;
  background: #39A949;
  color: #fff;
  padding: 10px 22px;
  border-radius: 32px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(57,169,73,0.10);
  border: none;
}
.main-nav .cta-btn:hover {
  background: #204574;
  color: #fff;
}
header img {
  height: 39px;
  width: auto;
}

/**************** MOBILE NAVIGATION *****************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #204574;
  cursor: pointer;
  margin-left: 16px;
  z-index: 102;
  padding: 6px 10px 8px;
  transition: color 0.15s, background 0.10s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #39A949;
  background: #2045740e;
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 96vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 34px rgba(32,69,116,0.13);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.57,1.52,.67,.63);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 44px;
  padding-left: 22px;
  padding-right: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 11px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #204574;
  cursor: pointer;
  z-index: 111;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #39A949;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: #204574;
  background: #F4F4F4;
  padding: 11px 16px;
  border-radius: 22px;
  transition: background 0.16s, color 0.17s;
  margin-bottom: 1px;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: #204574;
  color: #fff;
}

@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 3vw;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 14px;
  }
  .feature-grid, .service-grid {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero .container {
    min-height: 205px; padding-top: 38px; padding-bottom: 38px;
  }
  .section, .card-content {
    padding: 24px 8px;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .trust-signals, .usp-icons {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav ul, .main-nav .cta-btn {
    display: none !important;
  }
  .main-nav {
    padding-right: 9px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 530px) {
  .hero .container { padding-left: 2vw; padding-right: 2vw; }
  .container { padding: 0 2vw; }
}

/***************** FOOTER ********************/
footer {
  margin-top: 65px;
  padding: 0;
  background: #204574;
  color: #fff;
  font-size: 1rem;
}
footer .container {
  padding: 0 0 0 0;
  max-width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 16px 30px 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #F4F4F4;
  font-family: 'Roboto Slab', Arial, serif;
  padding: 3px 0;
  font-size: 1.02rem;
  transition: color 0.15s;
}
footer nav a:hover,footer nav a:focus {
  color: #39A949;
}
footer img {
  height: 29px;
  margin-bottom: 14px;
}
footer div > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #e9f9eb;
  font-size: 0.99rem;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}
.social-links img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 3px 3px #00000012);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  footer img {
    margin-bottom: 0;
  }
}

/********* COOKIE BANNER + MODALS ******/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #204574;
  color: #fff;
  width: 100%;
  z-index: 299;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 8vw 18px 8vw;
  box-shadow: 0 -3px 32px rgba(32,69,116,0.14);
  gap: 26px;
  font-size: 1rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin-right: 18px;
  color: #fff;
  font-size: 1rem;
  max-width: 440px;
  flex: 1 0 300px;
}
.cookie-banner .cookie-btn {
  background: #39A949;
  color: #fff;
  border: none;
  padding: 9px 19px;
  border-radius: 18px;
  font-family: 'Roboto Slab', Arial, serif;
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 4px;
  font-size: 1rem;
  transition: background 0.14s, transform 0.17s;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #204574;
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .cookie-btn.settings {
  background: #F4F4F4;
  color: #204574;
  border: 1px solid #39A94999;
  margin-right: 0;
  margin-left: 4px;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #39A949;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: #0006;
  z-index: 301;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal-bg 0.22s;
}
@keyframes fade-in-modal-bg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 16px;
  max-width: 420px;
  width: 93vw;
  padding: 30px 18px 22px 25px;
  box-shadow: 0 8px 32px rgba(32,69,116,0.22);
  z-index: 302;
  position: relative;
  animation: cookie-modal-slidein 0.29s cubic-bezier(.62,1.59,.52,.67);
}
@keyframes cookie-modal-slidein {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #204574;
  font-size: 1.2rem;
  margin-bottom: 11px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px; right: 17px;
  border: none;
  background: none;
  font-size: 1.7rem;
  color: #204574;
  cursor: pointer;
}
.cookie-modal-section {
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  appearance: none;
  background-color: #F4F4F4;
  border: 1.5px solid #20457426;
  border-radius: 22px;
  width: 44px;
  height: 24px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: border 0.13s, background 0.13s;
}
.cookie-toggle:checked {
  background-color: #39A949;
  border-color: #39A949;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 100%;
  background: #fff;
  transition: left 0.15s;
  box-shadow: 0 1px 4px #0001;
}
.cookie-toggle:checked:before {
  left: 23px;
}
.cookie-modal-category {
  font-weight: 600;
  color: #204574;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 7vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btn {
    margin-bottom: 0;
  }
}
/********** CONFIRMATION + MISC *********/
.confirmation-message {
  background: #E7F6EA;
  color: #204574;
  padding: 24px 18px 14px 20px;
  border-radius: 13px;
  margin-bottom: 11px;
  font-size: 1.08rem;
}
.next-steps ul {
  list-style: disc inside;
  color: #204574;
}
.next-steps li {
  margin-bottom: 3px;
}
/**** TYPOGRAPHY & HIERARCHY ****/
section h2 {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}
section ul, section ol {
  margin-left: 15px;
  margin-bottom: 14px;
}
section ul li,
section ol li {
  margin-bottom: 6px;
}
/********* TABLES AND SPECIAL LISTS **********/
section table {
  margin-bottom: 18px;
}
/******** ANIMATIONS ********/
.card, .testimonial-card, .faq-item, .feature-grid > div, .service-grid > div {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .service-grid > div:hover, .faq-item:hover {
  transform: translateY(-2px) scale(1.015);
}
/**** BREATHING ROOM ****/
section, .section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
/**** MINIMAL BORDERS & SEPARATION ****/
hr {
  border: 0;
  border-top: 1.5px solid #20457424;
  margin: 28px 0;
}
/**** ACCENT COLOR HIGHLIGHT ****/
.accent {
  color: #39A949;
  font-weight: bold;
}
/**** Z-INDEX STACKING SAFETY ****/
header { z-index: 40; }
.mobile-menu { z-index: 110; }
.cookie-banner { z-index: 299; }
.cookie-modal-overlay { z-index: 301; }
/**** ENSURE INTERACTIONS ****/
button, [role=button] {
  cursor: pointer;
}
/******** UTILITIES ********/
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
/**** REMOVE OUTLINE ON MOUSE INTERACTION ****/
*:focus:not(:focus-visible) {
  outline: none;
}

/**** END OF CSS ****/