/* === CSS RESET/BASE === */
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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  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: #fff;
  color: #222;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1C3144;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover,
a:focus {
  color: #F3B61F;
}
ul {
  list-style: none;
  padding-left: 0;
}

:root {
  --primary: #1C3144;
  --secondary: #F3B61F;
  --accent: #E1E8ED;
  --danger: #F96464;
  --success: #36D399;
  --neutral-dark: #232C33;
  --neutral-light: #F5FAFF;
  --shadow: 0 3px 16px rgba(28,49,68,0.09);

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--neutral-light);
  font-family: var(--font-body);
  color: var(--neutral-dark);
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}


/* ==== TYPOGRAPHY ==== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -1.5px;
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 2rem; }
}
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.25em;
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.2em;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
}
p, li, span, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-dark);
}
strong, b {
  font-weight: bold;
}

/* === FLEX LAYOUTS & SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 25px 10px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(28,49,68,0.20);
  transform: translateY(-2px) scale(1.018);
}
.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;
}
@media (max-width:768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 32px;
  margin-bottom: 24px;
  transition: box-shadow 0.22s, transform 0.2s;
  border-left: 6px solid var(--secondary);
  min-width: 0;
  max-width: 740px;
  width: 100%;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: #202429;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--primary);
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(243,182,31,0.15), var(--shadow);
  transform: scale(1.013);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 20px 22px 20px;
  min-width: 222px;
  max-width: 310px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.2s;
}
.feature-item img {
  width: 36px; height: 36px; margin-bottom: 6px;
}
.feature-item h3 {
  color: var(--secondary);
  font-size: 1.125rem;
  font-weight: bold;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 7px 24px rgba(28,49,68,0.18);
  transform: translateY(-5px);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}

@media (max-width:900px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
  }
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-item {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  border-left: 5px solid var(--secondary);
  transition: box-shadow 0.17s, transform 0.2s;
}
.service-item img {
  width: 33px; height: 33px;
}
.service-item h2 {
  font-size: 1.225rem;
  color: var(--secondary);
  font-weight: bold;
}
.service-item .service-price {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 7px;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 25px rgba(243,182,31,0.13), var(--shadow);
  transform: scale(1.012);
}

.courses-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 34px;
  margin-bottom: 28px;
}
@media (max-width:700px) {
  .courses-cta { flex-direction: column; align-items: stretch; }
}


/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0 0 4px 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 7px 24px 7px 24px;
  min-height: 78px;
  position: relative;
}
header img {
  height: 44px; width: auto;
  margin-right: 16px;
}
nav.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  border-radius: 9px;
  padding: 8px 14px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.14s;
  text-shadow: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFC83A;
  color: #1a242e;
  box-shadow: 0 7px 27px rgba(243,182,31,0.17), var(--shadow);
  transform: scale(1.045);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.18s, color 0.15s, box-shadow 0.2s, transform 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #25445f;
  color: var(--secondary);
  box-shadow: 0 7px 18px #1C314422, var(--shadow);
  transform: scale(1.037);
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.06rem;
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(243,182,31,.09);
  z-index: 130;
  transition: background 0.17s, color 0.14s, transform 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD651;
  color: #26394a;
  transform: scale(1.11) rotate(11deg);
}

@media (max-width: 1020px) {
  nav.main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 12px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}


/* === MOBILE FULL-SCREEN MENU === */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffffee;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.7,0.3,0.2,1);
  box-shadow: -2px 0 24px rgba(28,49,68,0.10);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 12px 0;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 10001;
  transition: color 0.17s, transform 0.16s;
  border-radius: 100px;
  padding: 8px 16px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  background: var(--accent);
  transform: scale(1.23) rotate(-12deg);
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  align-items: flex-start;
  margin-top: 15px;
  padding-left: 48px;
}
nav.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.31rem;
  color: var(--primary);
  padding: 6px 14px 8px 0;
  border-radius: 12px;
  transition: color 0.16s, background 0.15s;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}
@media (max-width:550px) {
  nav.mobile-nav {
    padding-left: 20px;
  }
}


/* === HERO SECTION === */
.hero {
  background: linear-gradient(98deg, #F3B61F 0%, #E1E8ED 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 70px 0 50px 0;
  position: relative;
  box-shadow: 0 12px 40px #1C314409, 0 1.5px 0 #F3B61F44;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  font-size: 2.95rem;
  font-weight: 900;
  color: #1C3144;
  letter-spacing: -2px;
  line-height: 1.12;
}
.hero p {
  color: #232C33;
  font-size: 1.23rem;
  font-weight: 500;
  margin-top: 2px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .hero {
    min-height: 240px;
    padding: 40px 0 28px 0;
    border-radius: 0 0 27px 27px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}


/* === FEATURES / CARDS / ABOUT / ACTIONS === */
.about-home, .about-intro {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.about-home .container, .about-intro .container {
  padding: 28px 16px 32px 16px;
}
.features {
  background: var(--accent);
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding-top: 35px;
}
.cta-section {
  background: var(--secondary);
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.cta-section .btn-primary {
  background: var(--primary);
  color: #fff;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #253547;
  color: var(--secondary);
}

/* === PRICING TABLE === */
.pricing-section {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: none;
  margin: 34px 0 20px 0;
}
.pricing-table th, .pricing-table td {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary);
  background: #F9FAFB;
  padding: 18px 16px;
  border-radius: 10px;
  text-align: left;
  border-bottom: 2px solid #E1E8ED;
}
.pricing-table th {
  background: var(--accent);
  color: #1C3144;
  font-size: 1.17rem;
  text-shadow: none;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-notes {
  margin: 21px 0 22px 0;
  font-size: 1.01rem;
  color: #404d59;
}


/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background: var(--accent);
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.testimonials-section .content-wrapper {
  align-items: center;
  gap: 32px;
}
.testimonial-stats {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin: 20px 0 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.testimonial-stats h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: bold;
}
.testimonial-stats ul li {
  font-size: 1rem;
  color: #263953;
  margin-left: 16px;
  position: relative;
}

/* DARK TEXT ON LIGHT TESTIMONIALS */
.testimonials-section .testimonial-card,
.testimonial-card,
.testimonial-stats {
  color: #232C33;
  background: #fff;
}

/* === CONTACT PAGE === */
.contact-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.contact-section ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 14px;
  margin-bottom: 24px;
}
.contact-section ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.contact-section ul img {
  width: 24px; height: 24px;
  margin-right: 6px;
}
.map-placeholder {
  border-radius: 10px;
  color: #1C3144;
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 26px;
  box-shadow: var(--shadow);
}


/* === FOOTER === */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 8px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}
.footer-brand img {
  height: 36px; width: auto;
  margin-bottom: 12px;
}
.footer-links, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--secondary);
}
.footer-contact p {
  font-size: 0.98rem;
  color: #fff;
  opacity: 0.93;
}
.footer-social {
  flex-direction: row;
  gap: 15px;
}
.footer-social a img {
  height: 30px; width: 30px;
  transition: filter 0.13s, transform 0.13s;
  filter: grayscale(12%) brightness(98%);
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(114%) saturate(120%);
  transform: scale(1.13) rotate(-10deg);
}
.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 12px;
}
.footer-copy p {
  font-size: 0.93rem;
  color: #d3dae1;
  letter-spacing: 0.04em;
}

@media (max-width:893px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* === PRIVACY, TERMS, POLICY PAGES === */
.privacy-policy-section, .gdpr-section, .cookies-policy-section, .terms-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* === THANK YOU PAGE === */
.thank-you-section {
  background: var(--accent);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}


/* === ANIMATIONS & MICROINTERACTIONS === */
@keyframes playful-bounce {
  0% { transform: scale(1); }
  60% { transform: scale(1.12) rotate(-3deg); }
  73% { transform: scale(0.97) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}
.btn-primary:hover, .btn-secondary:hover {
  animation: playful-bounce 0.43s cubic-bezier(0.4,1,0.6,1) 1;
}
.feature-item:hover img, .service-item:hover img {
  animation: playful-bounce 0.52s cubic-bezier(0.4,1,0.6,1) 1;
}

/* Animated hover for cards */
.card:hover::before, .feature-item:hover::before, .service-item:hover::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border-radius: 20px;
  box-shadow: 0 0 0 4px #ffe56c55;
  z-index: 0;
  pointer-events: none;
  animation: playful-bounce 0.35s cubic-bezier(.4,1,0.6,1) 1;
}

/* Fun, playful font for headings */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

/* === RESPONSIVE DESIGN === */
@media (max-width:900px) {
  .container {
    max-width: 98vw;
    padding-left: 7px; padding-right: 7px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 160px;
  }
}
@media (max-width:600px) {
  .container {
    padding: 0 3vw;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width:540px) {
  .card,
  .feature-item,
  .service-item,
  .testimonial-card {
    padding: 18px 8px;
  }
}


/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 13000;
  background: #fff;
  box-shadow: 0 -3px 34px #1C314419;
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookie-banner-in 0.47s cubic-bezier(.46,1.6,.7,1) 1;
  transition: bottom 0.3s;
}
@keyframes cookie-banner-in {
  0% { transform: translateY(140%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 13px;
  padding: 9px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn--accept {
  background: var(--success);
  color: var(--primary);
  margin-right: 4px;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #2eb781;
  color: #fff;
}
.cookie-btn--reject {
  background: var(--danger);
  color: #fff;
  margin-right: 4px;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #f32d2d;
}
.cookie-btn--settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 14px 5vw 10px 5vw;
  }
  .cookie-banner__actions {
    flex-direction: row;
    justify-content: flex-end;
    gap: 9px;
  }
}


/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,49,68,0.22);
  z-index: 14999;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.28s cubic-bezier(.4,1,0.6,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 30px 30px 30px;
  border-radius: 19px;
  box-shadow: 0 4px 46px #1C31441a, var(--shadow);
  width: 96vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: cookie-modal-content-in 0.37s cubic-bezier(.4,1,0.6,1);
}
@keyframes cookie-modal-content-in {
  0% { transform: scale(0.93) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-header {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.27rem;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  width: 22px; height: 22px;
  accent-color: var(--secondary);
}
.cookie-category label {
  font-size: 1rem;
  color: var(--primary);
  font-family: var(--font-body);
}
.cookie-category--essential label {
  color: var(--primary);
  font-weight: 600;
  opacity: 0.87;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 11px;
  justify-content: flex-end;
}

/* === PLAYFUL DECORATIVE EFFECTS === */
@keyframes wavy {
  0%,100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-4deg) scale(1.012); }
  50% { transform: rotate(4deg) scale(1.024); }
  75% { transform: rotate(-2deg) scale(0.99); }
}
.hero h1, .thank-you-section h1 {
  animation: wavy 3.5s infinite alternate ease-in-out;
}
.cta-section h2 {
  animation: wavy 2.7s infinite alternate-reverse linear;
}

/* === UTILITY === */
.hide {
  display: none !important;
}

/* End of Speakway Academy playful dynamic flex CSS */
