/* =====================
   CSS RESET & BASE STYLES
   ===================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFFDF6;
  color: #2B324A;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.02em;
  transition: background 0.5s;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  margin: 0 0 1.5em 1.2em;
  padding-left: 1.25em;
}
ul li, ol li {
  margin-bottom: 0.7em;
}
li:last-child {
  margin-bottom: 0;
}
input, textarea, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}
a {
  color: #4AC1BF;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #FFD54C;
  text-decoration: underline;
}


/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-weight: 700;
  color: #2B324A;
  letter-spacing: 0.01em;
  margin-bottom: 0.4em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.13;
  margin-bottom: 0.6em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25em;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3em;
}
p {
  font-size: 1rem;
  margin-bottom: 1.2em;
}
.subtitle {
  font-size: 1.33rem;
  color: #4AC1BF;
  margin-bottom: 1.1em;
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-weight: 500;
}
.text-section {
  max-width: 800px;
}
strong, b {
  font-weight: 700;
}


/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDF6;
  border-radius: 30px;
  box-shadow: 0 4px 32px 0 rgba(76, 192, 191, 0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: #FFE485;
  color: #2B324A;
  box-shadow: 0 6px 30px 0 rgba(76, 192, 191, 0.10);
  border-radius: 25px;
  min-width: 270px;
  margin-bottom: 20px;
  transition: transform 0.22s cubic-bezier(0.65,0,0.35,1), box-shadow 0.22s;
  border: 2.5px solid #FFD54C;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 14px 40px 0 rgba(76,192,191,0.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px 0 rgba(75, 49, 74, 0.09);
  transition: box-shadow 0.22s, transform 0.22s;
  min-width: 230px;
  margin-bottom: 20px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 26px 0 rgba(76,192,191,0.18);
  transform: translateY(-4px) scale(1.025);
}

/* Card Grids (Services, Features, Steps) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #FFFDF6;
  border-radius: 20px;
  border: 2.5px solid #4AC1BF;
  box-shadow: 0 4px 22px 0 rgba(75,49,74,0.08);
  padding: 22px 22px 18px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  min-height: 170px;
  transition: box-shadow 0.26s, transform 0.2s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 10px 40px 0 rgba(76,192,191,0.16);
  transform: scale(1.025) translateY(-3px);
}
.steps-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(75,49,74, 0.10);
  padding: 22px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.step:hover {
  box-shadow: 0 14px 42px 0 rgba(76,192,191,0.13);
  transform: translateY(-4px) scale(1.02);
}

.courses-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.course-item {
  background: #fff;
  border-radius: 17px;
  border: 2.5px solid #FFD54C;
  box-shadow: 0 3px 18px 0 rgba(44,199,190, 0.07);
  padding: 18px 22px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.course-item:hover {
  box-shadow: 0 7px 28px 0 rgba(44,199,190, 0.16);
  transform: scale(1.023) translateY(-3px);
}

/* =====================
   BUTTONS
   ===================== */
.cta-btn, .cta-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  min-width: 160px;
  padding: 12px 32px;
  border-radius: 30px;
  background: #4AC1BF;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(44,199,190,0.14);
  transition: background 0.17s, color 0.17s, transform 0.2s;
  text-decoration: none;
  margin: 10px 0;
  letter-spacing: 0.03em;
  outline: none;
}
.cta-btn:active {
  transform: scale(0.98);
}
.cta-btn:focus {
  outline: 3px solid #FFD54C;
  outline-offset: 2px;
}
.cta-primary {
  background: #4AC1BF;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2B324A;
  color: #FFD54C;
}
.cta-secondary {
  background: #FFD54C;
  color: #2B324A;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #4AC1BF;
  color: #fff;
}

/* BUTTON ANIMATION */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 25%;
  top: 60%;
  width: 40%;
  height: 50%;
  background: rgba(255,255,255,0.12);
  border-radius: 30% 50% 50% 40%;
  z-index: 1;
  transition: all 0.28s cubic-bezier(.52,.53,.52,.73);
  pointer-events: none;
}
.cta-btn:hover::after {
  left: 60%;
  top: 10%;
  width: 35%;
  height: 35%;
  opacity: 0.35;
}


/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #FFD54C;
  box-shadow: 0 2px 16px 0 rgba(43,50,74,0.06);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  margin-right: 16px;
  display: flex;
  align-items: center;
  height: 66px;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2B324A;
  padding: 8px 12px;
  border-radius: 20px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #4AC1BF;
  color: #fff;
}
header .cta-btn {
  min-width: 120px;
  margin-left: 16px;
}

/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  background: #4AC1BF;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: none;
  margin-left: 16px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  z-index: 110;
  position: relative;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #FFD54C;
  outline-offset: 2px;
}
.mobile-menu-toggle:hover {
  background: #FFD54C;
  color: #2B324A;
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFDF6;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  box-shadow: -3px 0 40px rgba(44,199,190,0.07);
  flex-direction: column;
  padding: 32px 20px 30px 20px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  animation: mobileMenuSlideIn 0.38s cubic-bezier(.77,0,.18,1);
}
@keyframes mobileMenuSlideIn {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0%); }
}
.mobile-menu-close {
  font-size: 2rem;
  color: #2B324A;
  background: #FFD54C;
  border: none;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: background 0.16s, color 0.16s;
  cursor: pointer;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: #4AC1BF;
  color: #fff;
  outline: 2px solid #FFD54C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.27rem;
  color: #2B324A;
  background: transparent;
  border-radius: 18px;
  padding: 13px 10px 13px 18px;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 2px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #FFD54C;
  color: #4AC1BF;
}

/* ======================
   FOOTER
   ====================== */
footer {
  background: #2B324A;
  color: #fff;
  padding: 42px 0 18px 0;
  border-radius: 44px 44px 0 0;
  margin-top: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 28px;
}
.footer-nav a {
  color: #FFD54C;
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.13s, text-decoration 0.16s;
  text-decoration: underline wavy transparent;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #4AC1BF;
  text-decoration: underline wavy #FFD54C;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  font-size: 1.08rem;
  color: #FFD54C;
}
.footer-info span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-info img {
  width: 19px;
  height: 19px;
}
footer small {
  display: block;
  text-align: center;
  font-size: 0.93rem;
  color: #fff;
  opacity: 0.74;
  letter-spacing: 0.01em;
}

/* =====================
   TESTIMONIALS & REVIEW CARDS
   ===================== */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-rating {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-size: 1.22rem;
  color: #FACA21;
  letter-spacing: 2px;
}
.testimonial-name {
  font-weight: 700;
  color: #2B324A;
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  margin-bottom: 4px;
}
.testimonial-course {
  font-size: 0.95rem;
  color: #4AC1BF;
  margin-bottom: 2px;
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faqs-accordion {
  margin: 20px 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px 0 rgba(75,49,74, 0.12);
  padding: 22px 19px;
  margin-bottom: 10px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.faq-item h2 {
  font-size: 1.11rem;
  color: #2B324A;
  font-weight: 600;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.14s;
}
.faq-item h2:hover {
  color: #4AC1BF;
}
.faq-answer {
  color: #4AC1BF;
  font-size: 1rem;
  padding-left: 2px;
}
input[type="search"] {
  padding: 10px 18px;
  border-radius: 24px;
  border: 1.5px solid #FFD54C;
  font-size: 1rem;
  margin-bottom: 24px;
  width: 100%;
  max-width: 400px;
  transition: border-color 0.14s;
  background: #FFF;
}
input[type="search"]:focus {
  border-color: #4AC1BF;
}


/* =====================
   CONTACT PAGE
   ===================== */
.contact-details {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.15rem;
  color: #2B324A;
}
.contact-details img {
  width: 23px;
  height: 23px;
}
.map-embed {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  background: #fff;
  padding: 18px 14px;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(75,49,74, 0.08);
  margin-bottom: 15px;
}
.map-embed img {
  width: 34px;
  height: 34px;
}


/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2B324A;
  color: #fff;
  box-shadow: 0 -7px 40px 0 rgba(44,199,190,0.10);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 22px 18px;
  font-size: 1.05rem;
  border-radius: 30px 30px 0 0;
  animation: cookieBannerIn 0.33s cubic-bezier(.12,.64,.27,1.45);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(75px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 26px;
  background: #FFD54C;
  color: #2B324A;
  border: none;
  border-radius: 20px;
  margin-right: 13px;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  outline: none;
  box-shadow: 0 2px 6px 0 rgba(44,199,190,0.12);
}
.cookie-banner button:last-child {
  margin-right: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #4AC1BF;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #4AC1BF;
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #FFD54C;
  color: #2B324A;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,199,190,0.36);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalOverlayIn 0.3s;
}
@keyframes modalOverlayIn {
  0% { background: rgba(44,199,190,0.0); }
  100% { background: rgba(44,199,190,0.36); }
}
.cookie-modal {
  background: #FFFDF6;
  color: #2B324A;
  border-radius: 25px;
  box-shadow: 0 7px 52px 0 rgba(43,50,74,0.20);
  width: 98vw;
  max-width: 400px;
  padding: 36px 30px 26px 30px;
  z-index: 3020;
  animation: cookieModalIn 0.31s cubic-bezier(.05,.9,.66,1.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: scale(0.92) translateY(50px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-size: 1.45rem;
  color: #2B324A;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #FFD54C;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #FFD54C;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
  margin-left: 10px;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2.2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s, background 0.12s;
  box-shadow: 0 1px 3px 0 rgba(44,199,190,0.08);
}
.cookie-toggle input:checked + span {
  left: 20px;
  background: #4AC1BF;
}

.cookie-modal .save-cookies-btn,
.cookie-modal .close-cookies-btn {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
  font-size: 1.03rem;
  background: #4AC1BF;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 10px 24px;
  margin-right: 8px;
  margin-top: 13px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 1.5px 6px 0 rgba(76,192,191,0.09);
}
.cookie-modal .close-cookies-btn {
  background: #FFD54C;
  color: #2B324A;
}
.cookie-modal .save-cookies-btn:hover {
  background: #2B324A;
}
.cookie-modal .close-cookies-btn:hover {
  background: #4AC1BF;
  color: #fff;
}


/* =====================
   CALL TO ACTION PRICING
   ===================== */
.service-price, .course-price {
  color: #2B324A;
  font-size: 1.07rem;
  font-weight: bold;
  background: #FFD54C;
  border-radius: 14px;
  padding: 3px 10px;
  margin-top: 5px;
  display: inline-block;
  letter-spacing: 0.03em;
}

/* =====================
   RESPONSIVE LAYOUT
   ===================== */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .service-card, .feature-item, .card, .course-item, .step {
    min-width: 180px;
  }
  .testimonial-card {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper, .feature-grid, .services-grid, .steps-preview, .testimonials-slider, .courses-list {
    flex-direction: column!important;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px;
  }
  header, .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 10px;
    min-height: 60px;
  }
  .logo {
    height: 48px;
    margin: 0 0 9px 0;
  }
  .logo img { height: 40px; }
  .main-nav, header .cta-btn { display: none!important; }
  .mobile-menu-toggle {
    display: flex!important;
    position: absolute;
    right: 18px;
    top: 13px;
    z-index: 120;
  }
  .section, main section {
    margin-bottom: 44px;
    padding: 22px 6px;
    border-radius: 16px;
  }
  .feature-item,
  .service-card,
  .course-item,
  .testimonial-card,
  .step {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
    padding: 14px 9px;
  }
  footer {
    border-radius: 23px 23px 0 0;
    margin-top: 29px;
    padding: 30px 0 12px 0;
  }
  .footer-nav {
    gap: 16px;
    margin-bottom: 13px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-info {
    gap: 4px;
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .cookie-modal {
    max-width: 94vw;
    padding: 26px 7px 18px 7px;
    border-radius: 14px;
  }
  .testimonial-card { padding: 12px 8px; }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    font-size: 1rem;
    padding: 16px 4px;
  }
  .cookie-modal {
    padding: 18px 4px;
  }
  .testimonial-card, .feature-item, .service-card, .course-item {
    padding: 10px 4px;
  }
}

/* =====================
   ANIMATIONS & ACCENTS
   ===================== */
.section, .feature-item, .service-card, .testimonial-card, .step, .faq-item {
  animation: bounceInUp 0.77s backwards cubic-bezier(.36, .67, .83, .67);
}
@keyframes bounceInUp {
  0% { opacity: 0; transform: translateY(58px) scale(.97); }
  70% { opacity: 0.7; transform: translateY(-18px) scale(1.03); }
  100% { opacity: 1; transform: none; }
}

/* =====================
   FUN PLAYFUL DECORATIVE DOTS (authentic to playful_dynamic)
   ===================== */
.section::after,
.feature-item::after,
.service-card::after {
  content: '';
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 40px;
  height: 18px;
  background: url('../assets/icons/icon-burst.svg'), linear-gradient(90deg, #FFD54C 35%, #4AC1BF 100%);
  background-size: 28px auto, cover;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.14;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 700px) {
  .section::after, .feature-item::after, .service-card::after {
    width: 22px; height: 8px; right: 8px; bottom: 4px; background-size: 14px auto, cover;
  }
}

/* =====================
   UTILITY CLASSES & MISC
   ===================== */
.bg-primary {
  background: #2B324A!important; color: #fff!important;
}
.bg-accent {
  background: #4AC1BF!important; color: #fff!important;
}
.bg-secondary {
  background: #FFD54C!important; color: #2B324A!important;
}
.text-primary { color: #2B324A!important; }
.text-secondary { color: #FFD54C!important; }
.text-accent { color: #4AC1BF!important; }
.flex {
  display: flex;
}
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.w-100 { width: 100%!important; }


/* =====================
   UNIQUE TYPOGRAPHY FOR PLAYFUL DYNAMIC STYLE
   ===================== */
body, .text-section, .card-content, .feature-item, .service-card, .testimonial-card {
  font-family: 'Roboto', 'Montserrat', Arial, sans-serif;
}
h1, h2, h3, .cta-btn, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Comic Sans MS', Arial, sans-serif;
}

/* =====================
  ACCESSIBLE FOCUS STATES
   ===================== */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2.5px solid #FFD54C;
  outline-offset: 2.5px;
  z-index: 100;
  position: relative;
}


/* =====================
   PRINT STYLES
   ===================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none!important; }
  .container, main { width: 100%!important; max-width: none!important; }
}
