/* ===================================================
   CSS RESET & BASE 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f5f7fa;
  color: #222831;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #FF7F50; /* playful coral for links */
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #30B4FF;
  text-decoration: underline;
}
button, input, select {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}
input[type="search"] {
  border: 2px solid #FFD369;
  border-radius: 24px;
  padding: 10px 20px;
  background: #fff;
  font-size: 16px;
  margin-top: 10px;
  transition: border 0.2s;
}
input[type="search"]:focus {
  border-color: #FF7F50;
}
select {
  border: 2px solid #FFD369;
  border-radius: 22px;
  padding: 8px 18px;
  background: #fff;
  font-size: 16px;
  margin-top: 10px;
}

/* ===================================================
   BRAND COLOR VARIABLES & FONTS
   =================================================== */
:root {
  --primary: #222831;
  --secondary: #393E46;
  --accent: #FFD369;
  --accent-bright: #FFE573;
  --bright-blue: #30B4FF;
  --coral: #FF7F50;
  --aqua: #1EE3CF;
  --pink: #FF9FF3;
  --light-bg: #FFFDF7;
  --shadow: 0 6px 18px 0 rgba(34,40,49, 0.08);
  --radius: 16px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--primary);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--primary);
  line-height: 1.1;
}
h1 {
  font-size: 2.75rem;
  color: var(--bright-blue);
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--secondary);
}
strong {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  color: var(--coral);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
cite {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
}

/* ===================================================
   MAIN STRUCTURE & SECTIONS (SPACING/ALIGNMENT)
   =================================================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
@media (max-width: 992px) {
  .section {
    margin-bottom: 44px;
    padding: 28px 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Card Container and Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.card {
  background: var(--aqua);
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  padding: 30px 22px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.2s;
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 300px;
}
.card:hover {
  box-shadow: 0 12px 30px 0 rgba(48,180,255,0.14);
  transform: translateY(-6px) scale(1.022) rotate(-2deg);
  background: var(--accent-bright);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFDF7;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px 0 rgba(255,127,80,0.07);
  margin-bottom: 20px;
  min-width: 275px;
  flex: 1 1 300px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Consistent spacing for usual content lists/blocks */
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
  color: var(--secondary);
}
ul li, ol li {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

/* Grid-ish presentation for custom blocks */
.member-list, .team-profile-grid, .features-grid, .calendar-overview, .success-story-grid, .news-article-list, .author-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.member-profile-teaser,
.team-profile-grid > div,
.features-grid > div,
.event-detail-preview,
.success-story-grid > div,
.news-article-list > div,
.author-profiles > div {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 20px;
  box-shadow: var(--shadow);
  min-width: 230px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.12s;
}
.member-profile-teaser h3, 
.team-profile-grid strong, 
.features-grid h3, 
.event-detail-preview h3, 
.success-story-grid h3, 
.news-article-list h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bright-blue);
}
.member-profile-teaser a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.member-profile-teaser a:hover {
  background: var(--bright-blue);
  color: var(--primary);
}

/* History Timeline (ul) */
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  margin-left: 0;
  list-style: none;
}
.history-timeline li {
  position: relative;
  padding-left: 24px;
}
.history-timeline li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--pink);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
  box-shadow: 0 0 0 3px var(--accent-bright);
}

/* ===================================================
   HEADER, NAVIGATION & LOGO
   =================================================== */
header {
  background: var(--primary);
  color: #FFFDF7;
  padding: 0;
  box-shadow: 0 2px 14px 0 rgba(34,40,49,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 0 18px;
}

header img {
  max-height: 46px;
  margin: 12px 0 12px 0;
  transition: transform 0.18s;
}
header img:hover {
  transform: scale(1.07) rotate(-2deg);
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.17s, color 0.22s, box-shadow 0.18s;
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 3px 8px rgba(255,211,105,0.12);
}
.main-nav .btn-primary {
  background: var(--coral);
  color: #fff;
}
.main-nav .btn-primary:hover {
  background: var(--bright-blue);
  color: var(--primary);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(34,40,49,0.07);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  z-index: 2100;
}
.mobile-menu-toggle:active {
  background: var(--bright-blue);
  color: #fff;
  transform: scale(0.99);
}

/* MOBILE NAV STYLES & ANIMATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,40,49,0.97);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.79,.14,.15,.86);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 26px 0 0;
  font-size: 2rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
  z-index: 3500;
}
.mobile-menu-close:hover {
  color: var(--bright-blue);
  transform: rotate(8deg) scale(1.16);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 46px 0 0 0;
  align-items: center;
  justify-content: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.33rem;
  color: #FFFDF7;
  padding: 15px 32px;
  border-radius: 999px;
  transition: background 0.18s, color 0.25s, transform 0.18s;
  font-weight: 700;
  background: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.07);
}
.mobile-nav a.btn-primary {
  background: var(--coral);
  color: #fff;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 4px;
  }
}

/* ===================================================
   HERO/CTA SECTIONS (PLAYFUL DYNAMIC FOCUS)
   =================================================== */
.hero {
  background: linear-gradient(100deg, var(--accent-bright) 60%, var(--bright-blue) 150%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 50px 0 rgba(48,180,255,0.15);
  margin-bottom: 60px;
  padding: 48px 0 50px 0;
  overflow: hidden;
  position: relative;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px #ffe69280;
  animation: showUpTitle 0.9s 0.1s both;
}
.hero .subtitle {
  font-family: var(--font-body);
  color: var(--coral);
  font-weight: 600;
  font-size: 1.25rem;
}
@keyframes showUpTitle {
  0% { opacity: 0; transform: translateY(42px); }
  80% { opacity: 1; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cta-strip {
  background: var(--coral);
  color: #fff;
  padding: 44px 0;
  margin-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 24px 0 rgba(255,127,80, 0.13);
  min-height: 120px;
}
.cta-strip h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 18px;
}

/* ===================================================
   BUTTONS (PRIMARY, SECONDARY, INTERACTIONS)
   =================================================== */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: #fff !important;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 1.20rem;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: 0 2px 20px 0 rgba(255,127,80, 0.13);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.19s, box-shadow 0.22s, transform 0.16s, color 0.17s;
  text-align: center;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--bright-blue);
  color: var(--primary) !important;
  box-shadow: 0 6px 20px 0 rgba(48,180,255,0.15);
  transform: translateY(-4px) scale(1.05);
}
.btn-secondary {
  display: inline-block;
  background: var(--accent);
  color: var(--primary) !important;
  border-radius: 999px;
  padding: 12px 30px;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 1px 8px 0 rgba(255,211,105,0.10);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.19s, box-shadow 0.22s, transform 0.16s, color 0.17s;
  text-align: center;
  border: 2px solid transparent;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--coral);
  color: #fff !important;
  border-color: var(--coral);
  transform: translateY(-2px) scale(1.04);
}

/* Cookie Banner Buttons */
.cookie-btn-accept {
  background: var(--coral);
  color: #fff;
  border-radius: 8px;
  padding: 9px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 16px;
  margin-bottom: 6px;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--bright-blue);
  color: var(--primary);
}
.cookie-btn-reject {
  background: #fff;
  color: var(--coral);
  border-radius: 8px;
  border: 2px solid var(--coral);
  padding: 9px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-right: 16px;
  margin-bottom: 6px;
  transition: background 0.16s, border 0.18s, color 0.16s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--accent-bright);
  border-color: var(--bright-blue);
  color: var(--primary);
}
.cookie-btn-settings {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 8px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--coral);
  color: #fff;
}

/* ===================================================
   FOOTER STYLES
   =================================================== */
footer {
  background: var(--secondary);
  color: var(--accent);
  padding: 38px 0 24px 0;
  border-radius: 30px 30px 0 0;
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  background: none;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.15s, color 0.16s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffe692;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-bottom: -4px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* Footer logo */
footer img {
  max-height: 46px;
  margin-bottom: 16px;
}

/* Social links placeholder */
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}

/* ===================================================
   ANIMATIONS & MICRO-INTERACTIONS
   =================================================== */
.card, .testimonial-card, .member-profile-teaser, .features-grid > div, .success-story-grid > div, .team-profile-grid > div, .event-detail-preview, .calendar-overview > div {
  transition: box-shadow 0.21s, transform 0.16s, background 0.17s;
}
.card:hover, .testimonial-card:hover, .member-profile-teaser:hover, .features-grid > div:hover, .success-story-grid > div:hover, .team-profile-grid > div:hover, .event-detail-preview:hover, .calendar-overview > div:hover {
  box-shadow: 0 10px 30px 0 rgba(30,227,207,0.14);
  transform: translateY(-5px) scale(1.03) rotate(-1.5deg);
  background: var(--accent-bright);
}
button:active, a:active {
  transform: scale(0.98);
}

/* Animated underline effect for fun */
.main-nav a, .mobile-nav a {
  position: relative;
  overflow: hidden;
}
.main-nav a::after, .mobile-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--bright-blue);
  transition: width 0.33s cubic-bezier(.77,0,.18,1.0);
  border-radius: 3px;
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
}
.main-nav a:hover::after, .main-nav a:focus::after,
.mobile-nav a:hover::after, .mobile-nav a:focus::after {
  width: 80%;
}

/* ===================================================
   RESPONSIVE DESIGN & MOBILE FIRST FLEX CHANGES
   =================================================== */
@media (max-width: 992px) {
  .container {
    max-width: 96vw;
    padding: 0 7px;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .container {
    padding: 0 2vw;
  }
  .card-container, .content-grid, .features-grid, .member-list, .success-story-grid, .calendar-overview, .team-profile-grid, .author-profiles, .news-article-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .member-profile-teaser, .features-grid > div, .success-story-grid > div, .team-profile-grid > div, .event-detail-preview {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .content-wrapper, .section {
    padding: 1.5rem 8px;
  }
  .hero {
    padding: 38px 0 24px 0;
    border-radius: 0 0 24px 24px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
  }
}

/* Extra small adjustments for narrow screens */
@media (max-width: 520px) {
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
    padding: 10px 16px;
    margin-top: 6px;
  }
  .cookie-banner-buttons button {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
  .footer-contact {
    font-size: 0.87rem;
  }
}

/* ===================================================
   COOKIE BANNER & COOKIE MODAL
   =================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -4px 32px 0 rgba(34,40,49,0.12);
  padding: 24px 18px 24px 18px;
  z-index: 3700;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 42px;
  justify-content: center;
  min-height: 82px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.37s cubic-bezier(.79,.14,.15,.86);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--secondary);
  max-width: 520px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 8px;
    min-height: unset;
  }
  .cookie-banner-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .cookie-banner-text {
    font-size: 0.98rem;
  }
}

.cookie-modal-mask {
  display: none;
  position: fixed;
  z-index: 4700;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,40,49, 0.84);
  align-items: center;
  justify-content: center;
}
.cookie-modal-mask.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px;
  width: 92vw;
  margin: 2vw;
  padding: 34px 30px 26px 30px;
  box-shadow: 0 10px 64px 0 rgba(30,227,207,0.12);
  animation: cModalIn 0.41s cubic-bezier(.77,0,.18,1.0);
  position: relative;
}
@keyframes cModalIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.91); }
  80% { opacity: 0.8; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 19px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  border: none;
  width: 32px; height: 32px;
  font-size: 1.38rem;
  line-height: 32px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.14s, transform 0.13s;
}
.cookie-modal-close:hover {
  background: var(--coral);
  color: #fff;
  transform: rotate(8deg) scale(1.15);
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: var(--coral);
  margin-bottom: 14px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  margin-bottom: 16px;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: var(--primary);
}
.cookie-modal-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #ddd;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal-toggle:checked {
  background: var(--coral);
}
.cookie-modal-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
  box-shadow: 0 1px 6px 0 rgba(34,40,49,0.11);
}
.cookie-modal-toggle:checked:before {
  left: 17px;
}
.cookie-modal-category-info {
  font-size: 0.96rem;
  color: #666;
  margin-top: 4px;
  margin-left: 43px;
  margin-bottom: 12px;
}
.cookie-modal-actions {
  margin-top: 21px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* Show modal on small screens in center */
@media (max-width:600px) {
  .cookie-modal {
    padding: 18px 6vw 10px 6vw;
    max-width: 96vw;
  }
}

/* ===================================================
   HIGH CONTRAST FOR TESTIMONIALS/REVIEWS
   =================================================== */
.testimonial-card {
  background: #FFFDF7;
  color: #222831;
  border-left: 7px solid var(--accent);
  border-right: 7px solid var(--coral);
  box-shadow: 0 7px 24px 0 rgba(66,180,255,0.10);
  font-size: 1.09rem;
}
.testimonial-card blockquote {
  color: var(--coral);
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.testimonial-card cite {
  font-size: 1.03rem;
  color: var(--primary);
  font-weight: 700;
}


/* ===================================================
   FORM ELEMENTS & SEARCH FIELD
   =================================================== */
input[type="search"] {
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  font-size: 1rem;
  transition: border 0.15s, box-shadow 0.15s;
}
input[type="search"]:focus {
  border: 2px solid var(--bright-blue);
  box-shadow: 0 0 5px 0 var(--accent-bright);
}
label {
  font-family: var(--font-body);
  color: var(--coral);
  font-weight: 600;
}

/* ===================================================
   PLAYFUL MICRO ELEMENTS
   =================================================== */
.features-grid img, .success-story-grid img, .member-profile-teaser img, .team-profile-grid img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,227,207,0.12);
  margin-bottom: 12px;
  background: var(--accent-bright);
}

/* Fun floating geometric decoration for hero (optional, for even more playful style) */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  opacity: .12;
  pointer-events: none;
}
.hero::before {
  top: -52px; left: 5%;
  width: 80px; height: 80px;
  background: var(--coral);
  border-radius: 50% 24% 43% 70%;
  animation: float1 5s infinite alternate cubic-bezier(.77,0,.18,1.0);
}
.hero::after {
  bottom: -60px; right: 10%;
  width: 122px; height: 72px;
  background: var(--bright-blue);
  border-radius: 40% 61% 70% 30%;
  animation: float2 7s infinite alternate cubic-bezier(.77,0,.18,1.0);
}
@keyframes float1 {
  0% { transform: translateY(0) scale(1) rotate(0);}   
  100% { transform: translateY(23px) scale(1.15) rotate(28deg);}
}
@keyframes float2 {
  0% { transform: translateY(0) scale(1) rotate(0); }
  100% { transform: translateY(-18px) scale(1.08) rotate(-20deg); }
}

/* ===================================================
   UTILITY / HELPER CLASSES
   =================================================== */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.gap-18 { gap: 18px !important; }
.w-100 { width: 100%; }

/* ===================================================
   PRINTING: (Hide nav, footer by default)
   =================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-mask { display: none !important; }
  body { background: #fff; color: #000; }
}
