/* RESET & BASE TYPOGRAPHY */
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.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFBFF;
  color: #242846;
  font-size: 16px;
  min-height: 100vh;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
a:focus {
  outline: 2px solid #EFCB68;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* BRAND FONT FAMILY */
h1, h2, h3, h4, .cta-button, .logo {
  font-family: 'Oswald', Arial, sans-serif;
}

/* BRAND COLORS (with pastel additions) */
:root {
  --primary: #203354;
  --secondary: #EFCB68;
  --accent: #fff;
  --pastel-blue: #bbcceb;
  --pastel-pink: #ffe7ed;
  --pastel-green: #d0f5ea;
  --pastel-purple: #e8d9f3;
  --pastel-yellow: #fff8d0;
  --light-gray: #F3F4F8;
  --border-pastel: #e1e6f4;
}


/* CONTAINER, SPACING, LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(200,200,210,0.10), 0 1.5px 0px 0 var(--pastel-blue);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(110, 160, 222, 0.14), 0 2.5px 0px 0 var(--secondary);
  transform: translateY(-4px) scale(1.015);
}

.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: var(--pastel-blue);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(32, 51, 84, 0.05);
  color: #22253a;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 235px;
  max-width: 500px;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card:hover {
  background: var(--pastel-purple);
  box-shadow: 0 8px 24px 0 rgba(180,148,220,0.12);
}
.testimonial-card blockquote {
  font-size: 16px;
  letter-spacing: .03em;
  font-style: italic;
  color: #31385c;
  margin-right: 12px;
}
.testimonial-card cite {
  font-size: 15px;
  color: var(--primary);
  opacity: 0.8;
  text-align: right;
  display: block;
  flex: none;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO & CTA STYLES */
.hero {
  background: linear-gradient(180deg, #f7f8fd 50%, var(--pastel-blue) 100%);
  padding: 64px 0 48px 0;
  text-align: center;
}
.hero .content-wrapper {
  align-items: center;
  margin-top: 24px;
  gap: 20px;
}
.hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.6rem;
  color: var(--primary);
  letter-spacing: .02em;
  text-shadow: 0 3px 24px rgba(190,200,255,0.08);
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #6371a8;
  font-size: 1.3rem;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 640px;
  margin: 0 auto 8px auto;
}

.cta {
  background: var(--pastel-yellow);
  border-radius: 18px;
  margin-top: 36px;
  margin-bottom: 60px;
  padding: 38px 0 32px 0;
}
.cta .content-wrapper {
  align-items: center;
}

.cta-button, .accept-btn, .reject-btn, .settings-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.1rem;
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 2px 10px rgba(204,183,143,0.10);
  border: none;
  margin: 6px 4px;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.18s;
}
.cta-button:hover, .cta-button:focus, .accept-btn:hover, .accept-btn:focus {
  background: #ffe085;
  color: #184272;
  box-shadow: 0 6px 18px 0 rgba(239,203,104,0.13);
  transform: translateY(-2px) scale(1.04);
}
.reject-btn, .settings-btn {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--pastel-blue);
}
.reject-btn:hover, .settings-btn:hover {
  background: #f8f7fa;
  color: #7884b2;
}

/* NAVIGATION, HEADER & DESKTOP */
header {
  background: var(--accent);
  box-shadow: 0 2px 18px 0 rgba(32,51,84,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding-top: 6px;
  padding-bottom: 6px;
  gap: 16px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 32px;
}
.main-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.94;
  padding: 0 4px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--pastel-blue);
  color: #203354;
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 14px;
  padding: 2px 14px 4px 14px;
  transition: background 0.15s, color 0.15s;
  margin-left: 16px;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffe4ad;
  color: #203354;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(208,235,245,0.44);
  z-index: 101;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.34s cubic-bezier(0.54,0.1,0.77,0.82);
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav.mobile-nav {
  width: 88vw;
  max-width: 360px;
  height: 100vh;
  background: var(--accent);
  box-shadow: -3px 0 24px 0 rgba(97,114,176,0.08);
  padding: 36px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.54,0.15,0.67,0.98);
}
.mobile-menu.open nav.mobile-nav {
  transform: translateX(0%);
}
.mobile-menu .mobile-nav a {
  font-size: 1.2rem;
  padding: 18px 38px;
  border-bottom: 1px solid #e8eaf7;
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  transition: background 0.15s, color 0.18s;
  border-radius: 0;
}
.mobile-menu .mobile-nav a:hover {
  background: var(--pastel-blue);
  color: #333978;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 21px;
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--secondary);
  border-radius: 10px;
  padding: 2px 14px;
  z-index: 105;
  border: none;
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ffe4ad;
  color: #192952;
}

/* ====== FOOTER ======= */
footer {
  background: #f7f8fd;
  border-top: 1px solid var(--pastel-blue);
  padding: 0;
  margin-top: 52px;
}
footer .container {
  padding-top: 42px;
  padding-bottom: 22px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.footer-main .logo img {
  height: 44px;
  border-radius: 13px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #32436e;
  opacity: 0.82;
  font-size: 1rem;
  border-radius: 7px;
  padding: 2px 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: var(--pastel-blue);
  color: #22223c;
  opacity: 1;
}
.social-media {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-bottom: 14px;
}
.social-media a img {
  height: 28px;
  border-radius: 8px;
}
.footer-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}
.footer-footer small {
  color: #4a5174;
  font-size: 14px;
}


/* SECTION & CARD STYLES */
.features {
  background: var(--pastel-pink);
  border-radius: 20px;
  margin-bottom: 62px;
}
.features h2 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 14px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
}
.features ul li {
  background: var(--pastel-blue);
  border-radius: 15px;
  padding: 24px 18px 18px 18px;
  color: #2e3470;
  min-width: 170px;
  max-width: 210px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 1.5px 12px 0 rgba(180,200,240,0.10);
  margin-bottom: 20px;
  transition: background 0.17s, box-shadow 0.18s;
}
.features ul li:hover {
  background: var(--pastel-green);
  box-shadow: 0 8px 22px 0 rgba(168,229,219,0.11);
}
.features ul img {
  height: 38px;
  margin-bottom: 10px;
}

.services, .services-overview, .workshop-list, .event-list {
  background: var(--accent);
  border-radius: 24px;
  margin-bottom: 60px;
}

.service-cards, .service-list, .workshop-offers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-card, .service-description, .workshop-details {
  background: var(--pastel-purple);
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(130,110,146,0.07);
  flex: 1 1 235px;
  min-width: 220px;
  max-width: 330px;
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: background 0.16s, box-shadow 0.15s, transform 0.15s;
}
.service-card:hover, .service-description:hover, .workshop-details:hover {
  background: var(--pastel-yellow);
  box-shadow: 0 8px 30px 0 rgba(239,203,104,.13);
  transform: translateY(-3px) scale(1.02);
}
.service-card h3, .service-description h3, .workshop-details h3 {
  font-size: 1.28em;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p, .service-description p, .workshop-details p {
  font-size: 1em;
  color: #374070;
  margin-bottom: 8px;
}
.service-card span, .service-description span, .workshop-details span {
  font-weight: bold;
  color: #a08300;
  font-size: 1.08em;
}

.pricing-table {
  width: 100%;
  border-spacing: 0;
  margin-top: 26px;
  background: var(--pastel-pink);
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(200,175,120,0.05);
  overflow: hidden;
}
.pricing-table th {
  background: var(--pastel-yellow);
  color: var(--primary);
  font-size: 1.1em;
  padding: 15px 0;
  font-family: 'Oswald', Arial, sans-serif;
  border-bottom: 2.5px solid var(--pastel-blue);
}
.pricing-table td {
  color: var(--primary);
  padding: 13px 11px;
  font-size: 1em;
  border-bottom: 1px solid #ebeef6;
  text-align: center;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.about {
  background: var(--pastel-green);
  border-radius: 20px;
  margin-bottom: 62px;
}
.about h2 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 8px;
}

.values {
  background: var(--pastel-blue);
  border-radius: 20px;
  margin-bottom: 62px;
}
.values h2 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 8px;
}

.event-list {
  background: var(--pastel-pink);
  border-radius: 18px;
}
.event-list ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.event-list ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(194,135,123,0.06);
  padding: 18px 18px 12px 18px;
  color: #243154;
  font-size: 1.1em;
}
.event-list ul li strong {
  color: #720958;
  font-size: 1.05em;
}
.event-list ul li span {
  display: block;
  margin-top: 8px;
  color: #8a4b91;
  font-size: .96em;
}

.galerie .features ul li {
  background: var(--pastel-purple);
}

.contact {
  background: var(--pastel-blue);
  border-radius: 19px;
  margin-bottom: 60px;
}
.contact h2 {
  color: var(--primary);
  font-size: 2em;
  margin-bottom: 8px;
}
.contact address {
  font-style: normal;
  color: #203354;
  font-size: 1.06em;
  margin-bottom: 8px;
}
.contact a {
  color: #466cdf;
  text-decoration: underline;
}
.location-map p {
  color: #584cad;
  font-size: 1em;
}

.confirmation {
  background: var(--pastel-green);
  border-radius: 18px;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.confirmation-message, .next-steps {
  font-size: 1em;
  color: #3e415b;
  margin-bottom: 8px;
}

.legal {
  background: var(--pastel-yellow);
  border-radius: 22px;
  margin-bottom: 55px;
  padding-top: 56px;
  padding-bottom: 48px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.legal h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.legal h3 {
  font-size: 1.17rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li {
  color: #29496a;
  font-size: 1em;
}

/* TABLES GENERIC */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 10px;
  text-align: left;
}

/* TYPOGRAPHY */
h1 {
  font-size: 2.2rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
h2 {
  font-size: 1.5rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .02em;
}
h3 {
  font-size: 1.2rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #4e5774;
  font-weight: 600;
  margin-bottom: 7px;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #475481;
  margin-bottom: 6px;
}
p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
}
p, li {
  font-size: 1em;
  margin-bottom: 6px;
}
strong {
  font-weight: 700;
}
small {
  font-size: .93em;
}
blockquote {
  color: #31385c;
  font-size: 1em;
  font-style: italic;
}


/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 5000;
  background: var(--accent);
  box-shadow: 0 -2px 24px 0 rgba(164,164,200,0.19);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 105px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.29s cubic-bezier(.18,.61,.52,1.00), opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(59, 76, 136, 0.23);
  z-index: 5010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--pastel-blue);
  border-radius: 18px;
  padding: 38px 28px 24px 28px;
  max-width: 410px;
  width: 95vw;
  box-shadow: 0 6px 40px 0 rgba(32,51,84,.25);
  color: #252849;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 84vh;
  overflow-y: auto;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #1b3459;
  margin-bottom: 8px;
}
.cookie-category {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  color: #2d3056;
}
.cookie-category input[type="checkbox"] {
  accent-color: #ffe7ed;
  width: 20px;
  height: 20px;
}
.cookie-category input[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 22px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 10px;
  font-size: 1.5rem;
  padding: 2px 10px;
  border: none;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #ffe4ad;
  color: #203354;
}

/* ANIMATIONS */
@keyframes modalFade {
  from {opacity: 0; transform: scale(0.97) translateY(22px);}
  to {opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal {
  animation: modalFade 0.22s cubic-bezier(.11,.62,.29,1.2);
}

/* RESPONSIVE DESIGN: MOBILE-FIRST */
@media (max-width: 1100px) {
  .container {
    max-width: 95vw !important;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
    font-size: 15px;
  }
  .features ul {
    flex-wrap: wrap;
    gap: 14px;
  }
  .service-cards, .service-list, .workshop-offers {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 7vw;
  }
  .main-nav {
    display: none;
  }
  .cta-button {
    font-size: 1em;
    padding: 12px 26px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 7px;
    min-height: 56px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 28px;
  }
  .features ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper, .content-grid, .card-container, .service-cards, .service-list, .workshop-offers {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-card, .service-description, .workshop-details, .testimonial-card {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 18px 8px !important;
  }
  .testimonial-card {
    gap: 10px;
    padding: 12px !important;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 4vw;
  }
  .about, .values, .features, .services, .services-overview, .workshop-list, .event-list, .contact, .legal, .confirmation {
    border-radius: 11px;
    padding: 22px 3vw;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 14px;
  }
  .footer-footer {
    font-size: .98em;
    justify-content: flex-end;
    padding-top: 3.5px;
  }
  .hero .content-wrapper {
    margin-top: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .event-list ul li {
    min-width: unset;
    max-width: 100%;
  }
  .footer-nav, .footer-legal {
    gap: 5px;
    font-size: .93em;
  }
}
@media (max-width: 540px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  .hero h1 {
    font-size: 1.12rem;
  }
  .hero .subheadline, .confirmation-message, .next-steps, .contact address, .footer-footer small {
    font-size: .96em;
  }
  .card, .testimonial-card, .service-card {
    padding: 12px 2px !important;
  }
  .section, .about, .values, .features, .services, .contact, .legal, .confirmation {
    padding: 16px 2vw;
  }
}

/* PRINT SUPPORT */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay,
  .cta, .cta-button {
    display: none !important;
  }
  main, .container, section {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* Hide cookie/modal overlays by default */
.cookie-banner, .cookie-modal-overlay {
  display: none;
}
.cookie-banner.active, .cookie-modal-overlay.open {
  display: flex;
}
