/* ==== CSS RESET & 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, main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F9FA;
  color: #26314F;
  font-family: 'Roboto', Arial, sans-serif;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #25A18E;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #208379;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font: inherit;
  border: none;
  cursor: pointer;
  outline: none;
  background: none;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #26314F;
}
h2 {
  font-size: 2rem;
  color: #25A18E;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.35rem;
  color: #208379;
  margin-bottom: 16px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #26314F;
}
p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #26314F;
  line-height: 1.75;
}
strong {
  font-weight: 700;
}

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==== HEADER & NAV ==== */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(38,49,79,0.06);
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 18px 20px;
}
header img {
  height: 52px;
  width: auto;
  transition: transform 0.2s;
}
header img:hover {
  transform: rotate(-3deg) scale(1.06);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #26314F;
  border-radius: 6px;
  padding: 8px 16px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #25A18E;
  color: #fff;
}
.main-nav .nav-cta {
  background: #25A18E;
  color: #fff;
  border-radius: 24px;
  font-size: 1rem;
  padding: 10px 26px;
  margin-left: 12px;
  font-weight: bold;
  box-shadow: 0 4px 18px 0 rgba(38,49,79,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus {
  background: #208379;
  color: #fff;
  box-shadow: 0 6px 22px 0 rgba(32,163,126,0.14);
}

/* ==== MOBILE NAV ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 25px;
  right: 24px;
  z-index: 991;
  font-size: 2rem;
  background: #25A18E;
  color: #fff;
  border-radius: 20%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.2s;
  box-shadow: 0 3px 14px rgba(38,49,79,0.13);
}
.mobile-menu-toggle:active {
  background: #208379;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #26314F;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(0.55,0,0.1,1);
  display: flex;
  flex-direction: column;
  z-index: 999;
  padding: 0 0 0 0;
  box-shadow: 4px 0 24px rgba(0,0,0,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 1000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 86px;
  align-items: flex-start;
  padding: 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 8px 4px;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #25A18E;
  border-bottom: 2px solid #25A18E;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    padding: 18px 14px 12px 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  header .container {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 16px 10px 10px 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* ==== PAGE STRUCTURE ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(38,49,79,0.045);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 26px 10px;
    border-radius: 11px;
  }
}
/* ==== FLEX CONTAINERS ==== */
.content-wrapper, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 14px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 16px 0 rgba(32,161,142,0.10);
  padding: 26px 20px;
  min-width: 280px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 30px 0 rgba(38,49,79,0.11);
  transform: translateY(-8px) scale(1.02);
}
.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;
}
@media (max-width: 900px) {
  .text-image-section {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(32,161,142,0.08);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 530px;
  flex: 1 1 320px;
  border: 2px solid #25A18E;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card p {
  font-size: 1.10rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26314F;
}
.testimonial-card span {
  font-size: 1rem;
  color: #208379;
  font-weight: bold;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 5px 24px rgba(32,161,142,0.13);
  border-color: #208379;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 12px;
  }
}

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

/* ==== CARDS ==== */
.card {
  border-left: 4px solid #25A18E;
}

/* ==== LISTS ==== */
ul, ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.text-section ul,
.text-section ol {
  margin-left: 12px;
  padding-left: 17px;
}

/* ==== BUTTONS / CALL TO ACTIONS ==== */
.cta-primary {
  display: inline-block;
  background: #25A18E;
  color: #fff;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 14px 38px;
  border-radius: 32px;
  margin-top: 20px;
  margin-bottom: 12px;
  box-shadow: 0 5px 20px 0 rgba(38,49,79,0.12);
  letter-spacing: 0.2px;
  transition: background 0.16s, color 0.13s, transform 0.13s, box-shadow 0.2s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #208379;
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 10px 30px 0 rgba(32,163,126,0.21);
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #25A18E;
  border: 2px solid #25A18E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 13px 32px;
  border-radius: 30px;
  margin-top: 19px;
  transition: background 0.15s, color 0.15s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #25A18E;
  color: #fff;
  border-color: #208379;
}

/* ==== TEXT SECTIONS ==== */
.text-section {
  padding: 8px 0;
  flex: 1 1 240px;
  min-width: 200px;
}

/* ==== FOOTER ==== */
footer {
  background: #26314F;
  color: #F8F9FA;
  padding: 38px 0 18px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 52px;
  filter: brightness(5) contrast(0.85);
}
.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #25A18E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 5px;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
}
.footer-contact span {
  color: #F8F9FA;
  margin-bottom: 4px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
}
.footer-social a img {
  height: 28px;
  filter: invert(48%) sepia(96%) saturate(469%) hue-rotate(127deg) brightness(108%) contrast(106%);
  transition: filter 0.18s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: invert(94%) sepia(0%) saturate(809%) hue-rotate(186deg) brightness(109%) contrast(101%);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .footer-brand img {
    height: 42px;
  }
}

/* ==== ENERGY & VIBRANCE ==== */
/* Electric background spots/effects (decorative only) */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: -90px; right: -50px;
  width: 220px; height: 160px;
  background: #25A18E;
  opacity: 0.13;
  border-radius: 40% 53% 37% 64%;
  pointer-events: none;
  z-index: 1;
}
.section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -70px;
  width: 180px; height: 80px;
  background: #208379;
  opacity: 0.10;
  border-radius: 50% 30% 60% 59%;
  pointer-events: none;
  z-index: 1;
}
.section > * {
  position: relative;
  z-index: 2;
}

/* ==== COOKIE BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #26314F;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  z-index: 12000;
  box-shadow: 0 -2px 16px rgba(38,49,79,0.09);
  font-size: 1.02rem;
  animation: ccbannerdrop 0.7s cubic-bezier(0.31,0.75,0.31,1.13);
}
@keyframes ccbannerdrop {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 16px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 23px;
  margin: 0 4px;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #25A18E;
  color: #fff;
  box-shadow: 0 1px 8px rgba(32,161,142,0.14);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #208379;
}
.cookie-btn.reject {
  background: #fff;
  color: #208379;
  border: 2px solid #208379;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #208379;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #25A18E;
  border-color: #208379;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px;
  }
  .cookie-banner-actions {
    gap: 6px;
    width: 100%;
  }
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  z-index: 13000;
  left: 0; top: 0;
  height: 100vh; width: 100vw;
  background: rgba(38,49,79,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.25s;
}
@keyframes cookiefadein {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal .cookie-modal-inner {
  background: #fff;
  border-radius: 19px;
  padding: 38px 28px;
  max-width: 380px;
  width: 92vw;
  color: #26314F;
  box-shadow: 0 6px 32px rgba(38,49,79,0.17);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #25A18E;
  font-size: 2rem;
  position: absolute;
  right: 34px;
  top: 22px;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #208379;
  font-size: 1.35rem;
  margin-bottom: 7px;
}
.cookie-prefs-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-prefs-category label {
  font-weight: 600;
  color: #26314F;
  font-size: 1rem;
}
.cookie-prefs-toggle {
  display: inline-block;
  width: 40px; height: 22px;
  background: #ddd;
  border-radius: 18px;
  position: relative;
  margin-left: 10px;
  transition: background 0.2s;
}
.cookie-prefs-toggle input {
  opacity:0; width:0; height:0;
}
.cookie-prefs-toggle span {
  position: absolute; left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #25A18E;
  border-radius: 50%;
  transition: left 0.19s, background 0.14s;
}
.cookie-prefs-toggle input:checked + span {
  left: 20px;
  background: #208379;
}
.cookie-prefs-category .essential {
  color: #25A18E;
  font-weight: bold;
  font-size: 1rem;
}
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 17px;
  justify-content: flex-end;
}

/* ==== GENERAL MEDIA QUERIES ==== */
@media (max-width:600px) {
  .container {
    padding: 0 6px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .footer-brand img { height: 35px; }
}

/* ==== SCROLLBAR & MICRO-EFFECTS ==== */
::-webkit-scrollbar { width: 9px; background: #F8F9FA; }
::-webkit-scrollbar-thumb { background: #25A18E; border-radius: 6px; }

/* ==== VIBRANT HIGHLIGHTS ==== */
.card, .testimonial-card {
  border-radius: 18px;
}
.text-section {
  border-radius: 10px;
  background: #F8F9FA;
  box-shadow: 0 2px 9px rgba(32,161,142,0.03);
  padding: 14px 18px;
  margin-bottom: 12px;
}

/* ==== FORMS (if any in the future) ==== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 8px;
  border: 1px solid #25A18E;
  outline: none;
  background: #F8F9FA;
  color: #26314F;
  margin-bottom: 14px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1px solid #208379;
}

/* ==== Z-INDEX SAFETY ==== */
header { z-index: 30; }
footer { z-index: 20; }
.mobile-menu { z-index: 999; }
.mobile-menu-toggle { z-index: 991; }
.cookie-banner { z-index: 12000; }
.cookie-modal { z-index: 13000; }

/* ==== Miscellaneous ==== */
@media (min-width:1025px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}

/************* END OF STYLE.CSS *************/
