/* Electre Soar - style.css - playful_dynamic theme */
/* === 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,
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FCFFF9;
  color: #1D2731;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  /* energetic feel with subtle background */
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
}
a {
  color: #3D8F7E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7E95D;
  outline: none;
  text-decoration: underline;
}
:root {
  --color-primary: #1D2731;
  --color-secondary: #3D8F7E;
  --color-accent: #F7E95D;
  --color-light: #FCFFF9;
  --color-muted: #DAEDF7;
  --color-card-bg: #FFFBEA;
  --color-btn-shadow: rgba(61,143,126,0.15);
  --color-shadow: rgba(29,39,49,0.10);
  --radius-card: 18px;
  --radius-btn: 14px;
  --shadow-card: 0 6px 24px var(--color-shadow);
  --transition-main: 0.2s cubic-bezier(0.55, 0, 0.1, 1);
}

/* === Typography & Playful/Dynamic Headings === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1D2731;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.65;
}
.subheadline {
  color: #3D8F7E;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
address {
  font-style: normal;
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 16px 18px;
  margin-bottom: 18px;
  color: #1D2731;
  line-height: 1.8;
  box-shadow: 0 2px 10px rgba(29,39,49,0.06);
}
/* Playful accent effects for headings */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 10px;
  border-radius: 28px;
  background: var(--color-accent);
  margin-top: 8px;
  margin-left: 2px;
  opacity: 0.54;
  z-index: -1;
  /* playful underline */
  animation: bounce-accent 1s infinite alternate-reverse linear;
}
@keyframes bounce-accent {
  0% {
    transform: translateY(0) scaleX(1.08);
    opacity: 0.68;
  }
  100% {
    transform: translateY(5px) scaleX(0.9);
    opacity: 0.3;
  }
}

/* === Containers, Sections & Layout with Flexbox === */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Card containers etc */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-8px) rotate(-2deg) scale(1.03);
  box-shadow: 0 14px 32px rgba(61,143,126,0.22);
}
.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;
}

/* Values, services, tips, workshops grids */
.service-list,
.tip-grid,
.values-grid,
.workshop-overview-grid,
.support-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list > div,
.tip-grid > div,
.values-grid > div,
.workshop-overview-grid > div,
.support-options-grid > div {
  flex: 1 1 260px;
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 18px rgba(61,143,126,0.15);
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: transform var(--transition-main), box-shadow var(--transition-main);
  position: relative;
  min-width: 230px;
}
.service-list > div:hover,
.tip-grid > div:hover,
.values-grid > div:hover,
.workshop-overview-grid > div:hover,
.support-options-grid > div:hover {
  transform: translateY(-5px) rotate(1.5deg) scale(1.03);
  box-shadow: 0 14px 42px rgba(247,233,93,0.12);
}

.featured-tip {
  background: #E6FFE6;
  border-left: 6px solid #F7E95D;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 2px 12px rgba(61,143,126,0.11);
  padding: 20px 32px;
  margin: 32px 0 16px 0;
  font-size: 1.09rem;
  transition: background 0.3s;
}
.featured-tip:hover {
  background: #FFF8C6;
}
.tip-categories {
  font-size: 1rem;
  color: #3D8F7E;
  margin-bottom: 10px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: 0 3px 16px rgba(61,143,126,0.13);
  margin-bottom: 20px;
  color: #1D2731;
  max-width: 600px;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(61,143,126,0.15);
  transform: scale(1.025) rotate(-1deg);
}
.testimonial-card p {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}
.testimonial-card span {
  font-size: 0.95rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3D8F7E;
}

/* Tables and FAQ, Pricing */
.pricing-table {
  background: #FFFBEA;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(61,143,126,0.18);
  margin: 36px 0 24px 0;
  overflow-x: auto;
  padding: 20px;
}
.pricing-table h3 { margin-bottom: 16px; }
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #F7E95D;
  font-size: 1rem;
}
.pricing-table th {
  background: #F7E95D;
  color: #1D2731;
  font-weight: 700;
}
.pricing-table tr:last-child td { border-bottom: none; }

.support-faq, .how-it-works-list {
  background: #f4fff2;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0 14px 0;
}
.how-it-works-list ol {
  padding-left: 1.1em;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.map-placeholder {
  background: #E3F6F5;
  border-radius: 14px;
  text-align: center;
  padding: 18px;
  margin-bottom: 16px;
  font-style: italic;
  color: #3D8F7E;
  font-size: 0.98rem;
}

/* === Buttons and CTA === */
.cta-primary, .button, button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  cursor: pointer;
  font-size: 1.1rem;
  margin: 8px 0 10px 0;
  box-shadow: 0 5px 16px var(--color-btn-shadow);
  transition: background 0.19s, transform 0.13s, box-shadow 0.27s;
  outline: none;
  text-decoration: none;
  position: relative;
  z-index: 2;
}
.cta-primary:hover, .button:hover, button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: #FFFA82;
  color: #1D2731;
  box-shadow: 0 8px 24px #f7e95da2;
  transform: scale(1.07) rotate(-2deg);
}
.cta-primary:focus, .button:focus {
  box-shadow: 0 0 0 3px #3D8F7E66;
  outline: none;
}
button {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* === Navigation - Desktop & Mobile === */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 16px 24px 16px 18px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 6px 24px rgba(247, 233, 93, 0.08);
  min-height: 64px;
  z-index: 10;
  position: relative;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 24px;
  border-radius: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 9px;
  transition: background 0.18s, color 0.19s;
}
.main-nav a.cta-primary {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-left: 18px;
  box-shadow: 0 2px 8px var(--color-btn-shadow);
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7E95D;
  color: #1D2731;
  text-decoration: none;
}

/* --- Hamburger (burger) menu on mobile --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #3D8F7E;
  color: #fff;
  border: none;
  padding: 8px 13px;
  border-radius: 12px;
  margin: 8px 6px 8px auto;
  box-shadow: 0 2px 8px #3d8f7e22;
  cursor: pointer;
  z-index: 30;
  transition: background 0.16s, color 0.16s, transform 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: #1D2731; color: #F7E95D; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 94vw;
  max-width: 350px;
  background: #fff;
  box-shadow: 0 8px 38px 0 rgba(29,39,49,0.29);
  z-index: 200;
  transform: translateX(-120%);
  transition: transform 0.32s cubic-bezier(0.7,0,0.28,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 2.2em 18px 1.4em;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 21px;
  right: 28px;
  font-size: 2.1rem;
  background: none;
  color: #1D2731;
  border: none;
  z-index: 201;
  cursor: pointer;
  box-shadow: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  z-index: 202;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #1D2731;
  background: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7E95D;
  color: #3D8F7E;
}

/* Mobile nav overlay effect */
.mobile-menu-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 190;
  background: rgba(29,39,49,0.27);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.mobile-menu.open + .mobile-menu-bg {
  pointer-events: auto;
  opacity: 1;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    padding: 14px 10px 12px 10px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 820px) {
  .main-nav {
    flex-wrap: wrap;
    row-gap: 8px;
    padding: 10px 2px 6px 13px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}


/* --- Footer --- */
footer {
  background: #E9FAF2;
  padding: 32px 0 16px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #3D8F7E;
  font-size: 1.02rem;
  padding: 2px 7px;
}
.footer-nav a:hover, .footer-nav a:focus { background: #F7E95D; }
.footer-logo { margin-bottom: 12px; }
.footer-logo img { height: 36px; width: auto; }
.footer-contact { color: #3D8F7E; font-size: 0.98rem; font-family: 'Montserrat', Arial; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: linear-gradient(90deg, #FFFBEA 80%, #F7E95D 100%);
  color: #1D2731;
  box-shadow: 0 -4px 18px #1d27311a;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 22px 18px 32px;
  z-index: 10020;
  font-size: 1rem;
  animation: slideup-banner 1s cubic-bezier(0.7,0,0.28,1);
}
@keyframes slideup-banner {
  from { transform: translateY(120%); opacity: 0.4; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 11px 22px;
  margin: 0 0 0 5px;
  background: #F7E95D;
  color: #1D2731;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .14s, box-shadow .21s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #3D8F7E;
  color: #fff;
  box-shadow: 0 3px 12px #3d8f7e22;
}
.cookie-banner .cookie-banner-buttons .cookie-settings-btn {
  background: #fff;
  color: #3D8F7E;
  border: 1.5px solid #3D8F7E;
}
.cookie-banner .cookie-banner-buttons .cookie-settings-btn:hover {
  background: #3D8F7E;
  color: #fff;
}

/* --- Cookie Modal Popup --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29,39,49,0.46);
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cookie-modal .28s;
}
@keyframes fadein-cookie-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 54px #1d273138;
  width: 97vw;
  max-width: 410px;
  padding: 34px 26px 22px 26px;
  z-index: 10035;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popscale-in .3s cubic-bezier(0.65,0,0.34,1);
}
@keyframes popscale-in {
  0% { transform: scale(0.78) ; opacity: 0; }
  74% { transform: scale(1.05); }
  100% { transform: scale(1.00) ; opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F7E95D;
  font-size: 1.02rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 42px; height: 24px;
  border-radius: 16px;
  background: #E5EEE9;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle.enabled {
  background: #3D8F7E;
}
.cookie-toggle .circle {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 2.2px;
  box-shadow: 0 1px 6px #1d273127;
  transition: left 0.18s;
}
.cookie-toggle.enabled .circle {
  left: 21px;
}
.cookie-modal .cookie-preferences-btns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-preferences-btns button {
  background: #F7E95D;
  color: #1D2731;
}
.cookie-modal .cookie-preferences-btns .close-btn {
  background: #fff;
  color: #3D8F7E;
  border: 1.5px solid #3D8F7E;
}
.cookie-modal .cookie-preferences-btns .close-btn:hover,
.cookie-modal .cookie-preferences-btns .close-btn:focus {
  background: #3D8F7E;
  color: #fff;
}

/* Cookies: ensure always one (essential) toggle is disabled */
.cookie-category.essential .cookie-toggle {
  pointer-events: none;
  background: #EAEAEA;
}

/* === Lists, Cards, and General Spacing === */
ul, ol {
  margin-bottom: 16px;
  margin-top: 6px;
}
li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.section > .container {
  display: flex;
  flex-direction: column;
}

.next-steps {
  background: #F0FFF0;
  border-radius: 16px;
  padding: 22px;
  margin: 20px 0 16px 0;
  box-shadow: 0 2px 10px #3d8f7e19;
}
.next-steps h2 { font-size: 1.18rem; margin-bottom: 10px; }

.text-section {
  background: #F9F9FF;
  border-radius: 13px;
  padding: 26px 20px;
  margin-bottom: 16px;
}

/* --- Responsive: Mobile-First --- */
@media (max-width: 1000px) {
  .service-list > div,
  .tip-grid > div,
  .values-grid > div,
  .workshop-overview-grid > div,
  .support-options-grid > div {
    min-width: 180px;
    flex-basis: 44%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section {
    padding: 22px 3vw;
    margin-bottom: 36px;
  }
  .content-wrapper, .service-list, .tip-grid, .values-grid, .workshop-overview-grid, .support-options-grid {
    gap: 14px;
  }
  .card,
  .service-list > div,
  .tip-grid > div,
  .values-grid > div,
  .workshop-overview-grid > div,
  .support-options-grid > div {
    padding: 18px 12px;
    min-width: 90vw;
    flex-basis: 100%;
  }
  .testimonial-card {
    max-width: 95vw;
    padding: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .pricing-table { padding: 7px 2vw; }
  .mobile-menu {
    max-width: 93vw;
    padding-right: 7vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  :root {
    --radius-card: 8px;
    --radius-btn: 6px;
  }
  html, body { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.02rem; }
  .container { padding: 0 6px; }
  .footer-logo img { height: 27px; }
  .cookie-modal { padding: 19px 7px 10px 7px; }
}

/* --- Animations for Playful Dynamic Style --- */
.card, .service-list > div, .testimonial-card, .featured-tip, .next-steps, .map-placeholder {
  animation: fadein-card .7s cubic-bezier(0.7,0,0.28,1);
}
@keyframes fadein-card {
  from { opacity: 0; transform: translateY(36px) scale(0.95) rotate(2deg); }
  to   { opacity: 1; transform: none; }
}

.cta-primary,
.button,
.mobile-menu-toggle {
  animation: wiggle-btn 2.4s infinite cubic-bezier(0.87,0.03,0.24,1);
}
@keyframes wiggle-btn {
  0%, 95%, 100%    { transform: rotate(0deg) scale(1); }
  10%              { transform: rotate(-4deg) scale(1.04); }
  20%              { transform: rotate(4deg) scale(1.06); }
  30%              { transform: rotate(-3deg) scale(1.03); }
  40%              { transform: rotate(2deg) scale(1.01); }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.hide { display: none !important; }

/* --- Accessibility: Focus outlines --- */
a:focus-visible, button:focus-visible, .cta-primary:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 1px;
}

/* --- Misc --- */
::-webkit-scrollbar-thumb { background: #E3F6F5; border-radius: 6px; }
::-webkit-scrollbar { width: 11px; background: #FCFFF9; }

::-moz-selection { background: #F7E95D; color: #1D2731; }
::selection { background: #F7E95D; color: #1D2731; }

/* --- Cards and Spacing Consistency --- */
.section > .container > .content-wrapper > *,
.section > .container > .content-wrapper > .service-list > div,
.section > .container > .content-wrapper > .values-grid > div,
.section > .container > .content-wrapper > .tip-grid > div,
.section > .container > .content-wrapper > .workshop-overview-grid > div,
.section > .container > .content-wrapper > .testimonial-card,
.section > .container > .content-wrapper > .featured-tip,
.section > .container > .content-wrapper > .card {
  margin-bottom: 20px;
}
.section > .container > .content-wrapper > :last-child{
  margin-bottom: 0;
}

/* --- Prevent Absolute Position for Cards --- */
.card, .testimonial-card, .service-list > div, .workshop-overview-grid > div, .tip-grid > div, .values-grid > div {
  position: relative;
  z-index: 1;
}

/* --- Prevent content overlap --- */
.card, .testimonial-card,
.service-list > div, .tip-grid > div, .values-grid > div, .workshop-overview-grid > div, .featured-tip, .next-steps {
  margin-right: 0;
  margin-left: 0;
}

/* === END Electre Soar playful_dynamic CSS === */
