/* 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,
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: #F3F4F7;
  color: #253772;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F7A43C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #253772;
}

::-webkit-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::placeholder { color: #999; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');
h1, h2, h3, .cta-button, .subscribe-form label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.17;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 1.65rem;
  line-height: 1.20;
  margin-bottom: 18px;
  color: #253772;
  letter-spacing: 0.018em;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.27;
  margin-bottom: 10px;
  color: #F7A43C;
  letter-spacing: 0.015em;
}
.subheadline {
  color: #253772;
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

strong {
  color: #253772;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX: card-layouts, feature-grids, content-grids */
.program-list, .feature-grid, .feature-list, .testimonial-slider, .testimonial-grid, .card-container, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 16px 0 rgba(37,55,114,0.08);
  border-radius: 20px;
  background: #fff;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(37,55,114,0.12);
  transform: translateY(-6px) scale(1.018);
}

/* HERO SECTION */
.hero {
  padding: 50px 0 50px 0;
  background: #F7A43C;
  background-blend-mode: multiply;
  color: #253772;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #253772;
  text-shadow: 1px 2px 0 #fff6d8;
  font-weight: 900;
}
.hero .cta-button {
  margin-top: 20px;
}
.hero .subheadline {
  color: #253772;
  font-size: 1.13rem;
  letter-spacing: 0.01em;
  text-shadow: none;
}

/* BUTTONS & CTA STYLES */
.cta-button, .subscribe-form button, .cookie-banner-btn, .cookie-banner-btn:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  display: inline-block;
  padding: 13px 36px;
  border-radius: 30px;
  background: #253772;
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px 0 rgba(247,164,60,0.08);
  margin-top: 5px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus, .subscribe-form button:hover, .subscribe-form button:focus, .cookie-banner-btn:hover {
  background: #F7A43C;
  color: #253772;
  box-shadow: 0 8px 28px 0 rgba(247,164,60,0.16);
  transform: scale(1.06);
}
.cta-button:active {
  transform: scale(0.96);
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 15px 0;
}
.feature {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(37,55,114,0.08);
  padding: 24px 20px 18px 20px;
  flex: 1 1 200px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.1rem;
  color: #F7A43C;
  margin-bottom: 6px;
}

/* SERVICE CARDS */
.service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 8px 0 rgba(37,55,114,0.07);
  flex: 1 1 240px;
  min-width: 200px;
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.service-card h3 {
  color: #253772;
  font-size: 1.09rem;
  margin-bottom: 4px;
}
.service-card .price {
  color: #F7A43C;
  font-weight: 700;
  font-size: 1.02rem;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

/* TESTIMONIAL CARDS */
.testimonial-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 26px 22px 22px;
  min-width: 250px;
  background: #fff;
  color: #253772;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(37,55,114,0.09);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #F7A43C;
  font-weight: 700;
}
.star-rating {
  color: #F7A43C;
  font-size: 1.16rem;
  letter-spacing: 1px;
  margin-left: 2px;
}

/* TABLES */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 6px 0 rgba(37,55,114,0.05);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 11px 15px;
  border-bottom: 1px solid #F3F4F7;
}
.pricing-table th {
  background: #F7A43C;
  color: #253772;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-align: left;
}
.pricing-table td {
  background: #fff;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* CHECKMARKS, ICON ROWS, LISTS */
.feature-list ul, .creativity-benefits ul, .workshop-features ul, .class-highlights ul, .follow-up-steps ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.feature-list ul li::before, .creativity-benefits ul li::before, .workshop-features ul li::before, .class-highlights ul li::before, .follow-up-steps ul li::before {
  content: '✨';
  color: #F7A43C;
  margin-right: 9px;
  font-size: 0.99em;
}
ul {
  margin-bottom: 16px;
}

/* SUBSCRIBE FORM */
.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  align-items: center;
}
.subscribe-form label {
  font-size: 1.01rem;
  color: #253772;
  font-weight: 700;
  margin-right: 10px;
}
.subscribe-form input[type=email] {
  padding: 12px 14px;
  border-radius: 24px;
  border: 1.5px solid #F7A43C;
  font-size: 1rem;
  outline: none;
  margin-right: 8px;
}
.subscribe-form button {
  background: #F7A43C;
  color: #253772;
  transition: background 0.25s, color 0.25s, transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 9px 0 rgba(253,183,86,0.09);
}
.subscribe-form button:hover, .subscribe-form button:focus {
  background: #253772;
  color: #fff;
}

/* FOOTER */
footer {
  background: #253772;
  color: #fff;
  padding: 36px 0 22px 0;
  font-size: 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav a {
  color: #F7A43C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.legal-info {
  color: #FFE2B1;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 4px;
}

/* MOBILE NAVIGATION (BURGER MENU) */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #253772;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  transition: color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F7A43C;
  text-decoration: underline;
}
.mobile-menu-toggle {
  display: none;
  background: #F7A43C;
  color: #253772;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #253772;
  color: #F7A43C;
  transform: scale(1.08);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1099;
  background: #253772;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.67,0,0.3,1);
  box-shadow: 2px 0 38px 0 rgba(37,55,114,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(0.67,0,0.3,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 20px 22px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 1010;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 18px 0 0 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  padding: 13px 0;
  transition: color 0.14s, background 0.18s;
  border-radius: 8px;
  margin-right: 0;
  margin-bottom: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7A43C;
  background: rgba(255,255,255,0.10);
}

/* LOGO */
.logo img {
  height: 51px;
  width: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Responsive spacing for sections */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  color: #253772;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* VISUAL ACCENTS, ANIMATIONS */
.card, .feature, .service-card, .testimonial-card {
  animation: fadeUp 0.48s cubic-bezier(0.5,0,0,1.2) both;
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  60% { opacity: 0.8; transform: translateY(8px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-button {
  animation: popIn 0.45s .1s cubic-bezier(0.48, 0.1, 0.21, 1.4) both;
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.86); }
  75% { opacity: 1; transform: scale(1.04);}
  100% { opacity: 1; transform: scale(1);}
}

/* TABLETS & DESKTOP: LAYOUT ADAPTATION */
@media (min-width: 769px) {
  .content-wrapper {
    flex-direction: column;
    gap: 34px;
  }
  .feature-grid, .program-list, .testimonial-slider, .testimonial-grid, .card-container, .service-list {
    flex-direction: row;
  }
  .feature-grid, .program-list, .testimonial-slider {
    justify-content: flex-start;
  }
  .feature {
    max-width: 280px;
  }
  .service-card {
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 295px;
  }
  .testimonial-card {
    min-width: 320px;
    max-width: 410px;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
  }
  .subscribe-form {
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: flex !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* MOBILE FIRST: MOBILE NAV */
@media (max-width: 968px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 38px 0;
    font-size: 1rem;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .feature-grid, .program-list, .testimonial-slider, .testimonial-grid, .card-container, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .service-card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .cta-button, .subscribe-form button {
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-content {
    gap: 16px;
    align-items: flex-start;
  }
}

/* FLEX-SPACING CLASSES (required) */
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe7;
  color: #253772;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 24px;
  box-shadow: 0 -2px 32px 0 rgba(37,55,114,0.10);
  animation: slideUpBanner 0.45s cubic-bezier(0.5,0.7,0.2,1.1) both;
}
@keyframes slideUpBanner {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner-text {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 500px;
}
.cookie-banner-btn {
  margin-left: 10px;
  margin-right: 0;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  background: #F7A43C;
  color: #253772;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(247,164,60,0.12);
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: #253772;
  color: #FFFBE7;
}
.cookie-banner-btn.outline {
  background: #fff;
  color: #F7A43C;
  border: 2px solid #F7A43C;
}
.cookie-banner-btn.outline:hover, .cookie-banner-btn.outline:focus {
  background: #F7A43C;
  color: #fff;
}
/* Hide cookie banner on desktop if dismissed */
.cookie-banner.hide {
  display: none !important;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0; top:0; right:0; bottom:0;
  background: rgba(41,41,61,0.42);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeModal 0.23s both;
}
@keyframes fadeModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 430px;
  width: 90%;
  padding: 42px 28px 28px 28px;
  box-shadow: 0 4px 40px 0 rgba(37,55,114,0.19);
  color: #253772;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  font-size: 1.04rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.7rem;
  color: #F7A43C;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: bold;
  color: #253772;
  margin-right: 6px;
}
.cookie-toggle {
  accent-color: #F7A43C;
  width: 18px;
  height: 18px;
}
.cookie-category .essential {
  color: #888;
  font-style: italic;
  font-weight: 400;
}
/* Cookie modal accept/reject/save buttons */
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-banner-btn {
  padding: 10px 24px;
  font-size: 1rem;
}

/* THANK YOU PAGE */
.thank-you {
  min-height: 40vh;
  padding: 42px 0 38px 0;
  background: #F3F4F7;
}
.thank-you .confirmation-message {
  color: #253772;
  font-size: 1.21rem;
  margin: 18px 0 14px 0;
}
.follow-up-steps ul {
  gap: 8px;
}

/* Responsive adjustments for banner and modal */
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 9px;
  }
  .cookie-modal {
    width: 99%;
    max-width: 99vw;
    padding: 25px 9px 18px 9px;
  }
  .cookie-modal-actions {
    gap: 10px;
  }
}

/* --- DYNAMIC & PLAYFUL ACCENTS --- */
.card, .feature, .service-card, .testimonial-card, .footer-logo img, .hero {
  border-radius: 20px;
}
.feature, .service-card, .testimonial-card {
  box-shadow: 0 3px 12px 0 rgba(253,183,86,0.055), 0 1.5px 12px 0 rgba(37,55,114,0.06);
}
.card:before, .feature:before, .service-card:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  right: -18px;
  width: 26px;
  height: 26px;
  background: #F7A43C;
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  opacity: 0.16;
  z-index: 0;
  animation: playful-pulse 2.3s infinite cubic-bezier(0.32,0,0.67,1.4);
}
@keyframes playful-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  45% { transform: scale(1.15) rotate(16deg); }
  70% { transform: scale(0.93) rotate(-8deg); }
}

/* BRAND COLOR BADGES/ACCENTS */
.program-list .service-card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  left: -14px;
  bottom: -14px;
  width: 21px;
  height: 21px;
  background: #253772;
  border-radius: 50%;
  opacity: 0.09;
  z-index: 1;
}

/* ACCESSIBLE FOCUS */
:focus {
  outline: 2.5px dashed #F7A43C;
  outline-offset: 2px;
}

/* VISUAL HIERARCHY: HEADERS, SPACING */
@media (min-width: 1024px) {
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.05rem; }
  h3 { font-size: 1.17rem; }
}

/* MISC */
.privacy-note {
  margin-bottom: 13px;
  font-size: 1rem;
  background: #FFFBE7;
  border-radius: 10px;
  padding: 13px 19px;
}
.thank-you-link { margin-bottom: 12px; }
.benefits-icons {
  display: flex;
  gap: 18px;
  margin: 14px 0;
}
.benefits-icons img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(247,164,60,0.08));
}
/***** END OF CSS *****/
