/* 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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #F4F7F9;
  color: #28334A;
  scroll-behavior: smooth;
}
* {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background-color: #F4F7F9;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #28334A;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #28334A;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6FC7B2;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  margin-bottom: 20px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #28334A;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul li, ol li, dd {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #28334A;
}
strong {
  font-weight: 700;
  color: #28334A;
}

/* Header */
header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(40,51,74,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 20px;
  min-height: 68px;
  position: sticky;
  top: 0;
  z-index: 99;
  gap: 16px;
  transition: box-shadow .24s;
}
header a img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #28334A;
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #6FC7B2;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 10px 30px;
  background-color: #28334A;
  color: #fff;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px 0 rgba(40,51,74,0.10);
  margin-left: auto;
  cursor: pointer;
  transition: background-color .2s, box-shadow .2s, transform .1s;
}
.cta-button:hover, .cta-button:focus {
  background-color: #38578D;
  box-shadow: 0 4px 16px 0 rgba(40,51,74,0.14);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #28334A;
  display: none;
  margin-left: 24px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background .12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E3ECF4;
  color: #28334A;
}

/* MOBILE BURGER NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,51,74,0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.45,1.47,.74,.67);
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  margin: 32px 0 24px 20px;
  cursor: pointer;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 50%;
  transition: background .14s;
  z-index: 2050;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(255,255,255,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding: 16px 0 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  transition: color .18s, background .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6FC7B2;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu.active,
  .mobile-menu {
    display: none !important;
  }
}

/* SECTIONS & FLEX LAYOUTS */
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(40,51,74,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(40,51,74,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 250px;
  max-width: 360px;
  transition: box-shadow .18s, transform .13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(40,51,74,0.11);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #F4F7F9;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(40,51,74,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .10s;
  color: #28334A;
}
.testimonial-card strong {
  display: block;
  margin-left: auto;
  margin-right: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card .star-rating {
  font-size: 1.2rem;
  color: #FFD301;
  margin-left: 18px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(40,51,74,0.16);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}
.text-section ul, .text-section ol {
  margin: 0 0 16px 20px;
  color: #40516A;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  position: relative;
  font-size: 1rem;
  padding-left: 0.7em;
}
.text-section ul li:before {
  content: '•';
  color: #6FC7B2;
  font-size: 1.1em;
  margin-right: 7px;
  position: absolute;
  left: -0.8em;
}
.text-section ol {
  counter-reset: ordercnt;
}
.text-section ol li {
  counter-increment: ordercnt;
}
.text-section ol li:before {
  content: counter(ordercnt) '.';
  color: #6FC7B2;
  font-weight: bold;
  margin-right: 7px;
  position: absolute;
  left: -1.1em;
}

dl {
  margin: 0 0 20px 0;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #28334A;
  margin-top: 10px;
  margin-bottom: 2px;
}
dd {
  margin-bottom: 14px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #28334A;
  color: #fff;
  padding: 40px 20px 32px 20px;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 16px 0 rgba(40,51,74,0.10);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
footer nav a {
  color: #fff;
  opacity: 0.88;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .17s, opacity .12s;
}
footer nav a:hover, footer nav a:focus {
  color: #6FC7B2;
  opacity: 1;
}
footer address {
  font-style: normal;
  opacity: 0.85;
  margin-bottom: 10px;
}
footer div, footer address {
  font-size: 1rem;
  color: #fff;
}
footer a {
  color: #6FC7B2;
  text-decoration: underline;
  transition: color .14s;
}
footer a:hover, footer a:focus {
  color: #fff;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 14px 0 rgba(40,51,74,0.09);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 12px;
  z-index: 3000;
  padding: 24px 20px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  transition: transform .25s;
  color: #28334A;
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 0;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 24px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  background: #6FC7B2;
  color: #fff;
  transition: background .18s, color .16s, box-shadow .17s;
}
.cookie-btn.reject {
  background: #adb7c0;
  color: #28334A;
}
.cookie-btn.settings {
  background: #28334A;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 2px 8px 0 rgba(111,199,178,0.14);
  opacity: 0.9;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-56%) scale(1);
  background: #fff;
  box-shadow: 0 12px 52px 0 rgba(40,51,74,0.32);
  border-radius: 22px;
  z-index: 4000;
  min-width: 96vw;
  max-width: 410px;
  padding: 34px 30px 28px 30px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal .25s;
}
.cookie-modal.active {
  display: flex;
}
@keyframes fadeInModal {
  from {opacity:0;transform:translate(-50%,-62%) scale(0.97);}
  to {opacity:1;transform:translate(-50%,-56%) scale(1);}
}
.cookie-modal__header {
  font-size: 1.18rem;
  font-weight: 700;
  color: #28334A;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 11px;
  background: none;
  color: #28334A;
  border: none;
  font-size: 1.32rem;
  cursor: pointer;
  transition: background .15s;
  border-radius: 50%;
  padding: 5px 10px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F4F7F9;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 7px 0;
  font-size: 1rem;
}
.cookie-toggle {
  position: relative;
  width: 36px;
  height: 22px;
  background: #adb7c0;
  border-radius: 18px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background .15s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: 0.18s;
  box-shadow: 0 1px 4px rgba(40,51,74,0.08);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 16px;
  background: #6FC7B2;
}
.cookie-category.essential {
  font-weight: 700;
  color: #28334A;
  opacity: 0.76;
}

/* Responsive layout for Cookie banner/modal */
@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 19px 8px 15px 12px;
    font-size: 0.94rem;
  }
  .cookie-banner__actions {
    flex-direction: row;
    gap: 11px;
  }
  .cookie-modal {
    min-width: 92vw;
    max-width: 98vw;
    padding: 20px 5vw 19px 6vw;
  }
}

/* FORM ELEMENTS (for later use or expansion) */
input[type="text"], input[type="email"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #E3ECF4;
  background: #F4F7F9;
  border-radius: 8px;
  padding: 10px 15px;
  color: #28334A;
  margin-bottom: 16px;
  transition: border .16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #6FC7B2;
  outline: none;
}

button, [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #28334A;
  padding: 10px 28px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background .16s, box-shadow .13s, color .14s;
}
button:hover, button:focus, [type="submit"]:hover, [type="submit"]:focus {
  background: #38578D;
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(40,51,74,0.13);
}

/* RESPONSIVENESS */
@media (max-width: 991px) {
  section {
    padding: 32px 10px;
    margin-bottom: 40px;
    border-radius: 13px;
  }
  .container {
    padding: 0 8px;
  }
  header {
    flex-direction: row;
    min-height: 60px;
    padding: 10px 10px;
    border-radius: 0;
  }
  footer {
    padding: 27px 8px 20px 8px;
    border-radius: 16px 16px 0 0;
    font-size: 0.96rem;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .text-image-section, .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 18px 12px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .main-nav {
    display: none !important;
  }
  header {
    padding: 7px 6px;
  }
  section {
    margin-bottom: 28px;
    border-radius: 11px;
    padding: 21px 4px;
  }
  .card-container {
    gap: 12px;
  }
  .card {
    min-width: 90vw;
    max-width: 100vw;
    padding: 16px 12px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1rem;
  }
  .card {
    min-width: unset;
    max-width: 98vw;
    padding: 10px 6px;
  }
  .testimonial-card strong {
    font-size: 0.95rem;
  }
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, .cta-button:focus {
  outline: 2px solid #6FC7B2 !important;
  outline-offset: 2px;
}

/* Subtle animations on appearance */
section, .card, .testimonial-card, .cta-button {
  animation: fadeInUp .35s cubic-bezier(.45,1.14,.74,.99);
  animation-iteration-count: 1;
}
@keyframes fadeInUp {
  from {opacity:0;transform:translateY(22px) scale(0.99);}
  to {opacity:1;transform:translateY(0) scale(1);}
}

/* Utility: visually hidden for accessibility */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
}

/* Utility: hide for JS toggling */
.d-none {
  display: none !important;
}

/* END OF STYLE */
