/* ---------------------------------------------------
   CSS RESET & NORMALIZE: Remove browser default styles
--------------------------------------------------- */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img, picture { max-width: 100%; height: auto; display: block; border: 0; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

/* ----------------------------------------------------
   GLOBAL VARIABLES (color palette & font stack)
---------------------------------------------------- */
:root {
  --brand-primary: #173C5D;
  --brand-secondary: #27A89E;
  --brand-accent: #F6F4F1;
  --brand-warm1: #FFBF86;
  --brand-warm2: #FFD2BA;
  --brand-highlight: #F7882F;
  --brand-white: #FFFFFF;
  --brand-black: #23262A;
  --brand-gray: #EEE8E2;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ---------------------------------------------
   SITE-WIDE TYPOGRAPHY
--------------------------------------------- */
body {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px;}
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, ul, ol, li { font-size: 1rem; margin-bottom: 12px; color: var(--brand-primary); }
strong, b { font-weight: 600; color: var(--brand-primary); }

/* ---------------------------------------------
   LAYOUT CONTAINERS & SECTIONS (FLEXBOX)
--------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: var(--brand-accent);
  box-shadow: 0 2px 16px 0 rgba(247, 136, 47, 0.06);
}
/* Remove background for .section-success and .section-cta, use colored background */
.section-cta, .section-success {
  background: var(--brand-warm1);
  color: var(--brand-primary);
  border-radius: 24px;
  margin-bottom: 40px;
  box-shadow: 0 4px 24px 0 rgba(247, 136, 47, 0.09);
}

/* ---------------------------------------------
   HEADER STYLES & NAVIGATION
--------------------------------------------- */
header {
  background: var(--brand-white);
  box-shadow: 0 2px 8px rgba(23, 60, 93, 0.08);
  padding: 0;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--brand-warm2);
  color: var(--brand-highlight);
}
.cta-btn {
  background: var(--brand-highlight);
  color: var(--brand-white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(247, 136, 47, 0.09);
  margin-left: 24px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  border: none;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-white);
  transform: translateY(-2px) scale(1.03);
}
.cta-btn.secondary {
  background: var(--brand-white);
  color: var(--brand-highlight);
  border: 2px solid var(--brand-highlight);
  margin-top: 20px;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--brand-highlight);
  color: var(--brand-white);
}

/* -----------------------------------
   MOBILE MENU
----------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--brand-highlight);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  border-radius: 60px;
  padding: 7px 13px 2px 13px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(247, 136, 47, 0.18);
  box-shadow: 0 2px 8px 0 rgba(39,168,158,0.1);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: var(--brand-accent);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.78,0,.35,1);
  box-shadow: 0 0 0 5200px rgba(23, 60, 93, 0.19), 0 2px 24px 0 rgba(247, 136, 47, 0.09);
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  font-size: 2.15rem;
  color: var(--brand-highlight);
  background: none;
  border: none;
  border-radius: 60px;
  padding: 5px 13px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(247, 136, 47, 0.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 32px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.23rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding: 12px 8px 12px 24px;
  border-radius: 16px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-warm2);
  color: var(--brand-highlight);
}

/* Hide nav on mobile until burger is open */
@media (max-width: 1000px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1001px) {
  .mobile-menu { display: none !important; }
}

/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero {
  background: var(--brand-warm2);
  background-image: none;
  padding: 56px 0 48px 0;
  margin-bottom: 60px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 32px 0 rgba(247, 136, 47, 0.05);
}
.hero .container { display: flex; justify-content: center; align-items: center; }
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
  font-weight: 800;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* ---------------------------------------------
   FEATURES, CARDS, PROGRAMS, WORKSHOPS
--------------------------------------------- */
.features-list, .values-list, .resources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: stretch;
  margin-bottom: 0;
}
.features-list li, .values-list li, .resources-list li {
  flex: 1 1 230px;
  background: var(--brand-white);
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(39, 168, 158, 0.06);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.features-list li img,
.values-list li img,
.resources-list li img {
  width: 40px; height: 40px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.features-list li:hover, .values-list li:hover, .resources-list li:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 2px 30px rgba(39,168,158,0.12);
}

.programs-grid, .workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  margin-top: 20px;
  justify-content: space-between;
}
.program-card, .workshop-card {
  background: var(--brand-white);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(23, 60, 93, 0.07);
  flex: 1 1 260px;
  min-width: 220px;
  padding: 26px 18px 21px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border: 2px solid transparent;
}
.program-card:hover, .workshop-card:hover {
  box-shadow: 0 4px 32px 0 rgba(39, 168, 158, 0.13);
  border-color: var(--brand-warm1);
  transform: scale(1.025);
}

.age-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 19px;
  padding-left: 0;
  flex-direction: column;
}
.age-groups li {
  background: var(--brand-warm2);
  border-radius: 14px;
  padding: 11px 19px;
  font-size: 1.03rem;
}

.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
}
.articles-list article {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(23, 60, 93, 0.07);
  padding: 22px 19px 14px 19px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.articles-list article:hover {
  transform: scale(1.013);
  box-shadow: 0 2px 28px rgba(23,60,93,0.11);
}
.articles-list h2 {
  font-size: 1.375rem;
  color: var(--brand-primary);
  margin-bottom: 11px;
}
.tags {
  display: inline-block;
  background: var(--brand-warm2);
  color: var(--brand-highlight);
  border-radius: 9px;
  font-size: 0.93rem;
  padding: 6px 12px 4px 12px;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-details, .contact-info {
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(23, 60, 93, 0.06);
  padding: 22px 16px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-details strong, .contact-info strong { color: var(--brand-highlight); font-weight: 700; }
.contact-details img, .contact-info img { width: 22px; height: 22px; margin-right: 11px; margin-bottom: -4px; display: inline; }

/* ----------------------------------------
   TESTIMONIALS STYLES (Cards)
---------------------------------------- */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px 18px 18px;
  background: var(--brand-warm2);
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(247, 136, 47, 0.08);
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border: 2px solid var(--brand-accent);
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 36px 0 rgba(23,60,93,0.13);
  transform: scale(1.018);
  border-color: var(--brand-warm1);
}
.testimonial-card p {
  color: var(--brand-primary);
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 1rem;
}

/* Ensure contrast for testimonials */
.testimonial-card[style],
.testimonial-card {
  background: var(--brand-warm2) !important;
  color: var(--brand-primary) !important;
}

/* Section Spacing for CTA/Success */
.section-success {
  border-radius: 22px;
  background: var(--brand-warm2);
  color: var(--brand-primary);
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 4px 18px 0 rgba(247, 136, 47, 0.09);
}

/* ----------------------------------------
   RESOURCES & DOWNLOADS
---------------------------------------- */
.resources-list li {
  flex: 1 1 220px;
  min-width: 210px;
  align-items: flex-start;
}
.resources-list a {
  color: var(--brand-secondary);
  font-size: 1rem;
  border-bottom: 1.5px dotted var(--brand-secondary);
  padding-bottom: 1px;
  transition: color 0.18s, border 0.14s;
}
.resources-list a:hover {
  color: var(--brand-highlight);
  border-bottom: 2px solid var(--brand-highlight);
}

/* ----------------------------------------
   FOOTER STYLES
---------------------------------------- */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding-top: 42px;
  padding-bottom: 16px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: var(--brand-accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 9px;
  padding: 6px 0 6px 0;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover {
  color: var(--brand-warm1);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: var(--brand-accent);
}
.footer-contact img { width: 17px; height: 17px; vertical-align: middle; margin-right: 5px; }
.footer-social {
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
.footer-social a img {
  background: var(--brand-accent);
  border-radius: 50%;
  width: 33px;
  height: 33px;
  padding: 6px;
  box-shadow: 0 1px 8px 0 rgba(23, 60, 93, 0.09);
  transition: background 0.17s, transform 0.17s;
}
.footer-social a:hover img {
  background: var(--brand-warm1);
  transform: scale(1.17);
}
.copyright {
  text-align: center;
  color: var(--brand-accent);
  font-size: 0.96rem;
  margin-top: 24px;
  opacity: 0.93;
}

/* ----------------------------------------------
   FLEXBOX - CARD AND CONTENT CONTAINER PATTERNS
---------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  background: var(--brand-white);
  border-radius: 16px;
  box-shadow: 0 1px 9px 0 rgba(39, 168, 158, 0.04);
  padding: 18px 14px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover { box-shadow: 0 2px 32px rgba(39, 168, 158, 0.08); transform: scale(1.013); }

.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 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**********************
 RESPONSIVE DESIGN
**********************/
@media (max-width: 1000px) {
  .container { max-width: 96vw; padding: 0 10px; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 870px) {
  .testimonials-list, .features-list, .programs-grid, .values-list, .resources-list, .articles-list, .workshop-grid, .contact-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .section, section, .section-cta, .section-success {
    padding: 28px 7px;
  }
  .hero, .hero .container {
    padding: 30px 4px 16px 4px !important;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }
  .section, section, .section-cta, .section-success { padding: 21px 3vw; }
  .hero { padding-top: 24px; padding-bottom: 13px; border-radius: 0 0 19px 19px; }
  .hero .content-wrapper { max-width: 96vw; }
  .program-card, .workshop-card {
    min-width: unset;
    width: 100%;
    padding: 16px 10px 13px 10px;
  }
  .features-list li, .values-list li, .resources-list li {
    min-width: unset;
    width: 100%;
    padding: 16px 8px 12px 8px;
  }
  .testimonial-card { min-width: unset; max-width: 100%; padding: 14px 7px 10px 10px; }
  .contact-details, .contact-info { min-width: unset; width: 100%; padding: 12px 6px; }
  .articles-list article { padding: 15px 8px 8px 9px; }
  .footer-social { gap: 12px; margin-top: 13px; }
}
@media (max-width: 570px) {
  .footer-social a img { width: 26px; height: 26px; padding: 4px; }
  .hero { border-radius: 0 0 10px 10px; }
}

/* Make text-image-section column on small screens */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* Ensure proper alignment for vertical items on mobile */
@media (max-width: 768px) {
  .contact-grid, .content-grid { flex-direction: column; align-items: stretch; gap: 14px; }
}

/* ------------------------------------------------
   FORM ELEMENTS, BUTTONS, & INTERACTIVE ELEMENTS
------------------------------------------------ */
input, textarea, select {
  border-radius: 9px;
  background: var(--brand-accent);
  border: 2px solid var(--brand-gray);
  padding: 11px 13px;
  color: var(--brand-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  transition: border 0.19s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--brand-secondary);
  outline: 0;
}
button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 16px;
  background: var(--brand-highlight);
  color: var(--brand-white);
  cursor: pointer;
  padding: 10px 24px;
  transition: background 0.18s, color 0.18s;
}
button:focus, button:hover {
  background: var(--brand-secondary);
  color: var(--brand-white);
}

/* ------------------------------
   COOKIE CONSENT BANNER/MODAL
------------------------------ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--brand-warm2);
  color: var(--brand-primary);
  padding: 27px 14px 22px 24px;
  box-shadow: 0 -4px 35px 0 rgba(23, 60, 93, 0.12);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  border-radius: 24px 24px 0 0;
  animation: cookieBannerFadeIn 0.5s both;
}
@keyframes cookieBannerFadeIn {
  from { opacity:0; bottom:-50px; }
  to { opacity:1; bottom:0; }
}
.cookie-banner-message {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-right: 20px;
  flex: 1 1 200px;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--brand-highlight);
  color: var(--brand-white);
  border-radius: 20px;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.14s, box-shadow 0.17s;
  box-shadow: 0 1px 8px 0 rgba(247, 136, 47, 0.065);
  cursor: pointer;
}
.cookie-btn.cookie-secondary {
  background: var(--brand-white);
  color: var(--brand-highlight);
  border: 2px solid var(--brand-highlight);
}
.cookie-btn.cookie-secondary:hover, .cookie-btn.cookie-secondary:focus {
  background: var(--brand-highlight);
  color: var(--brand-white);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-secondary);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23, 60, 93, 0.28);
  z-index: 2100;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal {
  background: var(--brand-white);
  color: var(--brand-primary);
  border-radius: 19px;
  box-shadow: 0 8px 30px 0 rgba(23,60,93,0.14);
  padding: 28px 24px 23px 24px;
  min-width: 325px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalSlideIn 0.38s cubic-bezier(.78,0,.35,1) both;
}
@keyframes cookieModalSlideIn {
  from { transform: translateY(34px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 4px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 8px 0;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: var(--brand-highlight);
  width: 18px; height: 18px;
  pointer-events: none;
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-category .cookie-always-on {
  color: var(--brand-secondary);
  font-size: 0.92rem;
  font-weight: 700;
  margin-left: 9px;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  margin-top: 12px;
}
.cookie-modal .cookie-btn { min-width: 110px; }
.cookie-modal-close {
  align-self: flex-end;
  background: none;
  color: var(--brand-highlight);
  font-size: 1.55rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  padding: 3px 10px;
  margin: -15px 0 4px 0;
}
.cookie-modal-close:focus, .cookie-modal-close:hover { background: rgba(247,136,47, 0.10); }

/* Responsive cookie banner/modal */
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 13px; padding: 18px 5vw 15px 5vw; }
  .cookie-banner-message { margin-right: 0; }
  .cookie-modal { min-width: unset; max-width: 98vw; padding: 16px 7px 9px 13px; }
}

/*************************************************
   MICRO-INTERACTIONS & BASIC ANIMATIONS
*************************************************/
a, button, .cta-btn, .card, .program-card, .workshop-card,
.features-list li, .values-list li, .resources-list li,
.articles-list article, .testimonial-card, .footer-social a img {
  transition: 
    background 0.16s, 
    color 0.13s,
    border 0.16s,
    box-shadow 0.18s,
    transform 0.18s;
}

/*********************************
   UTILITY: SPACING AND GAPS
*********************************/
.mb-0 { margin-bottom: 0!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-30 { margin-bottom: 30px!important; }
.mt-20 { margin-top: 20px!important; }
.mt-30 { margin-top: 30px!important; }
.gap-8 { gap: 8px!important; }
.gap-16 { gap: 16px!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }

/*********************************
   ACCESSIBILITY: FOCUS STATES
*********************************/
a:focus-visible, .cta-btn:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 3px;
}

/*********************************
   MISC CLASSES (for color)
*********************************/
.text-primary { color: var(--brand-primary) !important; }
.text-secondary { color: var(--brand-secondary) !important; }
.text-accent { color: var(--brand-accent) !important; }
.text-highlight { color: var(--brand-highlight) !important; }
.bg-highlight { background: var(--brand-highlight) !important; color: var(--brand-accent)!important; }
.bg-accent { background: var(--brand-accent) !important; color: var(--brand-primary)!important; }
.bg-warm1 { background: var(--brand-warm1)!important; color: var(--brand-primary)!important; }

/* Ensure everything uses flex for layout and NO grid property anywhere! */