/* CSS RESET & NORMALIZE */
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;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #FEFAF7;
  color: #234157;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  flex: 1 0 auto;
}
img {
  max-width: 100%;
  display: block;
}
strong {
  font-weight: 700;
}
a {
  color: #18487A;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #6FC7AF;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500,600,700&display=swap');

/* BRAND VARIABLES */
:root {
  --color-primary: #18487A;
  --color-secondary: #F3F7FB;
  --color-accent: #6FC7AF;
  --color-warm-bg: #FEFAF7;
  --color-warm-orange: #FFCFA3;
  --color-warm-light: #FFF6EA;
  --color-text: #234157;
  --color-muted: #938d8b;
  --color-card-bg: #FFFFFF;
  --color-shadow: rgba(24, 72, 122, 0.09);
  --color-shadow-strong: rgba(24, 72, 122, 0.16);
  --radius: 18px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/***************************************************
TYPOGRAPHY
***************************************************/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 13px;
}
p, li, dd {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}

/***************************************************
HEADER & NAVIGATION
***************************************************/
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 2px 16px 0 var(--color-shadow);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  position: relative;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
header a img {
  max-height: 48px;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  border-radius: 8px;
  padding: 7px 13px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--color-warm-orange);
  color: #18487A;
}
.cta-button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 14px 0 var(--color-shadow-strong);
  transition: background 0.21s, box-shadow 0.23s, transform 0.12s;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 0;
  margin-bottom: 0;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #429680;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px 0 var(--color-shadow-strong);
}

/***************************************************
MOBILE NAVIGATION (BURGER MENU)
***************************************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 18px;
  z-index: 2100;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--color-shadow);
  transition: background 0.18s, box-shadow 0.2s;
  outline: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #429680;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF6EA;
  box-shadow: 0 8px 32px 0 var(--color-shadow-strong);
  z-index: 2500;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
  transform: translateX(-100vw);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-warm-orange);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 18px 18px 0 0;
  border: none;
  font-size: 1.8rem;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.2s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 16px;
  margin: 42px 0 0 0;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.2rem;
  padding: 15px 18px;
  border-radius: 10px;
  transition: background 0.18s, color 0.15s;
  width: 80%;
  text-align: center;
  margin: 0 auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 980px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/***************************************************
FOOTER
***************************************************/
footer {
  background: var(--color-secondary);
  padding: 48px 0 20px 0;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: 0 -2px 16px 0 var(--color-shadow);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-menu a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s;
  padding: 3px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-accent);
}
.contact-info {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}
footer .social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
footer .social-links a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 6px var(--color-shadow);
  transition: box-shadow 0.22s, background 0.18s;
}
footer .social-links a:hover img {
  box-shadow: 0 4px 12px var(--color-shadow-strong);
  background: var(--color-accent);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/***************************************************
GENERAL SECTIONS & CARDS
***************************************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 0 var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 30px 22px 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.14s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/***************************************************
HOME HERO + SPECIAL HERO BANNER
***************************************************/
.hero {
  background: linear-gradient(90deg, #FFF6EA 75%, #F3F7FB 100%);
  padding-bottom: 38px;
  padding-top: 54px;
  box-shadow: 0 8px 36px 0 var(--color-shadow-strong);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.hero .container {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 18px;
  background: transparent;
}
.hero h1 {
  color: var(--color-primary);
  margin-bottom: 10px;
}
.hero p {
  color: var(--color-text);
  margin-bottom: 10px;
  font-size: 1.18rem;
  max-width: 600px;
}
@media (max-width:700px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 18px;
  }
  .hero .content-wrapper {
    padding: 6px;
    gap: 11px;
  }
  .hero h1 {
    font-size: 1.34rem;
  }
}

/***************************************************
FEATURES SECTION (with icon list)
***************************************************/
.features {
  background: var(--color-warm-light);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  align-items: center;
}
.features h2 {
  text-align: center;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.features ul li {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 28px 24px 24px 24px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.13s;
  margin-bottom: 20px;
}
.features ul li:hover, .features ul li:focus-within {
  box-shadow: 0 6px 28px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.025);
}
.features ul li img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.features ul li strong {
  color: var(--color-primary);
  font-size: 1.05rem;
}
.features ul li p {
  font-size: 1rem;
  color: var(--color-text);
}

/***************************************************
SERVICES OVERVIEW
***************************************************/
.services-overview, .services {
  background: var(--color-card-bg);
  border-radius: var(--radius);
}
.services-overview ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  margin-top: 14px;
}
.services-overview ul li, .services ul li {
  background: var(--color-warm-light);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px var(--color-shadow);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 295px;
  padding: 22px 16px 20px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.services-overview ul li:hover, .services ul li:hover {
  box-shadow: 0 6px 20px var(--color-shadow-strong);
  transform: scale(1.03);
}
.services-overview ul li strong, .services ul li strong {
  font-size: 1.09rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.services-overview ul li span, .services ul li span {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
.services-overview ul li p, .services ul li span+p, .services-overview ul li span+p {
  color: var(--color-text);
}

/***************************************************
METHODS / SIMPLE STEPS
***************************************************/
.methods ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
}
.methods ul li {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px var(--color-shadow);
  flex: 1 1 210px;
  min-width: 160px;
  max-width: 300px;
  padding: 18px 16px;
  margin-bottom: 20px;
  font-size: 0.99rem;
  color: var(--color-text);
}
.methods ul li strong {
  color: var(--color-primary);
  font-weight: 700;
}

/***************************************************
TESTIMONIALS
***************************************************/
.testimonials {
  background: var(--color-warm-light);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 0 var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #234157;
  padding: 20px 28px 18px 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow 0.21s, transform 0.14s;
}
.testimonial-card p {
  font-size: 1.07rem;
  margin-bottom: 0;
  color: #2C4268;
}
.testimonial-card div {
  font-size: 1rem;
  color: var(--color-muted);
}
.testimonial-card strong {
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px var(--color-shadow-strong);
  transform: scale(1.025) translateY(-2px);
  z-index: 2;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 24px 6px;
  }
  .testimonial-card {
    padding: 14px 10px 12px 10px;
    font-size: 1.01rem;
  }
}

/***************************************************
NEWSLETTER
***************************************************/
.newsletter {
  background: var(--color-warm-orange);
  border-radius: var(--radius);
  padding: 40px 20px;
  box-shadow: 0 3px 14px var(--color-shadow);
  margin-bottom: 60px;
}
.newsletter h2 {
  color: var(--color-primary);
  text-align: center;
}
.newsletter .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.newsletter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: var(--color-primary);
}
.newsletter ul li {
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 6px 12px;
}
.newsletter a.cta-button {
  margin-top: 12px;
  background: var(--color-primary);
  color: #fff;
}
.newsletter a.cta-button:hover {
  background: var(--color-accent);
}

/***************************************************
ABOUT & TEAM & VALUES
***************************************************/
.about, .team, .values, .process, .faq, .legal, .location, .hours, .download, .registration, .ebook-details, .how-it-works, .meditation-packages, .benefits, .thank-you {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px 0 var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about .content-wrapper,
.team .content-wrapper,
.values .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team ul, .values ul, .faq dl, .hours ul, .download, .ebook-details ul, .meditation-packages ul, .how-it-works ul, .benefits ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.team ul li, .values ul li {
  background: var(--color-secondary);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--color-primary);
}

/***************************************************
WORKSHOPS AND MEDITATIONS
***************************************************/
.workshop-list ul, .meditation-packages ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.workshop-list ul li, .meditation-packages ul li {
  background: var(--color-warm-light);
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 18px 15px;
  color: var(--color-text);
  font-size: 1.03rem;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.workshop-list ul li strong, .meditation-packages ul li strong {
  color: var(--color-primary);
}
.workshop-list ul li div {
  color: var(--color-accent);
  font-weight: 500;
}

/***************************************************
DOWNLOAD SECTION
***************************************************/
.download {
  background: var(--color-warm-orange);
  border-radius: var(--radius);
  box-shadow: 0 3px 14px var(--color-shadow);
  color: var(--color-primary);
}
.download h2 {
  color: var(--color-primary);
}
.download p {
  color: var(--color-primary);
}
.download a.cta-button {
  background: var(--color-primary);
  color: #fff;
}
.download a.cta-button:hover {
  background: var(--color-accent);
}

/***************************************************
RESPONSIVE LAYOUT BREAKPOINTS
***************************************************/
@media (max-width: 700px) {
  .features ul, .services-overview ul, .services ul, .methods ul {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card,
  .newsletter,
  .section,
  .about, .team, .values, .process, .faq, .legal, .location, .hours, .download, .ebook-details,
  .meditation-packages, .how-it-works, .benefits, .registration, .thank-you {
    padding: 18px 6px;
    margin-bottom: 28px;
  }
  .footer-menu, .contact-info, .social-links {
    align-items: flex-start;
  }
}

/***************************************************
DELIMITERS AND DIVIDERS
***************************************************/
hr {
  border: 0;
  border-bottom: 1px solid var(--color-secondary);
  margin: 30px 0;
  width: 100%;
}

/***************************************************
FAQ (DL/DT/DD)
***************************************************/
.faq dl {
  width: 100%;
}
.faq dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.faq dd {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-left: 0;
}

/***************************************************
FORM & BUTTONS (if used)
***************************************************/
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #cfd6e3;
  padding: 9px 12px;
  background: #fff;
  box-shadow: 0 1px 4px var(--color-shadow);
  margin-bottom: 16px;
  outline: none;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-accent);
}
button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 11px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.16s, transform 0.14s;
  cursor: pointer;
}
button:hover, button:focus {
  background: var(--color-accent);
  transform: scale(1.02);
}

/***************************************************
COOKIE CONSENT BANNER
***************************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-warm-orange);
  color: var(--color-primary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -3px 18px var(--color-shadow-strong);
  padding: 22px 7vw 22px 7vw;
  z-index: 2999;
  gap: 38px;
  font-size: 1rem;
  animation: cookie-banner-slide-in 0.42s cubic-bezier(.64,.06,.07,.91);
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 7vw 18px 7vw;
    gap: 18px;
  }
}
@keyframes cookie-banner-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 18px;
  margin-left: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.17s, color 0.12s;
}
.cookie-banner button.cookie-settings {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #429680;
  color: #fff;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.7px solid var(--color-primary);
}
.cookie-banner button.cookie-reject:hover,
.cookie-banner button.cookie-reject:focus {
  background: var(--color-card-bg);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/***************************************************
COOKIE PREFERENCES MODAL
***************************************************/
.cookie-modal {
  position: fixed;
  z-index: 3100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 72, 122, 0.22);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fadein 0.35s cubic-bezier(.64,.06,.07,.91);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 4px 44px var(--color-shadow-strong);
  padding: 34px 24px 28px 24px;
  max-width: 410px;
  min-width: 282px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-content h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 21px;
  right: 38px;
  background: var(--color-warm-orange);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 1px 7px var(--color-shadow);
  z-index: 3120;
  transition: background 0.17s, color 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category-toggle label {
  font-size: 1.01rem;
  color: var(--color-primary);
}
.cookie-category-toggle input[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: var(--color-accent);
}
.cookie-category-essential label {
  font-weight: 600;
  color: #b5ad24;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding-top: 10px;
}
.cookie-modal-actions button {
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9px;
  padding: 10px 21px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  transition: background 0.17s, color 0.12s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--color-accent);
  color: #fff;
}

/***************************************************
OVERRIDE SHADOWS FOR "warm_friendly" EFFECT
***************************************************/
.section, .card, .features ul li, .testimonial-card, .newsletter, .about, .team, .values, .download,
 .services-overview ul li, .services ul li, .methods ul li, .newsletter ul li,
 .workshop-list ul li, .meditation-packages ul li {
  box-shadow: 0 3px 14px 0 var(--color-shadow);
}

/***************************************************
UTILITIES: MARGINS & FLEX SPACING
***************************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***************************************************
ACCESSIBLE FOCUS (for accessibility)
***************************************************/
:focus-visible {
  outline: 2px dashed var(--color-primary);
  outline-offset: 2px;
}

/***************************************************
Z-INDEX MANAGEMENT FOR LAYERED COMPONENTS
***************************************************/
header, .cookie-banner, .cookie-modal {
  z-index: 3000 !important;
}

/***************************************************
THANK YOU PAGE
***************************************************/
.thank-you .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/***************************************************
MISC. STYLE IMPROVEMENTS
***************************************************/
address {
  font-style: normal;
  color: var(--color-text);
  margin-bottom: 12px;
}

/* END OF MAIN CSS */
