/* =============================
   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;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1A1A1F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.42,0,0.58,1);
  cursor: pointer;
}

/* =============================
   Variables & Brand Palette
============================= */
:root {
  --primary: #1A1A1F;
  --secondary: #D4D7DD;
  --accent: #F4B942;
  --fun-pink: #FF809A;
  --fun-blue: #47BCFF;
  --fun-green: #59ED9C;
  --fun-violet: #7A6DCF;
  --white: #fff;
  --shadow: 0 4px 24px 0 rgba(30,60,90,0.09), 0 2px 6px 0 rgba(250,170,60,.08);
  --radius: 18px;
  --radius-sm: 10px;
  --main-gap: 24px;
  --section-gap: 60px;
}

/* =============================
   BASE TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem; /* 38px */
  line-height: 1.15;
}
h2 {
  font-size: 2rem; /* 32px */
  line-height: 1.15;
}
h3 {
  font-size: 1.5rem; /* 24px */
  line-height: 1.18;
}
h4 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem; /* 16px */
  margin-bottom: 12px;
  color: var(--primary);
}
strong {
  font-weight: bold;
  color: var(--accent);
}
.text-section {
  margin-bottom: 24px;
}

ul:not(.main-nav):not(.footer-nav) {
  padding-left: 0;
  margin-bottom: 18px;
}
ul:not(.main-nav):not(.footer-nav) li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.6;
}
ul:not(.main-nav):not(.footer-nav) li img {
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  margin-right: 10px;
}

/* =============================
   FUN/PERSONALITY FONTS
============================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Open+Sans:wght@400;700&display=swap');
body {
  font-family: 'Open Sans', Arial, sans-serif;
}
.display, h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.010em;
}

/* Playful font for accents */
.fun-font {
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* =============================
   CONTAINER & SECTIONS
============================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =============================
   FLEXBOX LAYOUTS
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .testimonial-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: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(24,32,65,0.08);
  margin-bottom: 24px;
  transition: transform 0.16s cubic-bezier(0.42,0,0.58,1), box-shadow 0.16s;
}
.testimonial-card:hover {
  transform: scale(1.03) rotate(-0.5deg);
  box-shadow: 0 4px 32px 0 rgba(74,85,104,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px;
  background: #F8F7FF;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 5px 0 rgba(32,41,89,0.07);
}

/* Spacing for all content cards/sections */
.card, .testimonial-card, .feature-item, .section, section {
  margin-bottom: 20px;
}

/* =============================
   HEADER & NAVIGATION
============================= */
header {
  background: var(--secondary);
  box-shadow: 0 2px 18px 0 rgba(80,128,255,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 0;
}
header a img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 11px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  font-weight: 700;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--white);
}
.cta.primary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(244,185,66,0.22);
  margin-left: 16px;
  letter-spacing: 0.04em;
  transition: background 0.19s, color 0.15s, transform 0.17s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--fun-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.cta.secondary {
  background: var(--fun-pink);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 26px;
  border-radius: 16px;
  box-shadow: 0 3px 11px 0 rgba(255,128,154,0.14);
  margin-top: 14px;
  transition: background 0.17s, color 0.14s, transform 0.17s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--fun-green);
  color: var(--primary);
  transform: scale(1.04) rotate(0.7deg);
}

/* =============================
   MOBILE MENU BURGER
============================= */
.mobile-menu-toggle {
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(244,185,66,0.18);
  z-index: 105;
  transition: background 0.16s, transform 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.1) rotate(-8deg);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 6px 36px 0 rgba(74,85,104,0.17);
  z-index: 1800;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.7,.26,0,.93);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 32px 22px 24px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: var(--fun-green);
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(89,237,156,0.15);
  transition: background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 95%;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.23rem;
  padding: 14px 10px;
  border-radius: 12px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--fun-violet);
  color: var(--white);
}

/* Hide nav and show burger (mobile) */
@media (max-width: 1024px) {
  .main-nav,
  .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .main-nav, .cta.primary {
    display: flex !important;
  }
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* =============================
   HERO SECTION & DYNAMIC BG
============================= */
.hero-section {
  background: linear-gradient(93deg, var(--fun-blue) 0%, var(--fun-pink) 60%, var(--accent) 100%);
  color: var(--white);
  border-radius: var(--radius);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  animation: fadeInHero 1s both;
}
@keyframes fadeInHero {
  0% {opacity:0;transform:scale(0.98) translateY(25px)}
  100% {opacity:1;transform:scale(1) translateY(0)}
}
.hero-section h1{
  color: var(--white);
  font-size: 2.3rem;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(60,60,80,0.15);
}
.hero-section p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.hero-section .cta.primary {
  margin-top: 14px;
  background: var(--white);
  color: var(--fun-pink);
  box-shadow: 0 5px 18px 0 rgba(255,128,154,0.13);
}
.hero-section .cta.primary:hover, .hero-section .cta.primary:focus {
  background: var(--fun-pink);
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}

/* =============================
   FEATURES & ABOUT
============================= */
.features {
  background: #FEFDFA;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 22px;
  padding: 10px 0 0 0;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  background: var(--fun-green);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(89,237,156,0.11);
  min-width: 210px;
  transition: background 0.14s, transform 0.11s;
}
.features ul li:hover {
  background: var(--fun-blue);
  color: var(--white);
  transform: scale(1.04) rotate(-1deg);
}

.about-short, .about {
  background: #F8F7FF;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(110,70,175,0.07);
}
.about-short h2, .about h2 {
  color: var(--fun-violet);
}
.about-short ul, .about ul {
  padding-bottom: 8px;
}

/* =============================
   SERVICES/OFFER & Benefits
============================= */
.services-intro, .services {
  background: var(--fun-blue);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(47,188,255,0.13);
}
.services-intro h2, .services h2 {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.services-intro a.cta.secondary {
  background: var(--fun-green);
  color: var(--primary);
}
.services-intro a.cta.secondary:hover {
  background: var(--white);
  color: var(--fun-green);
  transform: scale(1.03) rotate(-1.5deg);
}

.benefits {
  background: #FFFBF1;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px 0 rgba(244,185,66,0.08);
  color: var(--primary);
}
.benefits h2 {
  color: var(--accent);
}

/* =============================
   TESTIMONIALS STYLES
============================= */
.testimonials-list, .testimonials-preview {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(255,186,78,0.11);
}
.testimonials-list h1, .testimonials-preview h2 {
  color: var(--fun-pink);
}
.testimonial-card {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px 0 rgba(56,56,90,0.10);
  animation: popCard 0.6s cubic-bezier(.6,.2,.4,1.1) both;
}
@keyframes popCard {
  from { opacity:0; transform: scale(.96) translateY(20px); }
  to { opacity:1; transform: scale(1) translateY(0); }
}
.testimonial-card p {
  font-size: 1.10rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--fun-blue);
}
/* Star-rating inline icons */
.testimonials-list h2 img, .testimonials-preview h2 img {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-bottom: -2px;
}

/* CTA for testimonials */
.testimonial-cta {
  background: var(--fun-pink);
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 16px 0 rgba(255,128,154,0.11);
}
.testimonial-cta h2 {
  color: #fff;
}

/* =============================
   CONTACT and ADDRESS BLOCKS
============================= */
.contact-cta, .contact {
  background: var(--fun-green);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(89,237,156,0.13);
}
.contact-cta h2, .contact h1, .contact h2 {
  color: var(--primary);
}
.contact-cta .cta.primary, .contact .cta.primary  {
  background: var(--fun-violet);
  color: var(--white);
}
.contact-cta .cta.primary:hover, .contact .cta.primary:hover {
  background: var(--accent);
  color: var(--primary);
}
.contact-cta .text-section p, .contact .text-section p  {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.contact-cta .text-section img, .contact .text-section img  {
  width: 22px;
  height: 22px;
}

/* =============================
   STATIC INFO PAGES
============================= */
.privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-service {
  background: var(--secondary);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px 0 rgba(180,180,200,0.09);
  color: var(--primary);
}
.privacy-policy h1, .gdpr-policy h1, .cookies-policy h1, .terms-of-service h1 {
  color: var(--fun-pink);
}

.thank-you {
  background: var(--fun-green);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 2px 14px 0 rgba(89,237,156,0.09);
  animation: popCard 0.8s both;
}

/* =============================
   FOOTER
============================= */
footer {
  background: var(--secondary);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  margin-top: 40px;
  padding-top: 34px;
  padding-bottom: 24px;
  box-shadow: 0 -2px 18px 0 rgba(160,200,255,0.05);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--primary);
  opacity: 0.7;
  transition: color 0.14s, opacity 0.13s;
}
.footer-nav a:hover {
  color: var(--fun-violet);
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--primary);
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.75;
}
.footer-brand img {
  width: 30px; height: 30px;
}

/* =============================
   COOKIE BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(87deg, var(--accent), var(--fun-pink), var(--fun-green));
  color: var(--primary);
  padding: 20px 16px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 2000;
  font-size: 1rem;
  box-shadow: 0 -2px 14px 0 rgba(244,185,66,0.18);
  animation: fadeInCookie 0.6s both;
}
@keyframes fadeInCookie {
  from {opacity:0;transform:translateY(28px)}
  to {opacity:1;transform:translateY(0)}
}
.cookie-banner p {
  margin-bottom: 0;
  flex: 2 1 200px;
  color: var(--primary);
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border: none;
  border-radius: 16px;
  background: var(--primary);
  color: var(--accent);
  font-weight: 700;
  transition: background 0.14s, color 0.14s, transform 0.07s;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(26,26,31,0.06);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--fun-pink);
  color: var(--white);
  transform: scale(1.06);
}
.cookie-banner .btn-cookiesettings {
  background: var(--fun-blue);
  color: #fff;
}
.cookie-banner .btn-cookiesettings:hover {
  background: var(--fun-green);
  color: var(--primary);
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(46,49,55,0.47);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  padding: 38px 22px 28px 22px;
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 6px 42px 0 rgba(240,190,66,.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popCard 0.5s both;
}
.cookie-modal-content h3 {
  color: var(--fun-blue);
  margin-bottom: 5px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  font-size: 1.04rem;
  gap: 11px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: var(--fun-green);
  width: 20px;
  height: 20px;
}
.cookie-modal-content .cookie-category {
  margin-bottom: 10px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 8px; right: 12px;
  background: var(--fun-pink);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.25rem;
  width: 34px; height: 34px;
  cursor: pointer;
  transition: background 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-content .cookie-modal-close:hover {
  background: var(--fun-green);
  color: var(--primary);
}

/* =============================
   ANIMATIONS/MICRO-INTERACTIONS
============================= */
a, button, .cta {
  transition: color 0.18s, background 0.18s, box-shadow 0.18s, transform 0.15s;
  outline: none;
}
section, .section {
  animation: fadeInSection 1s;
}
@keyframes fadeInSection {
  from { opacity: 0; transform: scale(0.99) translateY(32px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Fun hover shadow pop for cards */
.card:hover, .feature-item:hover {
  box-shadow: 0 7px 36px 0 rgba(127,170,255,0.19);
  transform: scale(1.03) rotate(-0.6deg);
}

/* =============================
   UTILITIES
============================= */
.bg-white { background: #fff !important; }
.bg-accent { background: var(--accent) !important; color: var(--primary) !important; }
.rounded { border-radius: var(--radius) !important; }
.shadow { box-shadow: var(--shadow) !important; }

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .main-nav {
    display: none !important;
  }
  .cta.primary {
    display: none !important;
  }
  section, .section {
    padding: 32px 8px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .content-grid,
  .card-container,
  .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .section, section {
    padding: 20px 4px;
    margin-bottom: 34px;
  }
  .testimonial-card,
  .feature-item { min-width: 0; }
  .hero-section {
    border-radius: var(--radius-sm);
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand img { width: 24px; height: 24px; }
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 27px 6vw 22px 6vw;
  }
}

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

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