/* ========== CSS RESET AND 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, main, 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;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FFFFFF;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2E3440;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img, svg {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #4B1F8A;
  transition: color 0.18s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #D8DEE9;
  background: #4B1F8A;
  border-radius: 8px;
}
ol, ul {
  list-style: none;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ========== FONT FAMILY and HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #2E3440;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.13;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #3a4356;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #4B1F8A;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F6FF;
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(75,31,138,0.05);
  position: relative;
  animation: fadeInUp 0.8s cubic-bezier(.41,.74,.32,1.01) both;
}
main > section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
/* playful :: add colored dots */
.section:before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FEC260;
  position: absolute;
  left: -16px;
  top: -16px;
  z-index: 1;
  box-shadow: 0 8px 32px 0 rgba(254,194,96,0.23);
}
.section:after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7FE7CC;
  position: absolute;
  right: -12px;
  bottom: -12px;
  z-index: 1;
  box-shadow: 0 6px 24px 0 rgba(127,231,204,0.13);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px 0 rgba(75,31,138,0.08);
  border: 2.5px solid #7FE7CC;
  position: relative;
  min-width: 0;
  max-width: 600px;
  z-index: 2;
  animation: cardAppear .6s cubic-bezier(.41,.74,.32,1.01) both;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #222;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #6F3CC2;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFFFF;
  border-radius: 15px;
  padding: 26px 18px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #FEF7F2;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(255,193,96,0.11);
  padding: 24px 18px;
  flex: 1 1 min(250px, 100%);
  min-width: 200px;
  max-width: 260px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.features-grid > div:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1.2deg);
  box-shadow: 0 12px 32px 0 rgba(75,31,138,0.19), 0 1.2px 2px rgba(0,0,0,0.02);
  background: #F4E4FC;
}
.features-grid img {
  width: 49px;
  height: 49px;
  margin-bottom: 9px;
  filter: drop-shadow(0 2px 8px #7FE7CC88);
  animation: playfulIcon 1.4s infinite alternate cubic-bezier(.41,.74,.32,1.01);
}
@keyframes playfulIcon {
  from { transform: rotate(-8deg) scale(0.93); }
  to   { transform: rotate(6deg) scale(1.11); }
}

/* ========== MAIN NAVIGATION ========== */
header {
  width: 100%;
  background: #2E3440;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px 0 rgba(44,36,89,0.08);
}
.main-nav {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  padding: 0 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
}
.main-nav > a {
  padding: 6px 16px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9px;
  transition: background 0.18s;
  position: relative;
  line-height: 1;
}
.main-nav > a:not(:first-child):hover {
  background: #4B1F8A;
  color: #FFE48B;
  box-shadow: 0 2px 10px #7FE7CC30;
}
.main-nav img {
  height: 44px;
  margin-right: 12px;
  vertical-align: middle;
}
.primary-cta {
  display: inline-block;
  background: #FEC260;
  color: #2E3440 !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 26px;
  padding: 10px 30px 10px 30px !important;
  margin-left: 16px;
  box-shadow: 0 7px 24px 0 rgba(254,194,96,0.13);
  letter-spacing: .04em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform .15s;
  position: relative;
}
.primary-cta:hover, .primary-cta:focus {
  background: #4B1F8A;
  color: #FFE48B !important;
  transform: scale(1.03) rotate(-2.5deg);
  box-shadow: 0 10px 32px 0 rgba(75,31,138,.21);
}
.secondary-cta {
  display: inline-block;
  background: #4B1F8A;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  padding: 8px 26px;
  margin-top: 8px;
  box-shadow: 0 3px 13px 0 rgba(75,31,138,0.09);
  letter-spacing: .02em;
  transition: background .19s, color .19s, transform .13s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #FEC260;
  color: #2E3440;
  transform: scale(1.02) rotate(2deg);
}

/* ========== MOBILE MENU BURGER ========== */
.mobile-menu-toggle {
  display: none;
  background: #FEC260;
  color: #2E3440;
  border-radius: 50%;
  padding: 12px;
  font-size: 1.4rem;
  margin: 0 20px 0 auto;
  border: none;
  z-index: 51;
  box-shadow: 0px 3px 18px 0 rgba(254,194,96,0.17);
  transition: box-shadow 0.19s;
}
.mobile-menu-toggle:active {
  box-shadow: 0 3px 16px 0 #4B1F8A30;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #2E3440;
  color: #FFFFFF;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.38s cubic-bezier(.41,.74,.32,1.01);
  transform: translateX(-110%);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 28px 16px 0;
  background: #FEC260;
  color: #2E3440;
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1005;
  box-shadow: 0 2px 16px 0 #FEC26035;
}
.mobile-nav {
  padding: 30px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 13px 8px;
  transition: background .18s, transform .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4B1F8A;
  color: #FEC260;
  transform: scale(1.05) rotate(-2deg);
}

/* ========== FOOTER ========== */
footer {
  background: #2E3440;
  color: #FFF;
  padding: 36px 0px 12px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 28px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #FEC260;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border-radius: 6px;
  padding: 7px 13px;
  transition: background 0.15s;
}
.footer-nav a:hover {
  background: #4B1F8A;
  color: #FFF;
}
footer .text-section {
  align-items: center;
  text-align: center;
  color: #D8DEE9;
  font-size: 0.98rem;
  margin-top: 0;
}

/* ========== BLOCKQUOTE STYLE ========== */
blockquote {
  border-left: 5px solid #FEC260;
  background: #FFF9EB;
  color: #4B1F8A;
  font-style: italic;
  padding: 18px 18px 18px 28px;
  margin: 12px 0 0 0;
  border-radius: 12px;
  font-size: 1.08rem;
}
blockquote span {
  display: block;
  color: #2E3440;
  font-weight: 600;
  font-style: normal;
  margin-top: 7px;
  font-size: .97rem;
}

/* ========== LISTS and DETAILS ========== */
ul, ol {
  list-style-type: disc;
  padding-left: 23px;
  margin-bottom: 12px;
  color: #444;
}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 7px;
  padding-left: 0.5em;
}
li span {
  font-size: 0.97rem;
  color: #7b16e9;
}
ul li img, ol li img {
  margin-right: 0.6em;
  margin-bottom: -5px;
  vertical-align: middle;
  height: 22px;
}

/* ========== BUTTONS ========== */
button, .primary-cta, .secondary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
}

/* ========== ANIMATION KEYFRAMES ========== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes cardAppear {
  0% { opacity: 0; transform: scale(0.94) translateY(30px); }
  93% { transform: scale(1.04) translateY(-6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ========== GENERAL PLAYFUL ENERGY + COLORFULLY ========== */
body {
  background: #F7F6FF;
}
.section, .features-grid > div, .testimonial-card, .feature-item {
  /* playful shadow */
  box-shadow: 0 3px 18px 0 rgba(75,31,138,0.11);
}
.section h1, .section h2 {
  color: #4B1F8A;
}
.features-grid > div h3 {
  color: #2E3440;
}
.features-grid > div strong, .testimonial-card strong {
  color: #4B1F8A;
}

/* ========== UTILITY CLASSES ========== */
.d-none { display: none !important; }
.text-center { text-align: center !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mr-20 { margin-right: 20px !important; }
.gap-24 { gap: 24px !important; }

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #FFFFFF;
  color: #2E3440;
  z-index: 1600;
  box-shadow: 0 -4px 18px 0 #4B1F8A10;
  padding: 18px 18px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  font-size: 1rem;
  animation: fadeInUp 0.6s;
}
.cookie-banner p {
  flex: 2;
  font-size: 1rem;
  margin-bottom: 0;
  color: #4B1F8A;
}
.cookie-banner .cookie-btn {
  background: #4B1F8A;
  color: #FFF;
  border-radius: 9px;
  font-size: 1rem;
  margin-left: 12px;
  padding: 9px 21px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .16s, transform .16s;
}
.cookie-banner .cookie-btn.cookie-accept {
  background: #7FE7CC;
  color: #2E3440;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #FEC260;
  color: #2E3440;
}
.cookie-banner .cookie-btn:hover {
  box-shadow: 0 1.5px 10px #4B1F8A13;
  background: #2E3440;
  color: #FEC260;
  transform: scale(1.08) rotate(-2deg);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #F7F6FF;
  color: #4B1F8A;
  border-radius: 9px;
  border: 1.5px solid #7FE7CC;
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: #7FE7CC;
  color: #2E3440;
}
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px 6px 14px 6px;
  }
  .cookie-banner .cookie-btn { margin-left: 0; }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  position: fixed;
  z-index: 1700;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,36,65,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s cubic-bezier(.41,.74,.32,1.01);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 19px;
  padding: 30px 22px 26px 22px;
  max-width: 360px;
  width: 96vw;
  box-shadow: 0 6px 30px 0 #4B1F8A25;
  box-sizing: border-box;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2E3440;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cardAppear .5s;
}
.cookie-modal-content h3 {
  font-size: 1.31rem;
  margin-bottom: 8px;
  text-align: center;
  color: #4B1F8A;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 7px 0;
}
.cookie-modal-content .cookie-category input[type='checkbox'] {
  appearance: none;
  width: 22px; height: 22px;
  border: 2.5px solid #4B1F8A;
  border-radius: 7px;
  margin: 0;
  cursor: pointer;
  transition: background 0.13s;
  position: relative;
  background: #EDEAF7;
}
.cookie-modal-content .cookie-category input[type='checkbox']:checked {
  background: #7FE7CC;
  border: 2.5px solid #7FE7CC;
}
.cookie-modal-content .cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal-content .cookie-category .locked {
  color: #AAA;
  font-size: 0.93rem;
}
.cookie-modal-content .cookie-close {
  align-self: center;
  background: #FEC260;
  color: #2E3440;
  border: none;
  border-radius: 12px;
  padding: 8px 24px;
  margin-top: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal-content .cookie-save {
  background: #4B1F8A;
  color: #FFF;
  margin-left: 7px;
  border-radius: 12px;
  padding: 8px 24px;
  font-weight: 600;
}
.cookie-modal-content .cookie-save:hover {
  background: #7FE7CC;
  color: #2E3440;
}

/* ========== RESPONSIVE LAYOUTS ========== */
@media (max-width: 1150px) {
  .container {
    max-width: 94vw;
    padding: 0 8px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    padding: 0 6px;
    gap: 2px;
  }
  .features-grid > div {
    max-width: 48vw;
  }
}
@media (max-width: 768px) {
  .main-nav > a:not(:first-child),
  .main-nav .primary-cta { display: none; }
  .mobile-menu-toggle { display: block !important; }
  
  .container {
    padding-left: 3vw; padding-right: 3vw;
  }
  .section {
    padding: 27px 6px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
  .content-wrapper { gap: 16px; }
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid > div {
    min-width: 0;
    max-width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 15px 5px;
    border-radius: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 3px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.12rem; }
  .section { padding: 15px 2vw; margin-bottom: 26px; border-radius: 8px; }
  .container { padding-left: 5px; padding-right: 5px; }
  .features-grid > div, .feature-item, .testimonial-card { padding: 12px 4px; border-radius: 8px; }
}

/* ========== FORM ELEMENTS (if any, basic stylings) ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background: #FFF;
  color: #2E3440;
  border-radius: 8px;
  border: 1.8px solid #4B1F8A;
  padding: 12px 12px;
  margin-bottom: 11px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.12s, border-color 0.12s;
}
input:focus, textarea:focus {
  border-color: #7FE7CC;
  box-shadow: 0 1.5px 12px #7FE7CC40;
}

/* ========== MISC/UTILITY INTERACTIVE STYLES ========== */
::-webkit-scrollbar { width: 9px; background: #EDEAF7; }
::-webkit-scrollbar-thumb { background: #FEC260; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #4B1F8A; }

::selection { background: #7FE7CC; color: #222; }

/* Focus for accessibility */
:focus-visible {
  outline: 3px solid #FEC260;
  outline-offset: 2px;
}

/* ========== FUN FONTS (for headlines, lighter for body) ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400|Open+Sans:400,600');


/* ========== END OF STYLE.CSS ========== */
