/* ====================
   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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1;
  scroll-behavior: smooth;
}
body {
  background: #FDF8F6;
  color: #18475B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  transition: background .3s cubic-bezier(.79,.27,.28,.95);
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #4AB8A8;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #18475B;
  text-decoration: underline;
}
img {
  display: inline-block;
  max-width: 100%;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #18475B;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
p, li, span, dd {
  font-size: 1rem;
  line-height: 1.7;
  color: #20526e;
}
strong {
  font-weight: bold;
}
blockquote {
  border-left: 4px solid #4AB8A8;
  background: #f4fffb;
  margin: 20px 0 20px 0;
  padding: 16px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #18475B;
  border-radius: 12px;
}
/*
====================
 BASIC LAYOUTS & CONTAINERS
==================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
main {
  padding-top: 44px;
  min-height: 600px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
/*
============================
  PLAYFUL DYNAMIC THEME COLORS
============================ */
:root {
  --primary: #18475B;
  --secondary: #4AB8A8;
  --accent: #FDF8F6;
  --fun-yellow: #FFE579;
  --fun-pink: #FF7BA9;
  --fun-mint: #7CF5B7;
  --heading-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}
/*
========================
 HEADER and MAIN NAVIGATION
======================== */
header {
  background: #fff7f2;
  box-shadow: 0 1px 8px 0 rgba(60,96,115,0.04);
  position: sticky;
  top: 0;
  z-index: 1020;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 75px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  margin-right: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.main-nav a {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 20px;
  transition: background .18s, color .18s;
  color: var(--primary);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--fun-yellow);
  color: #20526e;
}
.cta-primary {
  background: var(--secondary);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 25px;
  border: none;
  outline: none;
  box-shadow: 0 3px 16px 0 rgba(76,184,168,0.18);
  cursor: pointer;
  transition: background .18s, box-shadow .18s, transform .14s;
  letter-spacing: 0.03em;
  margin-left: 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--fun-pink);
  color: var(--primary);
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 5px 22px 2px rgba(255,123,169,0.09);
}
/*
========================
 MOBILE HEADER and MENU
======================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--fun-mint);
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-left: 20px;
  box-shadow: 0 2px 6px rgba(122,245,183,0.16);
  color: var(--primary);
  cursor: pointer;
  transition: background .16s, transform .12s;
  z-index: 1200;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.08) rotate(4deg);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff7f2;
  box-shadow: 0 4px 22px 8px rgba(0,0,0,.06);
  z-index: 9999;
  transform: translateX(-110%);
  transition: transform .36s cubic-bezier(.74,.04,.26,.96);
  padding: 0 20px;
  gap: 32px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 22px;
  margin-bottom: 18px;
  font-size: 2rem;
  background: var(--fun-pink);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 6px rgba(255,123,169,0.15);
  cursor: pointer;
  transition: background .13s, transform .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
  transform: rotate(5deg) scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 12px;
  width: 85vw;
  max-width: 330px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.18rem;
  color: var(--primary);
  background: var(--fun-mint);
  padding: 11px 22px;
  border-radius: 18px;
  min-width: 180px;
  transition: background .18s, color .17s, transform 0.13s;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.07);
}
@media (min-width: 981px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 980px) {
  .main-nav, .cta-primary {
    display: none;
  }
}

/*
========================
 HERO SECTIONS
======================== */
.hero-section {
  background: linear-gradient(100deg, #FDF8F6 50%, #FFE579 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 170px 60px;
  box-shadow: 0 5px 36px 0 rgba(255,229,121,0.08);
  position: relative;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero-section h1 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 2.3rem;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 0 rgba(255,229,121,0.09);
}
.hero-section p {
  color: #20526e;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/*
========================
  FEATURES SECTION
======================== */
.features {
  background: #fff7f2;
  border-radius: 28px;
  box-shadow: 0 5px 32px 0 rgba(74,184,168,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 0;
}
.feature-grid li {
  background: #fff;
  flex: 1 1 226px;
  min-width: 200px;
  max-width: 300px;
  margin-bottom: 20px;
  padding: 28px 18px 22px 18px;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(24,71,91, .05), 0 1px 7px 0 rgba(74,184,168,0.10);
  border: 2.5px dashed var(--fun-mint);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow .16s, transform .13s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 28px 0 rgba(255,123,169,0.09), 0 8px 24px 0 rgba(74,184,168,0.11);
  transform: translateY(-8px) rotate(-1.5deg) scale(1.03);
  border-color: var(--fun-pink);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 7px rgba(74,184,168,0.07));
}
.feature-grid h3 {
  font-size: 1.13rem;
  font-family: var(--heading-font);
  margin-bottom: 6px;
  color: var(--secondary);
}
.feature-grid p {
  font-size: 1rem;
  color: #18475B;
}

/*
========================
  SERVICES OVERVIEW
======================== */
.services-overview {
  background: #f4fffb;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 3px 14px 0 rgba(76,184,168,0.07);
}
.services-overview .content-wrapper {
  gap: 22px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 18px 0 20px 0;
}
.service-list li {
  background: #fff7f2;
  color: #20526e;
  padding: 13px 18px;
  border-radius: 14px;
  box-shadow: 0 3px 8px 0 rgba(255,229,121,0.04);
  font-size: 1.06rem;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.service-list li span {
  color: var(--fun-pink);
  font-weight: bold;
  font-size: 1.17rem;
  margin-left: 6px;
}

/*
========================
  TESTIMONIALS
======================== */
.testimonials h2, .testimonial-spotlight h2 {
  color: var(--fun-pink);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-left: 6px solid var(--fun-pink);
  box-shadow: 0 4px 36px 0 rgba(255,123,169,0.06), 0 1.2px 5px 0 rgba(24,71,91,0.06);
  padding: 20px 28px 20px 20px;
  border-radius: 14px 45px 18px 14px;
  margin-bottom: 22px;
  position: relative;
  transition: box-shadow .17s, transform .13s, border-color .2s;
  color: #18475B;
  font-size: 1.05rem;
}
.testimonial-card:hover {
  box-shadow: 0 3px 26px 0 rgba(76,184,168,0.08), 0 8px 30px 0 rgba(255,229,121,.10);
  border-color: var(--fun-yellow);
  transform: scale(1.025) rotate(1.2deg);
}
.testimonial-card p {
  color: #18475B !important;
  font-size: 1.09rem;
  line-height: 1.6;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 0.97rem;
  font-style: italic;
  margin-left: 2px;
}

.testimonials .content-wrapper, .testimonial-spotlight .content-wrapper {
  gap: 16px;
}

/*
========================
  ABOUT PAGE
======================== */
.about-section, .mission-vision, .team-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(122,245,183,0.07);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.team-members {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 15px;
}
.about-section h1 {
  color: var(--fun-pink);
  font-size: 2.2rem;
}
.about-section h2, .mission-vision h2, .team-section h2 {
  color: var(--secondary);
}
.team-section a {
  font-size: 1rem;
  color: var(--fun-pink);
  font-weight: 700;
}

/*
========================
  SKIN TIPS, CATEGORIES
======================== */
.skin-categories {
  background: #FDF8F6;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 2px 13px 0 rgba(74,184,168,0.06);
  padding: 40px 20px;
}
.skin-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 0;
}
.skin-tips li {
  background: #fff;
  box-shadow: 0 3px 19px 0 rgba(122,245,183, 0.08);
  border-radius: 14px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 295px;
  padding: 22px 16px;
  margin-bottom: 20px;
  border-left: 5.5px solid var(--secondary);
  transition: box-shadow .16s, border-color .16s, transform .12s;
}
.skin-tips li:hover {
  box-shadow: 0 8px 28px 0 rgba(255,123,169,0.07), 0 2px 13px 0 rgba(255,229,121,.07);
  border-color: var(--fun-yellow);
  transform: scale(1.02) rotate(-1deg);
}
.skin-tips h3 {
  color: var(--secondary);
  font-family: var(--heading-font);
  font-size: 1.13rem;
  margin-bottom: 4px;
}

/*
========================
  HAIRCARE PAGE STYLES
======================== */
.hair-tips {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0px 4px 24px 0 rgba(74,184,168,.07);
  padding: 40px 20px;
}
.tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.tip-grid li {
  background: #FDF8F6;
  flex: 1 1 210px;
  min-width: 170px;
  max-width: 300px;
  border-radius: 12px;
  padding: 22px 16px;
  box-shadow: 0 2px 13px 0 rgba(74,184,168,0.08);
  border: 2.5px dotted var(--fun-mint);
  transition: box-shadow .15s, border-color .15s, transform .11s;
  margin-bottom: 20px;
}
.tip-grid li:hover {
  box-shadow: 0 2px 24px 0 rgba(255,123,169,0.08);
  border-color: var(--fun-pink);
  transform: scale(1.02) rotate(1deg);
}
.ingredient-highlights, .home-recipes {
  background: #ffeef5;
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: 13px;
  margin-bottom: 7px;
  box-shadow: 0 2px 12px 0 rgba(255,123,169, .07);
}
.ingredient-highlights h3, .home-recipes h3 {
  color: var(--fun-pink);
  font-size: 1.09rem;
  margin-bottom: 5px;
}
.ingredient-highlights ul, .home-recipes ul {
  margin-left: 12px;
  list-style-type: disc;
  color: var(--primary);
}

/*
========================
  ROUTINE MINIMALISTA PAGE
======================== */
.steps-section {
  background: #FDF8F6;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 18px 0 rgba(255,229,121,.09);
}
.step-list, .benefit-points ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.step-list li, .benefit-points ul li {
  background: #fff;
  color: #18475B;
  border-radius: 12px;
  padding: 11px 15px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 rgba(122,245,183,0.06);
}
.benefit-points ul {
  margin-top: 9px;
}

/*
========================
  FAQ and LEGAL
======================== */
.legal-section {
  background: #fff;
  box-shadow: 0 3px 13px 0 rgba(74,184,168, .07);
  border-radius: 14px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.faq-section dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-section dt {
  font-family: var(--heading-font);
  color: var(--secondary);
  font-weight: bold;
  margin-bottom: 3px;
}
.faq-section dd {
  padding-left: 15px;
  margin-bottom: 10px;
}

/*
========================
  CONTACT PAGE
======================== */
.contact-section, .info-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(74,184,168,0.06);
  margin-bottom: 32px;
  padding: 40px 20px;
}
.contact-details, .map-snippet {
  margin-top: 11px;
  margin-bottom: 11px;
}
.address-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.address-block img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(74,184,168,0.11));
}
.map-snippet img {
  width: 27px;
  height: 27px;
  margin-right: 7px;
  vertical-align: middle;
}

/*
========================
  FOOTER
======================== */
footer {
  width: 100%;
  background: #fff7f2;
  box-shadow: 0 -2px 22px 0 rgba(76,184,168, 0.08), 0 -1px 5px 0 rgba(255,229,121,0.06);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 35px 0 0 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 23px;
}
.logo-footer img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--heading-font);
  font-weight: 600;
  transition: color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--fun-pink);
}
.footer-contact, .footer-hours {
  color: #20526e;
  font-size: .99rem;
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--fun-pink); text-decoration: underline; font-weight: 600; word-break: break-word;
}
.footer-contact img, .footer-hours img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-hours {
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
}

/* ===============
 RESPONSIVE DESIGN
 =============== */
@media (max-width: 980px) {
  .container {
    max-width: 100%;
    padding: 0 13px;
  }
  header .container {
    flex-direction: row;
    gap: 13px;
  }
  .feature-grid, .skin-tips, .tip-grid, .footer-nav, .footer-contact, .footer-hours, .service-list, .step-list, .benefit-points ul {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    margin-bottom: 18px;
  }
  .footer-contact, .footer-hours {
    margin-bottom: 13px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 32px 0 18px 0;
    border-bottom-right-radius: 70px 30px;
  }
  .container, main, .section, .features, .about-section, .mission-vision, .team-section, .skin-categories, .hair-tips, .steps-section, .service-highlight, .service-link, .testimonial-spotlight, .services-list, .legal-section, .contact-section, .info-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .skin-tips, .tip-grid {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 13px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 10px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .hero-section h1 { font-size: 1.5rem; }
  .features, .about-section, .mission-vision, .team-section, .skin-categories, .hair-tips, .steps-section, .service-highlight, .service-link, .testimonial-spotlight, .services-list, .legal-section, .contact-section, .info-section {
    padding: 22px 5px;
  }
}

/*
========================
  TRANSITIONS & ANIMATIONS
======================== */
.cta-primary, .card, .feature-grid li, .skin-tips li, .tip-grid li, .service-list li, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .18s, background .18s, color .16s, transform .15s,
              border-color .18s;
}
.feature-grid li, .skin-tips li, .tip-grid li, .service-list li, .testimonial-card {
  animation: playful-bounce-in .6s cubic-bezier(.34,1.31,.64,1) forwards;
  opacity: 0;
  animation-delay: .13s;
}
@keyframes playful-bounce-in {
  0%   { opacity:0; transform: scale(.88) translateY(40px) rotate(-6deg); }
  76%  { opacity:1; transform: scale(1.04) translateY(-9px) rotate(1.3deg); }
  86%  { opacity:1; transform: scale(.97) translateY(4px) rotate(-.5deg); }
  100% { opacity:1; transform: scale(1) translateY(0) rotate(0deg); }
}

/* Small playful hover micro-interaction */
.card, .feature-grid li, .skin-tips li, .tip-grid li, .service-list li {
  will-change: box-shadow, transform;
}

/*
========================================= 
 COOKIE CONSENT BANNER & CONSENT MODAL
========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #18475B;
  color: #fff;
  z-index: 10001;
  box-shadow: 0 0 24px 2px rgba(0,0,0,0.1);
  padding: 22px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookie-slideup .5s cubic-bezier(.37,1.16,.56,1);
}
@keyframes cookie-slideup {
  0% { transform: translateY(120%); opacity: 0.5; }
  98% { transform: translateY(-6px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1;
  color: #fff;
  line-height: 1.45;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-button {
  font-family: var(--heading-font);
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(255,229,121,0.14);
  transition: background .17s, color .16s, transform .09s;
  margin: 0;
}
.cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-accept:hover {
  background: var(--fun-mint);
  color: var(--primary);
  transform: scale(1.05);
}
.cookie-reject {
  background: #fff;
  color: var(--secondary);
}
.cookie-reject:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.05);
}
.cookie-settings {
  background: var(--fun-yellow);
  color: var(--primary);
}
.cookie-settings:hover {
  background: var(--fun-pink);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.99rem;
    padding: 16px 5px;
  }
  .cookie-banner-actions {
    flex-direction: row;
    gap: 8px;
    width: 100%;
  }
}
/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 71, 91, 0.66);
  z-index: 10021;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  animation: fadeIn .3s cubic-bezier(.53,.11,.61,.95);
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 22px;
  max-width: 400px;
  width: 94vw;
  padding: 34px 25px 24px 25px;
  box-shadow: 0 6px 40px 6px rgba(122,245,183,0.18), 0 0.6px 12px 0 rgba(74,184,168,.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: slidein .36s cubic-bezier(.47,.92,.58,1.02);
}
@keyframes slidein {
  from { transform: scale(0.92) translateY(60px); }
  to   { transform: scale(1)   translateY(0); }
}
.cookie-modal-content h2 {
  color: var(--secondary);
  font-family: var(--heading-font);
  font-size: 1.4rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: var(--fun-pink);
  color: #fff;
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  line-height: 1;
  transition: background .14s, transform .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
  transform: scale(1.09);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  background: #fff7f2;
  border-radius: 13px;
  padding: 10px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
}
.cookie-category label {
  font-family: var(--body-font);
  font-size: 1rem;
  cursor: pointer;
  color: var(--secondary);
  letter-spacing: 0.01em;
}
.cookie-category .cookie-switch {
  appearance: none;
  background: #eee;
  border-radius: 17px;
  width: 38px;
  height: 22px;
  position: relative;
  border: none;
  outline: none;
  transition: background .14s;
}
.cookie-category .cookie-switch:checked {
  background: var(--fun-mint);
}
.cookie-category .cookie-switch:disabled {
  opacity: 0.6; cursor: not-allowed;
}
.cookie-category .cookie-switch::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--fun-pink);
  position: absolute;
  top: 2px; left: 2px;
  transition: left .16s;
}
.cookie-category .cookie-switch:checked:before {
  background: var(--secondary);
  left: 18px;
}
.cookie-category .cookie-switch:disabled:before {
  background: #ddd;
}
.cookie-category .cookie-switch[aria-checked='true'] {
  background: var(--fun-mint);
}
.cookie-category .cookie-switch[aria-checked='false'] {
  background: #eee;
}
/*
=======================================
  FLEXBOX PATTERNS AS REQUESTED
======================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(76,184,168,0.08);
  padding: 20px;
  min-width: 180px;
  flex: 1 1 230px;
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #18475B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/*
========================
  UTILITIES & MISC
======================== */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.rounded {
  border-radius: 15px !important;
}
.text-center { text-align: center; }
.animated-spin {
  animation: spin 2.22s linear infinite;
}
@keyframes spin {
  0% {transform: rotate(0deg);}
  100% { transform: rotate(360deg); }
}
/*
========================
  FUN & ENERGETIC FONTS
======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3, .cta-primary, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/*
========================
  Misc
======================== */
::-webkit-scrollbar { width: 7px; background: var(--accent); }
::-webkit-scrollbar-thumb {
  background: var(--fun-pink); border-radius: 4px;
}


/* END */
