/* -----------------------------------------
   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, menu, 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, 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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #FAFCFF;
  color: #21304B;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img, picture {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}
button {
  cursor: pointer;
}

/* -----------------------------------------
   BRAND COLOR SYSTEM & VARIABLES
   ----------------------------------------- */
:root {
  --color-primary: #2C3251;
  --color-secondary: #69A2C5;
  --color-accent: #EDEDED;
  --color-dark: #222641;
  --color-light: #FAFCFF;
  --color-bright1: #FFE567;
  --color-bright2: #F7A8B8;
  --color-success: #47D899;
  --color-warning: #FFCC55;
  --color-error: #FF6B6B;
}

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

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  background: var(--color-light);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem;  }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.08rem; }
p, li, blockquote { font-size: 1rem;  line-height: 1.6; }

/* playful dynamic font accent */
.cta-section h2, .hero-section h1, .testimonial-rating, .cta-button, .cta-section p, .feature h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

blockquote {
  border-left: 6px solid var(--color-secondary);
  padding-left: 18px;
  font-style: italic;
  color: var(--color-dark);
}

ul, ol {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 18px;
}

/* -----------------------------------------
   LAYOUT & CONTAINER CLASSES (Flexbox only!)
   ----------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section, .about-section, .services-section, .workshops-section, .testimonials-section, .legal-section, .company-section, .contact-section, .success-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .feature-grid, .testimonial-list, .workshop-overview, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}

.card, .feature, .testimonial-card, .service-item, .workshop-item {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(105,162,197,0.11), 0 1.5px 6px rgba(44,50,81,0.045);
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 280px;
  transition: transform 0.18s cubic-bezier(.4,1.6,.3,1), box-shadow 0.18s;
}
.card:hover, .feature:hover, .testimonial-card:hover, .service-item:hover, .workshop-item:hover {
  transform: translateY(-8px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 36px rgba(105,162,197,0.18), 0 6px 20px rgba(44,50,81,0.10);
  z-index: 1;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44,50,81,0.08), 0 2px 6px rgba(105,162,197,0.08);
  padding: 24px 24px 20px 24px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .15s;
  color: #232946;
}

.testimonial-rating {
  font-size: 1.3rem;
  color: var(--color-bright2);
  font-weight: 900;
  margin-top: -8px;
  margin-bottom: 8px;
  letter-spacing: .11em;
}
.testimonial-author {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 600;
}

.feature-item, .before-after-section ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

/* Spacing for all card/section elements */
.section > *,
.about-section > *,
.services-section > *,
.workshops-section > *,
.testimonials-section > *,
.legal-section > *,
.company-section > *,
.contact-section > *,
.success-section > * {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    gap: 60px;
  }
  .feature-grid, .testimonial-list, .workshop-overview, .service-list {
    flex-direction: row;
    justify-content: flex-start;
  }
  .testimonial-card {
    min-width: 300px;
  }
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .feature-grid, .testimonial-list, .workshop-overview, .service-list, .benefit-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    padding: 0 8px;
  }
  .card, .feature, .testimonial-card, .service-item, .workshop-item {
    padding: 22px 12px;
    min-width: 0;
  }
}

/* -----------------------------------------
   PLAYFUL & DYNAMIC DESIGN ACCENTS
   ----------------------------------------- */
.feature img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px #69A2C599);
}
.feature {
  background: #fdf6fb;
  border: 2px dashed var(--color-secondary);
  outline: 3px solid #fff;
  outline-offset: -8px;
  box-shadow: 0 2px 8px #FFE56744;
}
.feature h3 {
  color: var(--color-bright2);
  font-size: 1.23rem;
  margin-bottom: 10px;
  letter-spacing: .035em;
}
/* Dynamic animated underline for h2 */
h2 {
  position: relative;
  z-index: 1;
  text-align: left;
  display: inline-block;
  margin-bottom: 18px;
}
h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 8px;
  bottom: -5px;
  width: 50px;
  height: 7px;
  background: var(--color-bright1);
  border-radius: 9px;
  opacity: 0.8;
  animation: underline-bounce 1.1s cubic-bezier(.49,1.5,.42,1.15) infinite alternate;
}
@keyframes underline-bounce {
  0%   { width: 0; left: 0px; }
  35%  { width: 53px; left: 8px; }
  80%  { width: 33px; left: 11px; }
  100% { width: 50px; left: 8px; }
}

.card, .feature, .testimonial-card, .service-item, .workshop-item {
  border-radius: 20px 32px 24px 18px;
  box-shadow: 0 4px 20px rgba(44, 50, 81, 0.15), 0 1.5px 6px rgba(233, 216, 131, 0.033);
}

/* Fun bubble-float effect for cta-buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-bright2));
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  border-radius: 30px;
  padding: 14px 36px 14px 28px;
  box-shadow: 0 7px 32px #FFE56733, 0 2.5px 10px #2C325127;
  margin-top: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  border: 0;
  letter-spacing: 0.03em;
  transition: background 0.23s, box-shadow 0.18s, transform 0.15s cubic-bezier(.42,2,.1,.79);
  position: relative;
  overflow: hidden;
}
.cta-button:after {
   content: '';
   display: block;
   position: absolute;
   right: 26px;
   top: 50%;
   width: 12px;
   height: 12px;
   background: var(--color-bright1);
   border-radius: 50%;
   transform: translateY(-60%) scale(.8);
   opacity: .36;
   pointer-events: none;
   animation: bubble-move 3s infinite linear;
}
@keyframes bubble-move {
  0%   { right: 26px; opacity:0.18; }
  50%  { right: 42px; opacity:.44; }
  80%  { right: 20px; opacity:.28; }
  100% { right: 26px; opacity:0.18; }
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--color-bright1), var(--color-secondary));
  color: var(--color-dark);
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 10px 40px var(--color-secondary), 0 3px 12px var(--color-bright1);
}
.cta-button:active {
  transform: scale(.94);
  filter: brightness(.96);
}

/* Section backgrounds */
.hero-section {
  background: linear-gradient(130deg, #F7A8B8 0 15%, #FFE567 100%);
  color: var(--color-primary);
  margin-bottom: 60px;
  padding: 58px 0 52px 0;
}
.hero-section h1 {
  color: var(--color-primary);
  text-shadow: 0 2px 12px #fff5, 0 1px 0 #FFE56733;
  margin-bottom: 24px;
  font-size: 2.25rem;
}
.hero-section p {
  max-width: 700px;
  font-size: 1.22rem;
  margin-bottom: 26px;
}

.cta-section {
  background: var(--color-accent);
  border-radius: 32px 32px 0 0;
  margin-bottom: 0;
  text-align: center;
}

.testimonials-section {
  background: #fff;
  border-top: 4px solid var(--color-bright2);
  border-bottom: 4px solid var(--color-bright1);
}

/* playful featured secondary highlight (used for e.g. before-after lists) */
.before-after-section {
  margin-top: 30px;
  background: var(--color-secondary);
  color: #232428;
  border-radius: 20px;
  padding: 18px 22px 12px 26px;
  box-shadow: 0 2px 8px #69A2C555;
}
.before-after-section h2 {
  color: #fff;
}
.before-after-section ul li {
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 24px 0;
  }
  .cta-section, .testimonials-section {
    border-radius: 20px;
  }
}

/* -----------------------------------------
   HEADER & NAVIGATION (Desktop & Mobile)
   ----------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 15px #EDEDED33;
  position: relative;
  z-index: 1002;
  padding: 0 0 2px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 75px;
  min-height: 75px;
}
header img {
  height: 47px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.06rem;
  padding: 8px 10px;
  border-radius: 18px;
  transition: background 0.17s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-bright2);
  color: var(--color-light);
}
/* cta-button in header */
header .cta-button {
  font-size: 1.02rem;
  padding: 9px 20px 9px 16px;
  box-shadow: 0 3px 12px var(--color-bright1);
  margin: 0;
}

/* MOBILE MENU SYSTEM */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-bright2);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: 15px;
  z-index: 1203;
  box-shadow: 0 4px 12px var(--color-secondary)55;
  transition: background 0.22s ease, transform 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-bright1);
  color: var(--color-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 1300;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.5,1.4,.57,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 2px 24px #69A2C544;
  pointer-events: none;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--color-secondary);
  background: #fff;
  border-radius: 40px;
  padding: 7px 12px;
  margin: 24px 8px 11px 20px;
  border: 0;
  align-self: flex-end;
  transition: background 0.15s, color 0.15s;
  z-index: 1302;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-bright1);
  color: var(--color-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 18px;
  gap: 8px;
  padding: 0 28px;
}
.mobile-nav a {
  display: block;
  padding: 18px 0 14px 0;
  border-bottom: 1px solid #E6E9F0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: var(--color-secondary);
  transition: color 0.18s, background 0.15s;
  font-weight: 700;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-primary);
  background: var(--color-bright2);
  border-radius: 10px;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* -----------------------------------------
   FOOTER
   ----------------------------------------- */
footer {
  margin-top: 70px;
  padding: 38px 0 24px 0;
  background: var(--color-primary);
  color: #fff;
  width: 100%;
  border-radius: 28px 28px 0 0;
  font-size: 1.02rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-menu {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 11px;
}
.footer-menu a {
  color: var(--color-bright1);
  text-decoration: underline;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1rem;
  margin-right: 9px;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-bright2);
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #fff;
}
.footer-contact a {
  color: var(--color-bright2);
  text-decoration: underline;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
  .footer-menu {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -----------------------------------------
   COOKIE CONSENT BANNER & MODAL
   ----------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe7;
  color: var(--color-primary);
  box-shadow: 0 -2px 20px #ffe56788;
  z-index: 1400;
  padding: 18px 12px 14px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  animation: cookie-slide-in .75s cubic-bezier(.67,1.5,.2,1.1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner__message {
  flex: 1 1 75%;
  margin-right: 18px;
}
.cookie-consent-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn,
.cookie-btn-secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 16px;
  padding: 9px 20px;
  outline: none;
  border: none;
  transition: background 0.18s, color 0.16s;
}
.cookie-btn {
  background: var(--color-bright1);
  color: var(--color-dark);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn-secondary {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: var(--color-bright2);
  color: #fff;
  border-color: var(--color-bright2);
}
/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(44,50,81,0.76);
  z-index: 1402;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fadein .3s cubic-bezier(.36,1.1,.7,1.18);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 18px;
  max-width: 355px;
  width: 92vw;
  padding: 28px 24px 22px 22px;
  box-shadow: 0 12px 46px 0 #FFC30052;
  color: var(--color-primary);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  z-index: 1403;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight:700;
  font-size: 1.36rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin:12px 0 18px 0;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFBED;
  border-radius: 10px;
  padding: 7px 13px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-toggle {
  width: 34px;
  height: 18px;
  background: #dbeafe;
  border-radius: 10px;
  position: relative;
  margin-left: 8px;
  transition: background 0.22s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius:50%;
  transition: left .2s, background .2s;
  box-shadow: 0 1px 3px #2C325125;
}
.cookie-toggle.enabled {
  background: var(--color-success);
}
.cookie-toggle.enabled .slider {
  background: var(--color-secondary);
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 1.62rem;
  color: var(--color-secondary);
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-bright2);
}

@media (max-width:520px) {
  .cookie-modal {
    padding:12px 7px 14px;
    min-width:0;
  }
}

/* -----------------------------------------
   FORMS AND INPUTS (for contact page in future)
   ----------------------------------------- */
input[type="text"], input[type="email"], textarea {
  border-radius: 13px;
  padding: 11px 14px;
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
  font-size: 1.09rem;
  width: 100%;
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: border-color 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-bright2);
}

/* -----------------------------------------
   UTILITY CLASSES (Spacing & Animations)
   ----------------------------------------- */
.mt-0   { margin-top: 0 !important; }
.mt-8   { margin-top: 8px !important; }
.mt-16  { margin-top: 16px !important; }
.mt-32  { margin-top: 32px !important; }
.mb-8   { margin-bottom: 8px !important; }
.mb-16  { margin-bottom: 16px !important; }
.mb-32  { margin-bottom: 32px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }

.fade-in {
  opacity: 0;
  animation: fade-in-opacity .7s forwards .4s;
}
@keyframes fade-in-opacity {
  to { opacity: 1; }
}

/* -----------------------------------------
   SCROLLBAR & SELECTION (for fun accent)
   ----------------------------------------- */
::-webkit-scrollbar {
  width: 14px;
  background: #f2f5fb;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 12px;
  border: 4px solid #f2f5fb;
}
::selection {
  background: var(--color-bright2);
  color: #fff;
}

/* -----------------------------------------
   ANIMATED TESTIMONIAL SLIDER (manual slider assumed)
   ----------------------------------------- */
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
}

/* -----------------------------------------
   ICON & BADGES (for future use)
   ----------------------------------------- */
.badge-pop {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  background: var(--color-bright1);
  color: var(--color-dark);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 13px;
  margin-left: 7px;
  letter-spacing: 0.04em;
}

/* -----------------------------------------
   ERROR, WARNING, SUCCESS COLOR CLASSES
   ----------------------------------------- */
.text-success { color: var(--color-success); }
.text-warning { color: var(--color-warning); }
.text-error   { color: var(--color-error); }

/* -----------------------------------------
   PRINT (basic support)
   ----------------------------------------- */
@media print {
  header, footer, .cookie-consent-banner {
    display: none !important;
  }
  body {
    background: #fff !important;
  }
}

/* -----------------------------------------
   END OF CSS
   ----------------------------------------- */
