/* =======================================================
   RESET AND NORMALIZE - MOBILE FIRST BASE
   ======================================================= */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #FCFCFC;
  color: #174125;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.33,1.23,.39,.86); 
}
a:focus {
  outline: 2px solid #9ECBB6;
  outline-offset: 2px;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  margin-bottom: 12px;
  color: #1C512E;
  font-weight: 800;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #28523B;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: #265C34;
}
em {
  color: #157674;
  font-style: italic;
}

/* ================================
   VIBRANT ENERGETIC COLORS
   ================================ */
:root {
  --primary: #265C34;
  --secondary: #9ECBB6;
  --accent: #F5EDE4;
  --btn-hover: #24B350;
  --electric-green: #0FF65C;
  --electric-blue: #30BFFF;
  --electric-orange: #FFE034;
  --electric-pink: #FF34B3;
  --dark: #174125;
  --card-bg: #fff;
  --shadow: 0 4px 16px 0 rgba(29,106,70,0.07), 0 1.5px 4px 0 rgba(27,188,69,0.05);
  --radius: 20px;
}

/* ================================
   CONTAINER AND PAGE LAYOUT
   ================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0; /* section spacing handled by .section */
}
.text-section {
  max-width: 700px;
}

/* Mandatory Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.2s ease, transform 0.15s cubic-bezier(.22,.67,.42,1.2);
}
.card:hover {
  box-shadow: 0 10px 24px -1px #30BFFF33, var(--shadow);
  transform: translateY(-3px) scale(1.04);
}
.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: center;
  gap: 12px;
  background: #fff;
  color: #222;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px -2px #0FF65C22, var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 540px;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.08rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #265C34;
  font-weight: 700;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================
   HEADER & MAIN NAVIGATION
   ================================ */
header {
  width: 100%;
  background: #fff;
  position: relative;
  border-bottom: 2px solid var(--secondary);
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
  flex-shrink: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 12px;
  transition: background .17s, color .20s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: linear-gradient(90deg, var(--electric-green), var(--electric-blue));
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.13rem;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(90deg, #30BFFF 10%, #0FF65C 70%, #FFE034 100%);
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 2px 10px #19b56d25;
  margin-left: 14px;
  margin-top: 0;
  transition: box-shadow 0.17s, background .22s cubic-bezier(.41,1.42,.31,.91), transform .16s;
  outline:none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FF34B3 5%, #30BFFF 40%, #0FF65C 85%);
  color: #fff;
  box-shadow: 0 6px 18px -4px #0FF65C58;
  transform: scale(1.05);
}

/* ================================
   HERO + SECTIONS (ENERGY!)
   ================================ */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: none;
}
section:first-of-type {
  background: linear-gradient(90deg, #9ECBB6 0%, #F5EDE4 80%, #ffe03433 100%);
  position: relative;
  box-shadow: 0 16px 30px -10px #30BFFF2d;
  border-bottom-left-radius: 52px;
  border-bottom-right-radius: 52px;
}
section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* Animated High-Energy Border for Section Titles */
h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  border-radius: 3px;
  margin-top: 8px;
  background: linear-gradient(90deg, #30BFFF, #0FF65C, #FF34B3);
}

/* ================================
   LISTS
   ================================ */
ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 16px;
}
ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  line-height: 1.47;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: linear-gradient(120deg, #0FF65C, #30BFFF, #FF34B3);
  display: inline-block;
  opacity: 0.7;
}

/* For basic lists where a bullet is already present (tips)... override */
.content-wrapper ul li:before {
  content: '';
}

/* ================================
   TESTIMONIALS (CRITICAL CONTRAST)
   ================================ */
.testimonial-card {
  background: #fff;
  color: #222;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px -2px #0FF65C22, var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 540px;
  border-left: 4px solid #30BFFF;
  align-items: flex-start;
}
.testimonial-card p {
  color: #1A2B17;
  font-size: 1.13rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: #265C34;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #1C512E;
  color: #F5EDE4;
  border-top: 4px solid #0FF65C;
  padding: 40px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #F5EDE4;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.17s;
  padding: 5px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #FF34B3;
}
.legal-links, .contact-info {
  font-size: 0.92rem;
  color: #A6E7CA;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.legal-links a {
  color: #A6E7CA;
  margin-right: 12px;
  transition: color .15s;
}
.legal-links a:hover {
  color: #0FF65C;
}
.contact-info {
  flex-direction: column;
  gap: 3px;
  color: #F2FFF6;
}

/* ================================
   MOBILE MENU
   ================================ */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 16px;
  right: 22px;
  z-index: 1003;
  padding: 12px 15px;
  background: linear-gradient(120deg, #0FF65C 65%, #30BFFF 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 14px #30BFFF13;
  transition: background .15s, box-shadow .22s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #30BFFF;
}
/* Hide nav on mobile: */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  z-index: 1200;
  background: rgba(38,92,52,0.97);
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(.42,1.15,.8,1.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 1202;
  cursor: pointer;
  outline:none;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FF34B3;
}
.mobile-nav {
  margin-top: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 18px 32px 16px 34px;
  border-bottom: 1px solid #265C34;
  width: 100%;
  transition: background .18s, color .13s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF34B3;
  background: #fff2;
}

@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  header .container {
    padding: 10px 10px 10px 12px;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 4vw; }
  .content-wrapper, .section .container, .card-container, .content-grid, .feature-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }
  section {
    padding: 30px 0 30px 0;
    margin-bottom: 36px;
  }
  .btn-primary {
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 1rem;
    padding: 14px 0;
  }
  .testimonial-card {
    max-width: 97vw;
    padding: 18px 10px;
  }
  .text-image-section, .content-grid {
    gap: 11px !important;
  }
  .mobile-menu-toggle {
    top: 9px;
    right: 8px;
    font-size: 2.1rem;
    padding: 10px 11px;
  }
  footer .container {
    padding-bottom: 16px;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.1rem;}
  .btn-primary { font-size: 1rem;}
}

/* ================================
   ANIMATIONS, MICRO-INTERACTIONS
   ================================ */
.btn-primary, .mobile-menu-toggle, .mobile-menu-close, .card, header nav a, .mobile-nav a {
  will-change: transform, box-shadow, background, color;
  transition: background .15s, color .17s, box-shadow .18s, transform .22s;
}
.card:hover {
  box-shadow: 0 10px 22px 0 #0FF65C33;
  transform: translateY(-5px) scale(1.03);
}
header nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg,#30BFFF,#0FF65C);
  transition: width .22s cubic-bezier(.44,1.13,.44,.92);
  border-radius:2px;
  margin-top:2px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.98);
  padding: 18px 3vw 18px 3vw;
  box-shadow: 0 2px 18px #17412528;
  border-top: 3px solid #30BFFF;
  font-size: 1rem;
  animation: cookie-banner-fadein .7s cubic-bezier(.21,1.33,.34,.99);
}
@keyframes cookie-banner-fadein {
  from {transform: translateY(100%); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 23px;
  padding: 9px 18px;
  margin: 0 3px;
  background: #30BFFF;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px #30BFFF29;
  transition: background .16s, color .14s, box-shadow .18s, transform .15s;
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, #0FF65C, #30BFFF);
}
.cookie-banner button.reject {
  background: linear-gradient(90deg, #FF34B3 65%, #30BFFF 100%);
}
.cookie-banner button.settings {
  background: #F5EDE4;
  color: #1C512E;
  border: 1.5px solid #9ECBB6;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFE034;
  color: #1C512E;
  transform: scale(1.05);
  box-shadow: 0 6px 18px -4px #0FF65C32;
}
.cookie-banner a {
  color: #30BFFF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: .96rem;
    padding: 14px 12px;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
    margin-top: 12px;
    gap: 8px;
  }
}

/* COOKIES SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1401;
  background: rgba(38,92,52,0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in .56s cubic-bezier(.2,.8,.26,1);
}
@keyframes cookie-modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  min-width: 300px; max-width: 94vw;
  border-radius: 24px;
  box-shadow: 0 14px 32px #0FF65C22, 0 3px 9px #30BFFF29;
  padding: 40px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #30BFFF;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: color .23s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FF34B3;
}
.cookie-modal h3 {
  color: #265C34;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 10px 0 5px 0;
}
.cookie-modal .category-toggle {
  width: 42px;
  height: 22px;
  border-radius: 12px;
  background: #F5EDE4;
  position: relative;
  border: 1.5px solid #30BFFF;
  transition: background .14s;
}
.cookie-modal .category-toggle input[type=checkbox] {
  display: none;
}
.cookie-modal .toggle-slider {
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #30BFFF;
  transition: left .2s cubic-bezier(.41,1.42,.31,.91), background .17s;
}
.cookie-modal .category-toggle input[type=checkbox]:checked + .toggle-slider {
  left: 22px;
  background: #0FF65C;
}
.cookie-modal .category-toggle[aria-disabled='true'] {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 23px;
  padding: 10px 22px;
  background: #30BFFF;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px #30BFFF29;
  transition: background .16s, color .12s, transform .14s;
}
.cookie-modal button.save {
  background: linear-gradient(80deg, #0FF65C, #30BFFF);
}
.cookie-modal button.cancel {
  background: #F5EDE4;
  color: #1C512E;
  border: 1.5px solid #9ECBB6;
}
.cookie-modal button:hover {
  background: #FFE034;
  color: #1C512E;
  transform: scale(1.04);
}

@media (max-width: 540px) {
  .cookie-modal{
    padding: 22px 8px 14px 10px;
    min-width: 0;
    font-size: 1rem;
  }
  .cookie-modal .cookie-actions {
    flex-direction: column;
    gap: 7px;
  }
}

/* ================================
   MISCELLANEOUS ELEMENTS
   ================================ */
hr {
  margin: 32px 0 24px 0;
  border: 0;
  border-bottom: 2px solid var(--secondary);
}
blockquote {
  font-style: italic;
  background: #F5EDE4;
  border-left: 4px solid #0FF65C;
  color: #1C512E;
  margin: 28px 0;
  padding: 17px 22px;
  border-radius: 8px;
}
@media (max-width: 500px) {
  blockquote { font-size: .95rem; padding: 12px 8px; }
}

/* ================================
   OVERRIDES FOR LAYOUTS/PAGES
   ================================ */
.text-image-section { flex-wrap: wrap; align-items: center; gap: 30px; }
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 13px; }
}
.content-grid { display:flex; flex-wrap:wrap; gap:20px; justify-content:space-between; }
.card-container { display:flex; flex-wrap:wrap; gap:24px;}
.card { margin-bottom:20px; position:relative;}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap:15px;}
.section { margin-bottom: 60px; padding: 40px 20px;}

/* Ensure minimum spacing, margin for all content blocks */
section > div { margin-bottom: 0; }
.content-wrapper > * + * { margin-top: 12px; }
section .btn-primary, .content-wrapper .btn-primary { margin-top: 14px; }

/* ================================
   ACCESSIBILITY
   ================================ */
:focus-visible {
  outline: 2.2px dashed #30BFFF;
  outline-offset: 3px;
}

/* ================================
   SCROLLBAR (Optional) modern look
   ================================ */
::-webkit-scrollbar { width:10px; background: #fff; }
::-webkit-scrollbar-thumb { background: #9ECBB6; border-radius: 7px; }

/* ================================
   END
   ================================ */