/*-------------------------------------------------------------
  RESET & BASE
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #263245;
  background: #FCFAFF;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

ul, ol {
  padding-left: 1.2em;
  margin-top: 0.4em;
  margin-bottom: 0.6em;
}

li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #20547E;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #71B076;
  outline: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #225375;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p {
  margin-bottom: 1.2em;
  color: #384358;
}

strong, b {
  font-weight: 600;
  color: #225375;
}

.container {
  max-width: 1140px;
  padding: 0 18px;
  margin: 0 auto;
  width: 100%;
}

/*-------------------------------------------------------------
  COLORS & THEME
--------------------------------------------------------------*/
:root {
  --sq-primary: #225375;
  --sq-secondary: #71B076;
  --sq-accent: #F4F4F7;
  --sq-bg: #FCFAFF;
  --sq-white: #fff;
  --sq-dark: #19202B;
  --sq-pastel-blue: #C2DAF4;
  --sq-pastel-green: #D0F2E4;
  --sq-pastel-purple: #ECE4FB;
  --sq-pastel-pink: #FFD6EC;
  --sq-pastel-yellow: #FFF7D1;
  --sq-shadow: 0 4px 18px 0 rgba(34, 83, 117, 0.08);
}

body {
  background-color: var(--sq-bg);
}

/*-------------------------------------------------------------
  LAYOUT & SECTIONS
--------------------------------------------------------------*/
main {
  flex: 1 0 auto;
  width: 100%;
  min-height: 50vh;
  padding-bottom: 40px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--sq-pastel-blue) 0px, var(--sq-accent) 100%);
  border-radius: 24px;
  box-shadow: var(--sq-shadow);
}
.section:last-child {
  margin-bottom: 0;
}
@media (max-width:600px) {
  section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

/* Feature (benefits/features) Grids: always flex */
.feature_grid,
.benefits-grid,
.stats_highlight,
.contact-info-list,
.download_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 8px 0;
  list-style: none;
}
.feature_grid li,
.benefits-grid li {
  flex: 1 1 220px;
  background: var(--sq-white);
  border-radius: 18px;
  padding: 26px 20px 22px 20px;
  box-shadow: 0 2px 16px 0 rgba(113, 176, 118, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature_grid li:hover, .benefits-grid li:hover {
  box-shadow: 0 6px 28px 0 rgba(34, 83, 117, 0.12);
  transform: translateY(-3px) scale(1.025);
}
.feature_grid img, .benefits-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
@media (max-width: 950px) {
  .feature_grid, .benefits-grid { gap:16px; }
  .feature_grid li, .benefits-grid li { padding: 18px 10px; }
}
@media (max-width: 600px) {
  .feature_grid, .benefits-grid, .stats_highlight {
    flex-direction: column;
    gap: 16px;
  }
  .feature_grid li, .benefits-grid li {
    min-width: 0;
    width: 100%;
  }
}
.stats_highlight li {
  background: var(--sq-pastel-yellow);
  color: #225375;
  border-radius: 15px;
  flex: 1 1 180px;
  padding: 18px 14px;
  text-align: left;
  box-shadow: 0 2px 8px 0 rgba(255, 198, 115, 0.09);
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 400;
}
.stats_highlight strong {
  color: #20547E;
  font-size: 1.6rem;
}

.contact-info-list {
  gap: 16px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sq-pastel-green);
  border-radius: 15px;
  padding: 12px 18px;
  font-size: 1.05rem;
  color: #225375;
}
.contact-info-list img {
  width: 22px;
  height: 22px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--sq-pastel-purple);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px 0 rgba(34,83,117,0.06);
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 6px 22px 0 rgba(113, 176, 118, 0.14);
  transform: translateY(-2px) scale(1.02);
}

.text-section {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  background: var(--sq-pastel-pink);
  color: #225375;
  box-shadow: 0 2px 12px 0 rgba(252,156,215,0.09);
  border-radius: 18px;
  padding: 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.06rem;
  font-weight: 400;
  min-width: 180px;
  max-width: 100%;
  transition: box-shadow 0.15s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px 0 rgba(252,156,215,0.15);
  transform: translateY(-2px) scale(1.013);
}
.testimonial-card p {
  color: #2B3549;
  font-style: italic;
  margin-bottom: 0.3em;
}
.testimonial-card strong {
  color: #19202B;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

@media (min-width:800px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .text-section, .card, .testimonial-card {
    max-width: 540px;
  }
}
@media (max-width:700px) {
  .testimonial-card {
    font-size: 0.97rem;
    padding: 16px 10px;
  }
}

.download_buttons {
  gap: 14px;
  margin-bottom: 10px;
}
.download_buttons a {
  min-width: 190px;
}

/*-------------------------------------------------------------
  HEADER
--------------------------------------------------------------*/
header {
  background: linear-gradient(90deg, var(--sq-pastel-blue) 0%, var(--sq-pastel-green) 100%);
  padding: 0;
  box-shadow: 0 2px 12px rgba(34,83,117,0.04);
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 90;
}
header .container {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 12px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  padding: 5px 12px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  color: #225375;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover {
  background: var(--sq-pastel-green);
  color: #20547E;
}
header nav a.btn-primary {
  background: var(--sq-secondary);
  color: var(--sq-white);
  font-weight: 600;
  padding: 7px 26px;
  border-radius: 22px;
  font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(113,176,118,0.12);
}
header nav a.btn-primary:hover,
header nav a.btn-primary:focus {
  background: #4e9861;
  color: #fff;
}

/*-------------------------------------------------------------
  MOBILE NAV
--------------------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #225375;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.15s;
  z-index: 211;
  padding: 6px 12px;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  color: #71B076;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 290px;
  max-width: 92vw;
  background: linear-gradient(135deg, var(--sq-pastel-green) 40%, var(--sq-pastel-blue) 96%);
  z-index: 210;
  box-shadow: -1px 0 32px rgba(34,83,117,0.14);
  padding-top: 40px;
  transform: translateX(110%);
  transition: transform 0.37s cubic-bezier(0.22, 0.6, 0.23, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: #225375;
  position: absolute;
  top: 18px;
  right: 16px;
  cursor: pointer;
  z-index: 221;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--sq-pastel-green);
}
.mobile-nav {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #225375;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--sq-secondary);
  color: #fff;
}
@media (max-width: 1080px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:1081px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

@media (max-width:600px) {
  header .container {
    min-height: 54px;
    padding: 0 8px;
    gap: 12px;
  }
  header img {
    height: 36px;
  }
  .mobile-menu {
    width: 98vw;
    min-width: unset;
  }
}

/*-------------------------------------------------------------
  BUTTONS & INTERACTIVES
--------------------------------------------------------------*/
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, box-shadow 0.14s, transform 0.09s;
  box-shadow: 0 2px 12px 0 rgba(34,83,117,0.11);
  margin: 8px 4px 8px 0;
  text-align: center;
  white-space: nowrap;
}
.btn-primary,
a.btn-primary {
  background: var(--sq-secondary);
  color: #fff;
  border: 1.5px solid var(--sq-secondary);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #225375;
  color: #fff;
  border-color: #225375;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary,
a.btn-secondary {
  background: var(--sq-pastel-blue);
  color: #225375;
  border: 1.5px solid var(--sq-primary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--sq-accent);
  color: #20547E;
  border-color: var(--sq-secondary);
  transform: translateY(-1px) scale(1.025);
}

/*-------------------------------------------------------------
  FAQ ACCORDION (simple)
--------------------------------------------------------------*/
.faq_accordion {
  width: 100%;
  margin-bottom: 18px;
  background: var(--sq-pastel-purple);
  border-radius: 14px;
  box-shadow: 0 0.5px 5px 0 rgba(143,110,217,0.07);
  padding: 24px 18px 12px 18px;
}
.faq_accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #225375;
  margin: 16px 0 0px 0;
  cursor: pointer;
  font-size: 1.08rem;
  padding: 8px 0;
  transition: color 0.13s;
}
.faq_accordion dt:hover {
  color: var(--sq-secondary);
}
.faq_accordion dd {
  font-size: 1.03rem;
  color: #263245;
  margin-left: 0;
  margin-bottom: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--sq-secondary);
}
.faq_accordion dl {
  margin:0;
}

/*-------------------------------------------------------------
  FOOTER
--------------------------------------------------------------*/
footer {
  background: linear-gradient(90deg, var(--sq-pastel-green) 0%, var(--sq-pastel-purple) 100%);
  padding: 32px 0 0 0;
  border-radius: 26px 26px 0 0;
  color: #225375;
  font-size: 1rem;
  margin-top: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #225375;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 2px 12px;
  border-radius: 5px;
  transition: background 0.12s;
}
footer nav a:hover {
  background: var(--sq-pastel-yellow);
  color: #20547E;
}
.social_links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  align-items: center;
}
.social_links img {
  width: 32px;
  height: 32px;
  opacity: .95;
  transition: opacity 0.17s, filter 0.17s;
  cursor: pointer;
}
.social_links img:hover {
  opacity: 1;
  filter: drop-shadow(0 2px 5px #b5b7ff33);
}
footer .text-section p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #225375;
  margin: 0;
}
@media (max-width: 700px) {
  footer .container {
    gap: 8px;
    padding-bottom: 10px;
  }
  footer nav {
    gap: 12px;
  }
  .social_links img {
    width: 26px;
    height: 26px;
  }
}

/*-------------------------------------------------------------
  COOKIE CONSENT BANNER
--------------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3002;
  width: 100vw;
  background: linear-gradient(90deg, var(--sq-pastel-purple) 30%, var(--sq-pastel-yellow) 100%);
  box-shadow: 0 -4px 20px 0 rgba(205,202,241,0.11);
  border-radius: 14px 14px 0 0;
  padding: 22px 10px 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.04rem;
  color: #225375;
  animation: cookieSlideUp 0.7s cubic-bezier(.22,.68,.45,1.01);
  flex-wrap: wrap;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent p {
  margin:0;
  font-size:1.06rem;
  color: #263245;
}
.cookie-consent .cookie-actions {
  display: flex;
  gap:12px;
  flex-wrap:wrap;
  align-items: center;
}
.cookie-consent .btn-cookie {
  background: var(--sq-secondary);
  color: #fff;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 20px;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(34,83,117,0.08);
  transition: background 0.17s, color 0.17s, transform 0.1s;
  margin: 0 2px 0 0;
}
.cookie-consent .btn-cookie:hover {
  background: #225375;
  color: #fff;
  transform: scale(1.04);
}
.cookie-consent .btn-cookie.settings {
  background: var(--sq-pastel-blue);
  color: #225375;
  border: 1.3px solid var(--sq-primary);
}
.cookie-consent .btn-cookie.settings:hover {
  background: #fff;
  color: #20547E;
}

/* Cookie preferences modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(34,83,117,0.23);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.28s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-dialog {
  background: var(--sq-accent);
  border-radius: 22px;
  padding: 34px 24px 16px 24px;
  max-width: 410px;
  width: 96vw;
  box-shadow: 0 6px 32px 0 rgba(34,83,117,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-dialog h3 {
  margin-bottom: 8px;
  color: #225375;
  font-size: 1.18rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-switch {
  position: relative;
  width: 36px;
  height: 20px;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 36px;
  height: 20px;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-switch .slider {
  background: #D0F2E4;
  border-radius: 20px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.19s;
}
.cookie-switch input[type="checkbox"]:checked + .slider {
  background: #71B076;
}
.cookie-switch .slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  height: 14px; width: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(34,83,117,0.13);
  transition: left 0.19s;
}
.cookie-switch input[type="checkbox"]:checked + .slider:before {
  left: 19px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  color: #20547E;
}
.cookie-category .always {
  font-size: 0.97rem;
  color: #96A2C0;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: #71B076;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #225375;
}

@media (max-width: 650px) {
  .cookie-consent {
    flex-direction: column;
    gap: 12px;
    padding: 18px 6px 12px 6px;
    font-size: 0.95rem;
  }
  .cookie-modal-dialog { padding: 22px 8px 8px 8px; }
}

/*-------------------------------------------------------------
  RESPONSIVE & UTILITY
--------------------------------------------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.02rem; }
  main { padding-bottom: 8px; }
}

/*-------------------------------------------------------------
  Pastel/Dreamy effects (decorative)
--------------------------------------------------------------*/
section {
  position: relative;
  overflow: hidden;
}
section::after {
  content: '';
  position: absolute;
  z-index: 0;
  top:-70px; left:-90px;
  width: 260px; height: 220px;
  background: radial-gradient(circle, var(--sq-pastel-purple) 32%, transparent 80%);
  opacity: 0.48;
}
section:nth-child(even)::after {
  left:unset; right:-110px; top: unset; bottom:-60px;
  background: radial-gradient(circle, var(--sq-pastel-green) 30%, transparent 90%);
  opacity: 0.33;
}
/* Use z-index for layering decoration only, not content. */

/*-------------------------------------------------------------
  Spacing Utility classes (for page consistency)
--------------------------------------------------------------*/
.mt-4 { margin-top: 32px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-2 { margin-bottom: 16px !important; }
.pt-2 { padding-top: 16px !important; }
.pb-2 { padding-bottom: 16px !important; }
.px-2 { padding-left: 16px !important; padding-right: 16px !important; }

/*-------------------------------------------------------------
  UX: Focus styles
--------------------------------------------------------------*/
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #71B076;
  outline-offset: 2px;
  background: var(--sq-pastel-green);
}

/*-------------------------------------------------------------
  SCROLLBARS
--------------------------------------------------------------*/
::-webkit-scrollbar { width: 9px; background: #F4F4F7; }
::-webkit-scrollbar-thumb { background: #E3E6F3; border-radius:6px; }

/*-------------------------------------------------------------
  Other small tweaks
--------------------------------------------------------------*/
@media (max-width: 470px) {
  .btn-primary,.btn-secondary { font-size:0.95rem; padding:8px 18px; }
  .cookie-consent { font-size: 0.89rem; }
}

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