/* -----------------------------
CSS RESET & BASELINE NORMALIZE
------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6FBF9;
  color: #18694F;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #26896A;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #00522E;
}

ul, ol {
  list-style: none;
}

button, .cta {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  outline: none;
  border: none;
  transition: box-shadow 0.25s, background 0.25s, color 0.25s, transform 0.12s;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
  color: #26896A;
  font-weight: 800;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* ------------------------------
---- BRAND COLORS AND ACCENTS ----
------------------------------- */
:root {
  --primary: #26896A;
  --primary-dark: #18694F;
  --secondary: #F6FBF9;
  --white: #FFFFFF;
  --accent: #458C59;
  --accent-dark: #00522E;
  --brand-yellow: #FFF36C;
  --brand-orange: #FEAF36;
  --brand-pink: #F76880;
  --brand-blue: #57C7F1;
  --shadow: rgba(40, 137, 106, 0.08);
  --card-radius: 22px;
}

/* ----------------------------
---- CONTAINERS & LAYOUT ----
----------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SPACING AND SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px 0 var(--shadow);
  margin-bottom: 20px;
  padding: 24px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
  flex: 1 1 220px;
}

.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;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--shadow);
  min-width: 250px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  flex-direction: column;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive flex directions */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .features-list,
  .testimonial-list,
  .services-list,
  .team-overview {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* ------------------------------------
------ NAVIGATION & HEADER LAYOUT ------
--------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 3px 24px 0 var(--shadow);
  position: relative;
  z-index: 100;
  min-height: 80px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 32px;
  position: relative;
}
.logo img {
  height: 46px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 7px 10px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s, transform 0.1s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-yellow);
  color: var(--accent-dark);
  transform: translateY(-2px) scale(1.05);
}

.cta.primary {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 18px;
  font-size: 1.15rem;
  margin-left: 20px;
  box-shadow: 0 4px 16px 0 var(--shadow);
  text-shadow: 0 1px 2px rgba(38,137,106,0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.13s;
  display: inline-block;
  animation: cta-pop 0.8s cubic-bezier(.57,1.53,.55,-0.58) 0.25s 1;
}
@keyframes cta-pop {
  0% { transform: scale(0.9); }
  55% { transform: scale(1.11); }
  100% { transform: scale(1); }
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(87,199,241,0.09);
  transform: translateY(-2px) scale(1.06);
}
.cta.secondary {
  background: var(--brand-yellow);
  color: var(--accent-dark);
  padding: 10px 22px;
  border-radius: 15px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 var(--shadow);
  margin-top: 11px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.08s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-orange);
  color: var(--white);
  box-shadow: 0 5px 16px 0 rgba(254,175,54,0.14);
  transform: scale(1.05);
}

.subheadline {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
  .main-nav a { font-size: 1rem; }
}
@media (max-width: 900px) {
  .cta.primary { margin-left: 0; }
}
@media (max-width: 768px) {
  .main-nav, .cta.primary {
    display: none !important;
  }
  header .container {
    flex-wrap: wrap;
    gap: 0;
  }
}

/* Hamburger toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-yellow);
  color: var(--primary);
  border-radius: 12px;
  font-size: 2rem;
  padding: 8px 18px 8px 14px;
  border: none;
  position: absolute;
  right: 19px;
  top: 20px;
  z-index: 120;
  box-shadow: 0 2px 12px 0 var(--shadow);
  transition: background 0.17s, color 0.2s, box-shadow 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-orange);
  color: var(--accent-dark);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* ----------------------------------
------ MOBILE SLIDE-IN MENU ---------
----------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.7,.03,.13,1.98);
  box-shadow: 0 4px 32px 0 var(--shadow);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-pink);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  padding: 4px 16px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-dark);
  color: var(--brand-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 28px 0 0 28px;
  gap: 16px;
  z-index: 5001;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
  padding: 12px 12px 12px 6px;
  border-radius: 14px;
  transition: background 0.18s, color 0.14s, transform 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-yellow);
  color: var(--accent-dark);
  transform: translateX(6px);
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* -----------------------
--- HERO/INTRO SECTIONS --
------------------------ */
main > section:first-of-type {
  background: linear-gradient(110deg, var(--brand-yellow) 5%, var(--secondary) 82%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 32px 0 var(--shadow);
  margin-bottom: 60px;
  padding-top: 60px;
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  main > section:first-of-type {
    padding-top: 34px;
    border-radius: 0 0 28px 28px;
  }
}

/* --------------------
--- FEATURED ITEMS ----
--------------------- */
.feature-grid, .advantages-list, .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 22px;
  margin-top: 10px;
  align-items: flex-start;
}
.feature-grid li, .advantages-list li {
  display: flex;
  align-items: center;
  gap: 17px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 1px 9px 0 var(--shadow);
  padding: 19px 23px 19px 13px;
  font-size: 1rem;
  color: var(--primary-dark);
  min-width: 240px;
  flex: 1 1 230px;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px #CCEBDD);
}
@media (max-width: 768px) {
  .feature-grid, .advantages-list, .features-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .advantages-list li {
    min-width: 0;
    padding: 12px 13px;
  }
}

.features-list li {
  background: var(--brand-blue);
  color: var(--accent-dark);
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 var(--shadow);
  font-size: 1rem;
  padding: 12px 13px;
  margin-bottom: 6px;
  align-items: flex-start;
}

/* ----------------------------------
-------- SERVICES / PRODUCTS --------
----------------------------------- */
.services-list, .product-list, .blog-list, .team-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-box, .product-card, .blog-teaser, .team-member, .team-founder {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px 0 var(--shadow);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
}
.service-box:hover, .product-card:hover, .blog-teaser:hover {
  box-shadow: 0 8px 24px 2px var(--shadow);
  transform: scale(1.04) translateY(-7px);
}
.price {
  color: var(--brand-pink);
  font-size: 1.27rem;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .services-list, .product-list, .blog-list, .team-overview {
    flex-direction: column;
    gap: 18px;
  }
  .service-box, .product-card, .blog-teaser, .team-member, .team-founder {
    min-width: 0;
    padding: 18px 14px 14px;
  }
}

/* -----------------------
--- BLOG CARD TEASERS ----
------------------------ */
.blog-teaser {
  border-left: 6px solid var(--brand-blue);
  padding-left: 24px;
  box-shadow: 0 3px 14px 3px rgba(87,199,241,0.09);
  background: linear-gradient(89deg, #F5FEFD 95%, #FFF36C 105%);
}

/* --------------
TESTIMONIALS
--------------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  flex: 1 1 280px;
  background: #fff;
  color: #223A33;
  border-left: 8px solid var(--brand-pink);
  min-width: 240px;
  transition: box-shadow 0.16s, transform 0.15s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 2px rgba(247,104,128,0.09);
  transform: scale(1.04) translateY(-5px);
}
.testimonial-card blockquote {
  margin: 0 0 11px 0;
  font-style: italic;
  color: #223A33;
  font-size: 1.05rem;
  font-family: 'Open Sans', sans-serif;
}
.testimonial-meta {
  color: #888;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    min-width: 0;
    border-left-width: 5px;
  }
}

/* --------------
---- FAQ ITEMS --
---------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.faq-item {
  background: var(--brand-blue);
  color: var(--accent-dark);
  padding: 18px 20px 14px 22px;
  border-radius: 16px;
  flex: 1 1 270px;
  box-shadow: 0 2px 12px 0 var(--shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.faq-item:hover {
  box-shadow: 0 4px 28px 2px rgba(87,199,241,0.15);
  transform: scale(1.04) translateY(-8px);
}
.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: 7px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-item p {
  font-size: 1rem;
  color: var(--accent-dark);
}
@media (max-width: 768px) {
  .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    min-width: 0;
    padding: 11px 12px 7px 14px;
  }
}

/* ---------------------
----- FOOTER -----------
---------------------- */
footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 40px 0 30px 0;
  margin-top: 70px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 16px 0 var(--shadow);
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.logo-footer img {
  height: 43px;
  width: auto;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.9;
  transition: opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  font-size: 1.02rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  footer .container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
}

/* --------------------------
--- BRAND, TYPO & BLOCKS ----
--------------------------- */
.brand-mission-vision, .brand-values {
  background: var(--brand-blue);
  border-radius: 18px;
  padding: 22px 16px;
  margin-top: 9px;
  margin-bottom: 9px;
  box-shadow: 0 2px 10px 0 var(--shadow);
}
.brand-mission-vision h2, .brand-values h2 {
  margin-bottom: 9px;
  color: var(--accent-dark);
}
.brand-mission-vision ul, .brand-values ul {
  padding-left: 18px;
  margin-top: 7px;
}
.brand-mission-vision li, .brand-values li {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
  position: relative;
  padding-left: 18px;
}
.brand-mission-vision li:before, .brand-values li:before {
  content: "☀";
  position: absolute;
  left: 0;
  color: var(--brand-yellow);
  font-size: 1rem;
}
.terms-text, .policy-text, .cookies-policy-text, .thank-you-message {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 var(--shadow);
  padding: 20px 14px;
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 18px;
}

/* Map placeholder*/
.map-placeholder {
  background: var(--brand-yellow);
  border-radius: 16px;
  color: var(--accent-dark);
  font-size: 0.97rem;
  margin-bottom: 16px;
  padding: 15px 18px;
  box-shadow: 0 2px 10px 0 var(--shadow);
}

/* --- Cards/Teams --- */
.team-founder, .team-member {
  background: var(--brand-blue);
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 var(--shadow);
  padding: 18px 14px 17px;
  color: var(--accent-dark);
  margin-bottom: 20px;
  flex: 1 1 220px;
}
.team-founder h3, .team-member h3 {
  color: var(--brand-pink);
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  .team-founder, .team-member {
    min-width: 0;
  }
}

/* --- Newsletter & Contact --- */
.contact-details, .contact-info {
  background: #fff;
  color: var(--primary-dark);
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 var(--shadow);
  padding: 15px 11px;
  margin-bottom: 14px;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* --------------------------
-- PLAYFUL DYNAMIC EFFECTS --
--------------------------- */
[class^="cta "]:active, .cta:active {
  transform: scale(0.98);
}
.cta:focus {
  outline: 2px dashed var(--brand-blue);
}

.card, .testimonial-card, .service-box, .product-card {
  transition: transform 0.17s cubic-bezier(.7,0,1,1.18), box-shadow 0.22s cubic-bezier(.65,.04,.3,.92);
}
.card:hover, .service-box:hover, .product-card:hover:not(:active) {
  transform: translateY(-5px) scale(1.035) rotate(-1.5deg);
  box-shadow: 0 12px 40px 0 rgba(70,202,163,0.09);
}

/* playful shadows */
.card::before, .service-box::before, .product-card::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -10px;
  width: 35%;
  height: 22px;
  background: var(--brand-yellow);
  border-radius: 12px 12px 28px 28px;
  opacity: 0.2;
  filter: blur(6px);
  z-index: 0;
}

/* Little floating effect on illustrations */
.feature-grid img, .services-list .service-box:hover, .product-card:hover {
  animation: playful-float 2.4s ease-in-out infinite alternate;
}
@keyframes playful-float {
  from { transform: translateY(-2px) rotate(-2deg); }
  to { transform: translateY(6px) rotate(2deg); }
}

/* --- BUBBLE DECOS --- */
.section {
  position: relative;
  overflow: visible;
}
.section::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -34px;
  width: 56px;
  height: 56px;
  background: var(--brand-blue);
  border-radius: 50%;
  opacity: 0.11;
  z-index: 0;
  animation: playful-bubble 7s infinite alternate cubic-bezier(.5,-0.43,.51,1.29);
}
@keyframes playful-bubble {
  0% { top:24px; right:-34px; }
  40% { top: 12px; right: -16px; }
  100% { top: 36px; right: -22px; }
}
@media (max-width:768px) {
  .section::after { display: none; }
}

/* ---------------
-- ANIMATIONS ---
---------------- */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.75s ease-in forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------------
--- RESPONSIVE ---
---------------- */
@media (max-width: 900px) {
  html { font-size: 15px; }
}
@media (max-width: 640px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .section, main > section:first-of-type {
    border-radius: 16px;
  }
}

/* -----------------------------
COOKIE CONSENT BANNER & MODAL
----------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #F6FBF9;
  color: var(--primary-dark);
  box-shadow: 0 -2px 18px 0 rgba(38,137,106,0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  z-index: 9200;
  padding: 18px 16px 16px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  animation: fadeInBanner 0.45s cubic-bezier(.66,0,.94,.8);
}
@keyframes fadeInBanner {
  0% { opacity: 0; transform: translateY(90%); }
  85% { opacity: 1; transform: translateY(-3%); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  flex: 3 1 260px;
  min-width: 0;
  padding-bottom: 12px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  flex: 2 1 200px;
  min-width: 0;
}
.cookie-btn {
  padding: 11px 21px;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.17s, color 0.18s, box-shadow 0.15s, transform 0.08s;
  box-shadow: 0 1px 11px 0 var(--shadow);
  border: none;
  margin-right: 2px;
}
.cookie-accept {
  background: var(--primary);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}
.cookie-reject {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--accent-dark);
  color: var(--brand-yellow);
  transform: scale(1.05);
}
.cookie-settings {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--brand-blue);
  color: var(--accent-dark);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 6px 12px 12px;
    gap: 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  background: rgba(38,137,106,0.21);
  position: fixed;
  z-index: 9350;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.4s;
}
.cookie-modal {
  background: #fff;
  padding: 32px 24px 22px;
  border-radius: 28px;
  box-shadow: 0 8px 64px 0 rgba(38,137,106,0.17);
  min-width: 290px;
  max-width: 380px;
  width: 92vw;
  color: var(--primary-dark);
  position: relative;
  z-index: 9400;
  font-size: 1.02rem;
  display: flex; flex-direction: column;
  gap: 14px;
  animation: modalDrop 0.6s cubic-bezier(.77,.09,.23,1.13);
}
@keyframes modalDrop {
  0% { opacity: 0; transform: translateY(-30px) scale(0.97); }
  50% { opacity: 1; transform: translateY(10px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-modal .modal-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.cookie-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 3px;
}
.cookie-row label {
  font-size: 1rem;
  color: var(--accent-dark);
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  position: relative;
  background: var(--brand-blue);
  border-radius: 13px;
  outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--primary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 var(--shadow);
  transition: transform 0.22s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 21px;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 11px;
  border: none;
  font-size: 1.25rem;
  padding: 2px 9px;
  cursor: pointer;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--accent-dark);
  color: var(--brand-yellow);
}

/* Essential cookies (disabled) row styling */
.cookie-row.essential label {
  color: #bbb;
  font-weight: bold;
}
.cookie-toggle[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ---------------
SCROLLBAR STYLING
---------------- */
::-webkit-scrollbar {
  width: 12px;
  background: #e6faf3;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-blue);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-yellow);
}

/* --- Placeholder for empty content states --- */
.empty-state {
  background: #FFFFFF;
  border: 2px dashed var(--brand-blue);
  border-radius: 16px;
  color: var(--accent-dark);
  text-align: center;
  font-size: 1rem;
  padding: 38px 22px;
  box-shadow: 0 1px 10px 0 var(--shadow);
  margin: 30px 0;
}

/* Ensure enough margin between cards/sections globally */
.card, .testimonial-card, .service-box, .product-card, .faq-item, .team-member, .team-founder {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
}
.card-container, .content-grid, .testimonials-list, .services-list, .product-list, .blog-list, .team-overview {
  gap: 24px;
}

/* Utility classes for playful font */
.playful-font {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 900;
  font-style: italic !important;
  letter-spacing: 0.035em;
}

/* Hide visually on demand */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}