/* =========================================================
   CSS RESET & NORMALIZE (always apply first)
========================================================= */
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, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  font-size: 16px;
}
body {
  background: #FAFAFA;
  color: #384452;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-variant-ligatures: none;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.5em;
}
a {
  color: #26547C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2d91bc;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
}

/* ===============================
   COLOR PALETTE – SOFT PASTEL
=============================== */
:root {
  --fz-primary: #26547C;
  --fz-secondary: #FFD166;
  --fz-accent: #FAFAFA;
  --fz-pastel-blue: #b2d8f7;
  --fz-pastel-mint: #d6f5e3;
  --fz-pastel-pink: #ffe6ef;
  --fz-pastel-yellow: #fff7d6;
  --fz-pastel-lavender: #eceafb;
  --fz-dark: #384452;
  --fz-text: #384452;
  --fz-bg: #FAFAFA;
  --fz-muted: #a0b1be;
  --fz-card-bg: #fff9f4;
  --fz-shadow: 0 4px 16px 0 rgba(38,84,124,0.08);
  --fz-shadow-card: 0 2px 12px 0 rgba(38,84,124,0.09);
}

/* ===============================
   TYPOGRAPHY
=============================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--fz-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p {
  font-size: 1rem;
  color: var(--fz-text);
  margin-bottom: 14px;
  line-height: 1.8;
}
.subheadline {
  font-size: 1.2rem;
  color: var(--fz-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.85;
  margin-bottom: 20px;
  font-weight: 500;
}
ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--fz-dark);
}
strong, b {
  font-weight: 600;
}
.legal-text {
  font-size: 1rem;
  color: var(--fz-text);
  background: var(--fz-pastel-lavender);
  border-radius: 12px;
  margin: 20px 0 0 0;
  padding: 24px 18px;
  box-shadow: var(--fz-shadow-card);
}

/* ================================
   LAYOUT & UTILITY CLASSES
================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  padding: 0;
  margin-bottom: 16px;
}
section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* CARD/GRID/FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--fz-card-bg);
  border-radius: 14px;
  box-shadow: var(--fz-shadow-card);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
}
.content-grid, .feature-grid, .service-cards, .benefits-grid, .workshop-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  width: 100%;
  margin: 16px 0 0 0;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--fz-pastel-mint);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--fz-shadow);
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item, .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 180px;
  background: var(--fz-pastel-pink);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--fz-shadow-card);
  margin-bottom: 20px;
}
.benefit-item {
  background: var(--fz-pastel-lavender);
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-cards, .benefits-grid, .workshop-highlights {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

.text-section {
  margin-bottom: 18px;
  padding: 0;
}

/* Card specific (service, benefit, etc.) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.service-card {
  background: var(--fz-pastel-yellow);
  flex: 1 1 250px;
  border-radius: 14px;
  box-shadow: var(--fz-shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}
.service-card:hover, .benefit-item:hover, .feature-item:hover {
  box-shadow: 0 8px 24px 0 rgba(38,84,124,0.13);
  transform: translateY(-3px) scale(1.02);
}
.price {
  margin-top: 16px;
  color: var(--fz-primary);
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--fz-accent);
  border-radius: 9px;
  font-size: 1.08rem;
  padding: 2px 12px;
}

@media (max-width: 600px) {
  .service-card, .feature-item, .benefit-item {
    min-width: unset;
    width: 100%;
    padding: 22px 12px;
  }
}

/* Testimonial meta */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: var(--fz-primary);
  font-weight: 500;
  margin-top: 8px;
}

/* ===============================
   HEADER & NAVIGATION
=============================== */
header {
  width: 100%;
  background: linear-gradient(90deg, var(--fz-pastel-blue) 85%, var(--fz-accent));
  box-shadow: 0 2px 20px 0 rgba(38,84,124,0.05);
  position: relative;
  z-index: 50;
}
header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--fz-primary);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--fz-secondary);
  color: var(--fz-primary);
  text-decoration: none;
}
.cta-button {
  background: var(--fz-secondary);
  color: var(--fz-primary);
  border-radius: 30px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(255,209,102,0.10);
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.18s, color 0.18s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #ffe595;
  color: var(--fz-primary);
  box-shadow: 0 4px 24px 0 rgba(255,209,102,0.18);
  transform: scale(1.04);
}
/* Responsive nav */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--fz-secondary);
  color: var(--fz-primary);
  border: none;
  border-radius: 50%;
  padding: 4px 10px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 110;
}
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 2px var(--fz-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 249, 250, 1);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.69,0.08,0.38,0.99);
  z-index: 2000;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 32px rgba(38,84,124,0.14);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: var(--fz-primary);
  background: none;
  border: none;
  padding: 15px 21px;
  margin: 8px 6px 0 0;
  cursor: pointer;
  z-index: 21;
  transition: color 0.18s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 29px;
  margin-top: 16px;
}
.mobile-nav a {
  font-size: 1.18rem;
  padding: 13px 6px;
  color: var(--fz-primary);
  background: transparent;
  border-radius: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  width: 100%;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fz-secondary);
  color: var(--fz-primary);
}

@media (max-width: 950px) {
  .main-nav {
    gap: 10px;
  }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 6px;
    padding: 10px 16px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .mobile-nav {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

/* ===============================
   HERO SECTION
=============================== */
.hero-section {
  width: 100%;
  background: linear-gradient(110deg, var(--fz-pastel-blue) 45%, var(--fz-pastel-lavender) 100%);
  border-radius: 0 0 35px 35px;
  box-shadow: 0 8px 24px 0 rgba(38,84,124,0.08);
  padding-top: 54px;
  padding-bottom: 54px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.hero-section .content-wrapper {
  text-align: center;
  padding: 0 0 0 0;
}
.hero-section h1 {
  color: var(--fz-primary);
  font-size: 2.7rem;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.hero-section .subheadline {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .cta-button {
  margin-top: 20px;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 30px 0 28px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 34px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

/* ===============================
   FOOTER
=============================== */
footer {
  width: 100%;
  background: linear-gradient(90deg, var(--fz-pastel-blue) 80%, var(--fz-pastel-pink) 100%);
  border-radius: 37px 37px 0 0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 60px;
  box-shadow: 0 -2px 24px 0 rgba(38,84,124,0.04);
  font-size: 1rem;
  color: var(--fz-dark);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: var(--fz-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #377eb8;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--fz-dark);
  font-size: 0.98rem;
}
.footer-contact img {
  width: 1.2em;
  height: 1.2em;
  margin-right: 9px;
  vertical-align: middle;
  opacity: 0.77;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 12px;
  }
}

/* ===============================
   BUTTONS & FORM ELEMENTS
=============================== */
button, .cta-button {
  transition: background 0.16s, box-shadow 0.16s, color 0.15s, transform 0.14s;
}
button:active, .cta-button:active {
  transform: scale(0.97);
}
input, textarea, select {
  outline: none;
  border: 1px solid #dce9f2;
  background: #fff;
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 1rem;
  margin-bottom: 15px;
  box-shadow: none;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--fz-primary);
  background: var(--fz-pastel-blue);
}

/* ===============================
   LIST & TABLES
=============================== */
ul, ol {
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}
ol {
  list-style-type: decimal;
}
ul {
  list-style-type: disc;
}

/* ===============================
   MICRO-INTERACTIONS
=============================== */
a, .cta-button, button, .service-card, .feature-item, .benefit-item {
  transition: background 0.18s, color 0.15s, box-shadow 0.17s, transform 0.15s;
}
.service-card:hover, .feature-item:hover, .benefit-item:hover {
  cursor: pointer;
  box-shadow: 0 6px 24px 0 rgba(255,209,102,0.16), var(--fz-shadow-card);
  background: #fffbe7;
  transform: translateY(-2px) scale(1.015);
}

/* ===============================
   MISCELLANEOUS
=============================== */
::-webkit-scrollbar {
  width: 8px;
  background: var(--fz-pastel-lavender);
}
::-webkit-scrollbar-thumb {
  background: var(--fz-pastel-blue);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #82bce6;
}

hr {
  border: none;
  border-top: 1px dashed #b2d8f7;
  height: 1px;
  margin: 28px 0;
}

/* ===============================
   COOKIE CONSENT BANNER
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fz-pastel-lavender);
  color: var(--fz-dark);
  border-top: 2px solid var(--fz-pastel-blue);
  box-shadow: 0 -6px 26px rgba(38,84,124,0.09);
  padding: 24px 14px;
  z-index: 3000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInBanner 0.7s;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(50px);} to {opacity:1; transform: none;}
}
.cookie-banner-message {
  flex: 1 1 300px;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 9px;
  font-size: 1rem;
  padding: 8px 18px;
  font-weight: 600;
  margin: 0;
  min-width: 110px;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  outline: none;
}
.cookie-banner .cookie-accept {
  background: var(--fz-secondary);
  color: var(--fz-primary);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #ffe595;
  color: var(--fz-primary);
}
.cookie-banner .cookie-reject {
  background: #eceff1;
  color: var(--fz-dark);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #d6d9dc;
  color: var(--fz-primary);
}
.cookie-banner .cookie-settings {
  background: var(--fz-pastel-blue);
  color: var(--fz-primary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #82bce6;
  color: var(--fz-dark);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px 7px;
    font-size: 0.99rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(38,84,124, 0.14);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.37s;
}
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--fz-pastel-pink);
  border-radius: 18px;
  box-shadow: 0 6px 48px 0 rgba(38,84,124,0.13);
  width: 95%;
  max-width: 410px;
  padding: 30px 24px 24px 24px;
  position: relative;
  animation: fadeModal 0.38s;
}
@keyframes fadeModal {
  0% { opacity:0; transform:scale(0.94) translateY(30px); }
  100% { opacity:1; transform:scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: var(--fz-primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  background: var(--fz-pastel-blue);
  color: var(--fz-dark);
  border-radius: 10px;
  padding: 13px 15px;
  margin-bottom: 10px;
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--fz-secondary);
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-category input[type="checkbox"][disabled] {
  filter: grayscale(0.7);
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--fz-secondary);
  color: var(--fz-primary);
  border: none;
  border-radius: 8px;
  font-size: 1.04rem;
  font-weight: 600;
  padding: 7px 16px;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #ffe595;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 9px;
  right: 19px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--fz-primary);
  cursor: pointer;
  opacity: 0.88;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus { opacity: 1; color: #699ebe; }

/* ===============================
   RESPONSIVE TYPOGRAPHY
=============================== */
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  p, ul, ol {
    font-size: 0.97rem;
  }
}

/* ===============================
   ENSURE NO OVERLAPPING, ADEQUATE SPACING
=============================== */
section:not(:last-child) {
  margin-bottom: 60px;
}
.card, .feature-item, .service-card, .testimonial-card, .benefit-item {
  margin-bottom: 20px;
}
.content-grid, .card-container, .service-cards, .feature-grid, .benefits-grid, .workshop-highlights {
  gap: 20px;
}
.content-wrapper {
  margin-bottom: 30px;
}

@media (max-width: 550px) {
  section {
    margin-bottom: 26px;
    padding: 19px 4px;
  }

  .content-wrapper{
    margin-bottom: 18px;
  }
}

/* ===============================
   DARK TEXT ON LIGHT BG FOR TESTIMONIALS   
=============================== */
.testimonial-card p, .testimonial-card h3, .testimonial-meta {
  color: #2b334f;
}

/* ===============================
   ANIMATIONS (SOFT FADE/MOVE)
=============================== */
.fade-in {
  animation: fadeInSoft 0.22s;
}
@keyframes fadeInSoft {
  from { opacity:0; transform: translateY(22px);} to { opacity:1; transform: none;}
}
.slide-in-right {
  animation: slideInRight 0.34s cubic-bezier(0.49,0.05,0.33,1.01);
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px);} to {opacity:1; transform: none;}
}

/* ================================
   PRINT STYLING
=============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none!important; }
  section { margin:0!important; padding:0!important; }
}
