/* =========================================
   CSS RESET & NORMALIZE (Modern)
========================================= */
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,
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F3E5;
  color: #246176;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #246176;
  text-decoration: none;
  transition: color .2s;
}

a:hover, a:focus {
  color: #248476;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================
   UNIVERSAL VARS => playful_dynamic colors
========================================= */
:root {
  --primary: #246176;
  --secondary: #B8D8C7;
  --accent: #F7F3E5;
  --brand-yellow: #FFD959;
  --brand-pink: #F96784;
  --brand-mint: #46D8B5;
  --brand-purple: #b68efc;
  --brand-orange: #FFA425;
  --white: #fff;
  --black: #222;
  --shadow-small: 0 4px 12px rgba(36, 97, 118, 0.08);
  --shadow-card: 0 8px 24px rgba(36, 97, 118, 0.10);
  --shadow-soft: 0 1.5px 6px 0 rgba(36, 97, 118, 0.09);
  --radius-base: 16px;
  --radius-pill: 99em;
  --transition: all .23s cubic-bezier(.51, 1, .59, 1.16);
}

/* Import playful, fun fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* =========================================
   TYPOGRAPHY (Fun, Playful)
========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.5px;
  color: #246176;
  line-height: 1.16;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  color: var(--brand-yellow);
  text-shadow: 0 2px 12px var(--brand-pink, #F96784, 0.04);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--brand-mint);
  text-shadow: 0 2px 8px var(--brand-purple, #b68efc, 0.08);
}
h3 {
  font-size: 1.4rem;
  color: var(--brand-orange);
}
p, li, label, input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #246176;
}
p {
  margin-bottom: 12px;
}
.hero-subline {
  font-size: 1.2rem;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* Link style (fun micro-animation underline) */
a {
  position: relative;
  z-index: 1;
}
a:not(.cta-primary):not(.cta-secondary)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 2px;
  background: var(--brand-mint);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: scaleX(0.6);
  z-index: 2;
}
a:not(.cta-primary):not(.cta-secondary):hover::after,
a:not(.cta-primary):not(.cta-secondary):focus::after {
  opacity: 1;
  transform: scaleX(1);
}

/* =========================================
   LAYOUT CONTAINER STYLES, FLEXBOX ONLY
========================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
  border-radius: var(--radius-base);
}
/* Utility spacing */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-48 { margin-bottom: 48px !important; }

/* =========================================
   FLEXBOX GROUPS, GRIDS, CARDS
========================================= */
/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  transition: box-shadow .16s, transform .18s;
  min-width: 240px;
  max-width: 340px;
  flex: 1 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.card:hover {
  transform: translateY(-6px) scale(1.025) rotate(-2deg);
  box-shadow: 0 12px 38px rgba(36, 97, 118, 0.14);
}

.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;
  padding: 20px;
  border-radius: var(--radius-base);
  background: var(--white);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  border-left: 8px solid var(--brand-yellow);
  position: relative;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 48px rgba(249,103,132, 0.12);
}
.testimonial-card blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 6px 0;
  quotes: '“' '”';
}
.testimonial-card footer {
  font-family: 'Open Sans', sans-serif;
  font-size: .97rem;
  color: #555;
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grid (for .features ul.feature-grid) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid li {
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-base);
  background: var(--white);
  padding: 30px 22px 22px 22px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform .18s, box-shadow .18s;
  min-width: 220px;
  max-width: 300px;
}
.feature-grid li img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px #b8d8c7c0);
}
.feature-grid li:hover {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 12px 36px rgba(182, 142, 252, 0.13);
  background-color: #FFFAEE;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.value-list li {
  background: var(--white);
  box-shadow: var(--shadow-small);
  border-radius: var(--radius-base);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 280px;
  margin-bottom: 20px;
  text-align: center;
  transition: transform .18s, box-shadow .18s;
}
.value-list li img {
  width: 44px;
  margin-bottom: 10px;
}
.value-list li:hover {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 8px 32px rgba(70, 216, 181, 0.08);
}

.recent-articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.recent-articles-grid article {
  background: var(--white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  padding: 20px 18px 18px 18px;
  flex: 1 1 260px;
  max-width: 330px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .16s;
}
.recent-articles-grid article h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--brand-pink);
}
.recent-articles-grid article a {
  color: var(--brand-mint);
  margin-top: 3px;
  font-weight: 700;
}
.recent-articles-grid article:hover {
  box-shadow: 0 10px 34px rgba(36,97,118, .10);
  transform: translateY(-4px) scale(1.02);
}

/* =========================================
   HERO, CTA, and MAJOR SECTION STYLES
========================================= */
.hero {
  background: linear-gradient(90deg, var(--brand-mint) 0%, var(--brand-yellow) 100%);
  border-radius: 0 0 var(--radius-base) var(--radius-base);
  min-height: 300px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  z-index: 2;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 6px 18px #b8d8c760;
}
.hero-subline {
  margin-bottom: 10px;
}

.cta {
  background: var(--brand-mint);
  border-radius: var(--radius-base);
  margin-bottom: 60px;
  padding: 36px 18px 32px 18px;
}
.cta h2 {
  color: #fff;
  text-shadow: 0 2px 12px #b68efc60;
  font-size: 2rem;
}
.cta p {
  color: #fff;
}

.cta-primary, .cta-secondary {
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.07rem;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  margin-top: 8px;
  text-align: center;
  min-width: 160px;
}
.cta-primary {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 10px 38px #F9678416;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 16px 40px #FFD95944;
}
.cta-secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--brand-yellow);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 10px 38px #FFD95916;
}

/* ---------------------------------------
   SPECIAL SECTIONS
--------------------------------------- */
.services,
.services-detail,
.benefits,
.benefits-meditation {
  background: var(--accent);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-small);
  margin-bottom: 60px;
  padding: 36px 18px 32px 18px;
}

.service-list,
.service-detailed-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 12px;
}
.service-list li, .service-detailed-list li {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  padding: 18px 15px 15px 15px;
  margin-bottom: 10px;
}
.service-detailed-list a.cta-secondary {
  margin-top: 10px;
}

.benefits ul, .benefits-meditation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 8px;
}
.benefits ul li,
.benefits-meditation ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-small);
  padding: 14px 10px 14px 10px;
  min-width: 180px;
  margin-bottom: 16px;
}
.benefits ul li img,
.benefits-meditation ul li img {
  width: 32px;
  height: 32px;
}

.value-list li h3,
.feature-grid li h3 {
  margin-bottom: 4px;
  font-size: 1.13rem;
}

/* =====================
   FAQ ACCORDION
====================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-small);
  padding: 18px 15px;
  transition: box-shadow .18s, transform .13s;
}
.faq-item h3 {
  color: var(--brand-orange);
  margin-bottom: 6px;
  font-size: 1.09rem;
  font-weight: 700;
}
.faq-item p {
  font-size: .97rem;
}
.faq-item:hover {
  box-shadow: 0 5px 28px #FFD95922;
  transform: scale(1.02) rotate(-2deg);
}

/* =========================================
   NAVIGATION: Desktop & Mobile
========================================= */
header {
  background: var(--white);
  box-shadow: 0 2px 14px #B8D8C723;
  position: sticky;
  top: 0;
  z-index: 8000;
  min-height: 62px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
  padding: 10px 0;
  font-size: 1.05rem;
}
header nav a {
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  transition: background .16s, color .16s;
  font-weight: 700;
}
header nav a:not(.cta-primary):hover {
  background: var(--brand-mint);
  color: #fff;
}
header nav a.cta-primary {
  background: var(--brand-yellow);
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 1.2px;
  transition: var(--transition);
  margin-left: 15px;
  box-shadow: 0 2px 12px #FFD95922;
  border-radius: var(--radius-pill);
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 5px 20px #F9678410;
  transform: scale(1.07) rotate(-4deg);
}
header nav img {
  height: 38px;
  margin-right: 10px;
  margin-left: 4px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ===========================
   MOBILE NAVIGATION MENU
=========================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(130deg, var(--brand-pink) 0% 30%, var(--brand-yellow) 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.62,1.51,.63,1.29);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 20px 22px 20px;
  will-change: transform;
  box-shadow: 0 2px 28px #F967846a;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  opacity: .85;
  margin-bottom: 22px;
  transition: opacity .18s;
  cursor: pointer;
  z-index: 10100;
}
.mobile-menu-close:hover {
  opacity: 1;
  color: var(--brand-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  padding: 18px 30px;
  font-size: 1.18rem;
  color: #fff;
  font-weight: 800;
  border-radius: var(--radius-pill);
  transition: background .18s, color .15s, transform .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-yellow);
  color: var(--primary);
  transform: scale(1.05) rotate(-2deg);
}

@media (max-width: 1020px) {
  header nav { gap: 7px; }
  .feature-grid, .value-list, .benefits ul, .benefits-meditation ul, .recent-articles-grid {
    gap: 14px;
  }
}

@media (max-width: 981px) {
  .feature-grid li, .value-list li, .recent-articles-grid article, .benefits ul li, .benefits-meditation ul li {
    min-width: 140px;
    max-width: 96vw;
  }
  .feature-grid, .value-list, .recent-articles-grid, .benefits ul, .benefits-meditation ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 850px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    background: var(--brand-pink);
    color: #fff;
    border: none;
    font-size: 2.18rem;
    line-height: 1;
    width: 44px; height: 44px;
    border-radius: var(--radius-pill);
    margin: 9px 8px 0 0;
    box-shadow: 0 2px 10px #f9678430;
    position: absolute; top: 8px; right: 10px;
    z-index: 9000;
    transition: background .18s, color .2s, box-shadow .18s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    outline: 2px solid var(--brand-yellow);
    color: var(--brand-yellow);
  }
}

@media (max-width: 768px) {
  h1 {font-size: 2.1rem;}
  h2 {font-size: 1.33rem;}
  .container {max-width: 98vw;}
  .section, .services, .services-detail, .benefits, .benefits-meditation, .cta {
    padding: 22px 5px 18px 5px;
  }
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 12px; }
  .card-container { flex-direction: column; gap: 14px; }
  .feature-grid { flex-direction: column; gap: 12px; }
  .value-list { flex-direction: column; gap: 12px; }
  .testimonial-card { flex-direction: column; gap: 8px; align-items: flex-start; }
  .recent-articles-grid { flex-direction: column; gap: 10px; }
  .faq-accordion { gap: 10px; }
}

@media (max-width: 560px) {
  .container { padding: 0 2vw; }
  .footer-brand p, .footer-brand a { font-size: .95rem; }
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--secondary);
  color: var(--primary);
  margin-top: 80px;
  padding: 28px 0 0 0;
  border-radius: var(--radius-base) var(--radius-base) 0 0;
  box-shadow: 0 -2px 24px #b8d8c77d;
}
footer nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--primary);
  padding: 7px 14px;
  transition: background .14s, color .17s;
  border-radius: var(--radius-pill);
}
footer nav a:hover {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  margin-top: 6px;
  margin-bottom: 18px;
}
.footer-brand img {
  width: 40px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 5px #24617620);
}
.footer-brand a {
  color: var(--brand-pink);
}
.footer-brand a:hover {
  color: var(--brand-yellow);
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--brand-yellow);
  color: var(--primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  box-shadow: 0 -6px 40px #FFD95936;
  padding: 22px 14px;
  z-index: 12000;
  font-size: 1.05rem;
  animation: slideInBanner 0.7s cubic-bezier(.52,1.48,.48,.98);
}
@keyframes slideInBanner {
  0% {transform: translateY(100%); opacity: .3;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner button {
  margin-left: 4px;
  border-radius: var(--radius-pill);
  background: var(--brand-pink);
  color: #fff;
  border: none;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 24px;
  cursor: pointer;
  transition: background .18s, color .14s, transform .18s;
  box-shadow: 0 2.5px 10px #F9678445;
}
.cookie-banner button:hover {
  background: var(--primary);
  color: var(--brand-yellow);
  transform: scale(1.06) rotate(-3deg);
}
.cookie-banner .cookie-settings {
  background: var(--primary);
  color: #fff;
  margin-left: 5px;
}
.cookie-banner .cookie-settings:hover {
  background: var(--brand-purple);
  color: var(--primary);
}

.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,97,118,0.07);
  z-index: 13000;
  display: none;
  align-items: center; justify-content: center;
}
.cookie-modal-bg.open {
  display: flex;
}
.cookie-modal {
  background: var(--accent);
  border-radius: var(--radius-base);
  box-shadow: 0 7px 44px #24617621, 0 1.5px 9px #24617612;
  min-width: 320px;
  max-width: 95vw;
  min-height: 240px;
  padding: 32px 22px 24px 22px;
  position: relative;
  z-index: 999999;
  animation: popModal .21s cubic-bezier(.45,1.63,.57,1.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@keyframes popModal {
  0% {opacity: 0; transform: scale(.86) translateY(40px);}
  100% {opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--primary);
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--brand-pink);
  width: 20px; height: 20px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
}
.cookie-category.essential label {
  opacity: .7;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-modal .cookie-modal-actions button:hover {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 8px; right: 12px;
  background: transparent;
  border: none;
  font-size: 2rem;
  opacity: .7;
  transition: opacity .17s;
  color: var(--primary);
}
.cookie-modal .cookie-modal-close:hover {
  opacity: 1;
  color: var(--brand-pink);
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 4vw 12px 4vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    font-size: .99rem;
    align-items: flex-start;
  }
}

/* =========================================
   SEARCH & NEWSLETTER (BLOG)
========================================= */
.search-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  margin-top: 12px;
}
.search-bar input[type='search'] {
  border: 2px solid var(--brand-mint);
  border-radius: var(--radius-pill);
  font-size: 1.08rem;
  padding: 10px 24px;
  width: 230px;
  transition: border .16s, box-shadow .18s;
  outline: none;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1.5px 8px #B8D8C720;
}
.search-bar input[type='search']:focus {
  border-color: var(--brand-pink);
  box-shadow: 0 3px 16px #F9678430;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.blog-categories a {
  background: var(--brand-purple);
  color: #fff;
  padding: 7px 19px;
  border-radius: var(--radius-pill);
  font-size: .98rem;
  font-weight: 700;
  transition: background .15s, color .13s, transform .18s;
  margin-bottom: 8px;
}
.blog-categories a:hover {
  background: var(--brand-yellow);
  color: var(--primary);
  transform: scale(1.07) rotate(-3deg);
}

.newsletter {
  background: linear-gradient(90deg, var(--brand-yellow) 40%, var(--brand-mint) 100%);
  border-radius: var(--radius-base);
  padding: 26px 14px 26px 18px;
  margin-bottom: 54px;
}
.newsletter h2 {
  color: #fff;
}
.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 8px;
}
.newsletter-benefits ul {
  margin-bottom: 5px;
}

/* =========================================
   MISC: MAP, THANK YOU, PLACEHOLDER
========================================= */
.map-placeholder {
  background: repeating-linear-gradient(-45deg, #b8d8c7 0 8px, #fff 8px 16px);
  border-radius: var(--radius-base);
  padding: 38px 8px;
  color: var(--primary);
  opacity: .7;
  margin-bottom: 22px;
  text-align: center;
  font-size: 1.05rem;
}

.thank-you, .datenschutz, .gdpr-content, .cookie-policy, .terms, .about, .values, .contact, .cta-contact, .workshops, .faq, .meditationen {
  min-width: 100%;
}
.text-section {
  margin-bottom: 20px;
}
.contact-details {
  margin-bottom: 18px;
}

/* =========================================
   PLAYFUL DYNAMIC ACCENTS & ANIMATIONS
========================================= */
/* Fun floating accent circles (decorative only) */
@keyframes floaty {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-12px) scale(1.05) rotate(4deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}
.feature-grid li img, .value-list li img, .benefits ul li img, .benefits-meditation ul li img {
  animation: floaty 3.6s ease-in-out infinite;
  animation-delay: .3s;
}

.card, .feature-grid li, .value-list li, .recent-articles-grid article, .testimonial-card {
  position: relative;
  overflow: hidden;
}
.card::before, .feature-grid li::before, .value-list li::before, .recent-articles-grid article::before, .testimonial-card::before {
  content: '';
  position: absolute;
  left: -40px; top: -30px;
  width: 64px; height: 64px;
  background: var(--brand-pink);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
  animation: floaty 9s .3s infinite alternate ease-in-out;
  pointer-events: none;
}
.card::after, .feature-grid li::after, .value-list li::after, .recent-articles-grid article::after, .testimonial-card::after {
  content: '';
  position: absolute;
  right: -28px; bottom: -22px;
  width: 32px; height: 32px;
  background: var(--brand-yellow);
  border-radius: 50%;
  opacity: 0.07;
  z-index: 0;
  animation: floaty 7s 1.3s infinite alternate-reverse ease-in-out;
  pointer-events: none;
}

/* Transitions */
.card, .feature-grid li, .value-list li, .recent-articles-grid article, .testimonial-card {
  transition: box-shadow .13s, transform .16s, background .16s;
}

/* =========================================
   SCROLLBAR for playful touch
========================================= */
html::-webkit-scrollbar {
  width: 12px;
}
html::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--brand-mint), var(--brand-yellow));
  border-radius: 8px;
}
html::-webkit-scrollbar-track {
  background: #fff;
}

/* =========================================
   PRINT OVERRIDES - (Hide navigation, collapse accents)
========================================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-bg { display: none !important; }
  main { padding: 0; }
  .section, .card, .feature-grid li, .testimonial-card { box-shadow: none !important; border: none !important; }
}
