/* ====================================================
   CSS Reset & Normalize (MOBILE-FIRST BASE)  
   ==================================================== */
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 { box-sizing: border-box; }
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAF6F1;
  color: #315044;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border-radius: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #315044;
  text-decoration: none;
  transition: color 0.2s;
}

/* ====================================================
   BRAND STYLES, COLORS & TYPOGRAPHY
   ==================================================== */
:root {
  --primary: #315044;
  --secondary: #D9B867;
  --accent: #FAF6F1;
  --brand-green: #54C193;
  --brand-orange: #F89836;
  --brand-pink: #F76DA4;
  --brand-blue: #53A3E8;
  --brand-violet: #A287E2;
  --text-dark: #222;
  --text-light: #fff;
  --shadow: 0 4px 20px rgba(49,80,68,0.08), 0 1.5px 8px rgba(217,184,103,0.06);
  --radius: 20px;
  --transition: 0.22s cubic-bezier(.67,.16,.42,1);
  --display-font: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--accent);
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1 { font-size: 2.3rem; margin-bottom: 22px; line-height: 1.15; }
h2 { font-size: 1.5rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.24; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
.display,
h1, .hero-headline {
  font-family: var(--display-font);
  font-weight: 800;
  color: var(--brand-blue);
  text-shadow: 0 1.5px 2px rgba(49,80,68,0.10);
}

p, li, ul, ol, blockquote {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.67;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 1.2rem;
  color: var(--brand-orange);
  margin-bottom: 22px;
  font-family: var(--display-font);
  font-weight: 600;
  letter-spacing: 0.01em;
}

strong, b { font-weight: 700; }

/* Fun Display Font for Hero etc. */
.hero-headline, h1.hero, h1, .hero-title {
  font-family: var(--display-font);
  font-weight: 900;
  color: var(--brand-pink);
}

/* Playful Animations and Colors */
.animated-bounce { animation: bounce 1.6s infinite alternate; }
@keyframes bounce {
  0% {transform: translateY(0);}
  60% {transform: translateY(-7px) scale(1.04);}
  100% {transform: translateY(-4px) scale(1.01);}
}
.animated-pop { animation: pop 1s ease-in-out; }
@keyframes pop { from{transform:scale(0.93);} 60%{transform:scale(1.06);} to{transform:scale(1);} }

/* ====================================================
   LAYOUT UTILITIES & CONTAINERS
   ==================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

/* Flex layouts for sections/cards */
.card-container,
.card-grid, .feature-grid, .service-cards, .articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  width: 100%;
}
.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;
}

.feature-item, .service-card, .advice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 22px 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 220px;
  border-left: 8px solid var(--brand-orange);
  transition: box-shadow var(--transition);
}
.feature-item img,
.service-card img {
  max-height: 54px;
  margin-bottom: 10px;
}
.feature-item:hover, .service-card:hover, .advice-card:hover {
  box-shadow: 0 8px 36px rgba(49,80,68,0.13);
  border-left-color: var(--brand-blue);
  transform: translateY(-2px) scale(1.02);
}

.advice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}
.advice-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(49,80,68,0.09);
  padding: 22px 16px 15px 16px;
  flex: 1 1 210px;
  min-width: 190px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-left-color 0.18s;
  border-left: 7px solid var(--brand-pink);
  position: relative;
}

/* Testimonials (dark text on light bg) */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(49,80,68,0.07);
  margin-bottom: 20px;
  border-left: 6px solid var(--brand-green);
  font-size: 1.05rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-left-color: var(--brand-orange);
  box-shadow: 0 5px 20px rgba(217,184,103,0.13);
}


/* ============
   HEADER / NAVIGATION (DESKTOP/MOBILE)
   ============ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 20px rgba(49,80,68,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: 8px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}
.logo img {
  height: 46px;
  width: auto;
  vertical-align: middle;
  transition: transform 0.25s;
}
.logo:hover img { transform: scale(1.09) rotate(-2deg); }

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: 22px;
}
.main-nav a {
  font-family: var(--display-font);
  color: var(--primary);
  font-weight: 560;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  padding: 6px 10px 8px 10px;
  border-radius: 14px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--brand-orange);
  color: #fff;
}

.cta-btn {
  font-family: var(--display-font);
  background: var(--brand-green);
  color: #fff;
  padding: 11px 28px;
  border: none;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 15px;
  box-shadow: 0 4px 16px rgba(84,193,147,0.11);
  transition: background var(--transition), transform 0.14s;
  cursor: pointer;
  letter-spacing: 0.05em;
  position: relative;
}
.cta-btn::after {
  content: '↗';
  font-size: 1.1rem;
  margin-left: 8px;
  color: var(--brand-blue);
  font-weight: 700;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-1.5px);
  transition: color 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-blue);
  color: #fff;
  transform: scale(1.045) translateY(-2px);
}
.cta-btn:hover::after {
  color: #fff;
  transform: translateY(-4px) scale(1.1);
}

.text-link {
  color: var(--brand-blue);
  font-weight: 600;
  font-family: var(--body-font);
  text-decoration: underline;
  font-size: 1.01rem;
  transition: color 0.2s;
  cursor: pointer;
}
.text-link:hover { color: var(--brand-green); }

.mobile-menu-toggle {
  background: var(--brand-pink);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 7px 15px;
  cursor: pointer;
  box-shadow: 0 2.5px 7px rgba(243,94,155,0.07);
  display: flex;
  align-items: center;
  z-index: 110;
  transition: background var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--brand-blue);
}

/* Hide at desktop */
.mobile-menu-toggle {
  display: flex;
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* =============
   MOBILE MENU OVERLAY
   ============= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(250,246,241,0.99);
  box-shadow: 0 8px 36px rgba(49,80,68,0.13);
  z-index: 999;
  padding: 28px 24px 24px 22px;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.78,.2,.14,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--brand-violet);
  color: #fff;
  font-size: 2.35rem;
  border: none;
  border-radius: 12px;
  padding: 4px 20px 7px 12px;
  margin-bottom: 12px;
  margin-left: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(162,135,226,0.10);
  transition: background var(--transition);
  z-index: 1002;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: var(--brand-pink);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--display-font);
  color: var(--brand-blue);
  font-size: 1.35rem;
  font-weight: 730;
  padding: 11px 16px;
  border-radius: 19px;
  transition: background var(--transition), color var(--transition), box-shadow 0.14s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 1.5px 8px rgba(247,109,164,0.08);
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 899px) {
  .main-nav {
    display: none !important;
  }
}

/* ==============
   MAIN & SECTIONS
   ============== */
main {
  width: 100%;
  min-height: 60vh;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Consistent space between cards/sections */
.card, .service-card, .feature-item, .advice-card, .testimonial-card, .faq-item, .blog-filters, .newsletter, .map-snippet, .content-wrapper, .habit-list, .micro-habits {
  margin-bottom: 20px;
}
.card-container, .card-grid, .feature-grid, .articles-list, .service-cards, .advice-list {
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.problem-solution, .motivational-quotes, .success-stories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

blockquote {
  font-style: italic;
  font-size: 1.07rem;
  margin: 10px 0 18px 16px;
  color: var(--brand-blue);
  border-left: 4px solid var(--brand-green);
  padding-left: 12px;
}

/* =============
   FOOTER
   ============= */
footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 38px 0 28px 0;
  box-shadow: 0 -3px 18px rgba(49,80,68,0.10);
  margin-top: 55px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-family: var(--display-font);
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--secondary);
  font-weight: 520;
  padding: 2px 8px;
  border-radius: 13px;
  transition: background var(--transition), color var(--transition);
}
.footer-menu a:hover {
  background: var(--brand-blue);
  color: #fff;
}
.footer-menu span {
  color: #f8ecc4;
  font-size: 0.98rem;
  margin-left: 12px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.96rem;
  color: #f8ecc4;
}
.contact-info img {
  height: 19px;
  width: auto;
  margin-right: 3px;
  display: inline-block;
  vertical-align: middle;
}
.contact-info span {
  margin-right: 9px;
}

/* ================
   BLOG & NEWSLETTER
   ================ */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.blog-filters input[type="text"],
.blog-filters select {
  background: #fff;
  border: 1.5px solid var(--brand-blue);
  color: var(--primary);
  font-size: 1rem;
  border-radius: 11px;
  padding: 7px 13px;
  margin-right: 4px;
  transition: border-color 0.18s;
}
.blog-filters input[type="text"]:focus,
.blog-filters select:focus {
  border-color: var(--brand-orange);
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.articles-list article {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(49,80,68,0.07);
  padding: 22px 22px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.articles-list article h2 {
  color: var(--brand-violet);
  margin-bottom: 8px;
}

.newsletter {
  background: var(--brand-violet);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 21px rgba(162,135,226,0.13);
  padding: 30px 20px;
  margin-top: 20px;
}
.newsletter h2,
.newsletter p, .newsletter ul, .newsletter li {
  color: #fff;
}

/* =============
   SPECIAL BLOCKS
   ============= */
.map-snippet {
  background: var(--accent);
  border: 2px dashed var(--brand-green);
  border-radius: 15px;
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 0.98rem;
  color: var(--primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 1.5px 9px rgba(49,80,68,0.09);
  margin-bottom: 20px;
  font-size: 1.03rem;
}
.next-steps {
  background: var(--brand-blue);
  border-radius: var(--radius);
  padding: 18px 21px;
  color: #fff;
  margin-bottom: 16px;
}
.next-steps h2, .next-steps li {
  color: #fff;
}

.micro-habits {
  background: var(--brand-green);
  color: #fff;
  border-radius: 15px;
  padding: 12px 18px 9px 18px;
  margin-bottom: 14px;
}
.micro-habits h3, .micro-habits li {
  color: #fff;
}
.habit-list {
  background: var(--brand-orange);
  color: #fff;
  border-radius: 13px;
  padding: 13px 18px 8px 18px;
  margin-bottom: 14px;
}
.habit-list h3, .habit-list li {
  color: #fff;
}
.science-bg {
  background: var(--brand-violet);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 12px;
  font-size: 1.04rem;
}
.science-bg h3, .science-bg p {
  color: #fff;
}

/* ===============
   COOKIE CONSENT BANNER (Fixed Bottom)
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  color: var(--primary);
  border-top: 5px solid var(--brand-pink);
  box-shadow: 0 -4px 30px rgba(49,80,68,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 20px 16px 20px;
  font-size: 1rem;
  animation: cookiefadein 0.6s 0.12s backwards;
}
@keyframes cookiefadein { from{ opacity: 0; transform: translateY(34px);} to{ opacity: 1; transform: translateY(0);} }
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: var(--display-font);
  font-size: 1.06rem;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 16px;
  box-shadow: 0 1.5px 6px rgba(217,184,103,0.07);
  border: none;
  margin-right: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.17s;
}
.cookie-accept {
  background: var(--brand-green);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--brand-blue);
  color: #fff;
  transform: scale(1.04);
}
.cookie-reject {
  background: var(--brand-orange);
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
}
.cookie-settings {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--brand-violet);
  color: #fff;
  transform: scale(1.04);
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(49,80,68,0.17);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: cookiemodalfade 0.25s cubic-bezier(.7,.09,.29,1) backwards;
}
@keyframes cookiemodalfade { from {opacity:0;} to{opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(49,80,68,0.16);
  padding: 36px 23px 24px 23px;
  min-width: 295px;
  max-width: 97vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: pop 0.5s cubic-bezier(.68,.12,.32,1);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: var(--display-font);
  color: var(--brand-pink);
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-category input[type="checkbox"] {
  width: 23px;
  height: 23px;
  accent-color: var(--brand-green);
  vertical-align: middle;
}
.cookie-category label {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-essential {
  color: var(--brand-orange);
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-family: var(--display-font);
  font-size: 1.04rem;
  border-radius: 12px;
  padding: 8px 21px;
  border: none;
  background: var(--brand-pink);
  color: #fff;
  transition: background var(--transition), transform 0.17s;
  box-shadow: 0 1.5px 6px rgba(247,109,164,0.07);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus { background: var(--brand-blue); }

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
    max-width: 98vw;
  }
  .content-wrapper, .section {
    padding: 24px 5px;
  }
  .feature-grid, .service-cards, .card-grid, .card-container, .advice-list, .articles-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .service-card, .advice-card {
    min-width: 0;
    width: 100%;
  }
  .main-nav { display: none !important; }
  .logo img { height: 36px; }
  .footer-menu, .contact-info { gap: 10px; font-size: 0.95rem; }
  .testimonial-card, .faq-item {
    font-size: 0.99rem;
    padding: 15px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 34px;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.1rem; }
  .cta-btn { font-size: 1rem; padding: 10px 11px; }
}

/* ======================================
   PLAYFUL DECORATIVE ELEMENTS & EXTRAS
   ====================================== */
/* Fun colored dots */
.dot-deco {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-orange);
  opacity: 0.13;
  animation: bounce 2.6s infinite alternate;
  z-index: 2;
  left: -32px; top: -24px
}
/* ...Add .dot-deco inside sections as needed for playful feel... */

/* Subtle card shadow on hover */
.card,
.service-card,
.feature-item,
.advice-card,
.faq-item,
.article,
.testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, 
.service-card:hover, 
.feature-item:hover,
.advice-card:hover,
.faq-item:hover,
.article:hover,
.testimonial-card:hover {
  box-shadow: 0 10px 35px rgba(49,80,68,0.14);
  transform: translateY(-2px) scale(1.012);
}

/* Hide on desktop */
@media (min-width: 900px) {
  .mobile-menu { display: none!important; }
}

/* =========================================
   PLAYFUL_DYANMIC Touches (Animated, Colorful)
   ========================================= */
.cta-btn, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  animation: pop .8s cubic-bezier(.51,-0.05,.5,1.31) 1;
}
.card,.service-card,.feature-item,.advice-card,.faq-item,.testimonial-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Fun Font Weight and Playful Rounding for Headings */
h1,h2,h3 {
  border-radius: 12px 22px 9px 17px/9px 16px 13px 8px;
  padding-left: 3px;
  padding-right: 3px;
  background: rgba(217,184,103,0.039);
  display: inline-block;
}
h1.hero-headline, h1.hero {
  background: var(--brand-pink);
  color: #fff;
  text-shadow: 0 2px 9px rgba(247,109,164,0.13);
}

/* Little bouncy micro-interactions on links/buttons */
a:active, .cta-btn:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.97) rotate(-0.5deg);
}

/* Spacing fix for lists */
ul, ol {
  padding-left: 22px;
  margin-bottom: 18px;
  list-style: initial;
}
ul li, ol li {
  margin-bottom: 6px;
}

/* Style checkboxes in cookie modal */
input[type="checkbox"] {
  accent-color: var(--brand-green);
  box-shadow: 0 1.5px 5px rgba(84,193,147,0.05);
  margin-right: 5px;
}

/* Utility class for hiding elements */
.hide { display: none !important; }

/* ========== END ========== */
