/* RESET & NORMALIZE (mobile-first) */
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, menu, 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, 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, main, nav, section {
  display: block;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #24324A;
  background: #F5F7FA;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #4AC2A9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #24324A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}
button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1180px;
  box-sizing: border-box;
}

/* TYPOGRAPHY - Playful Dynamic */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #24324A;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  color: #4AC2A9;
  text-shadow: 2px 2px 0 #fff2be, 4px 4px 0 #ff9acf25;
  position: relative;
}
h2 {
  font-size: 1.75rem; /* 28px */
  color: #FBA100;
  text-shadow: 1px 1px 0 #fff2be;
}
h3 {
  font-size: 1.25rem; /* 20px */
  color: #24324A;
}
h4 {
  font-size: 1.125rem; /* 18px */
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* PLAYFUL COLOR EXTENSIONS (added a few for dynamic pop)*/
:root {
  --pp-primary: #24324A;
  --pp-secondary: #4AC2A9;
  --pp-accent: #F5F7FA;
  --pp-yellow: #FBA100;
  --pp-pink: #F75F94;
  --pp-blue: #31A2FD;
  --pp-lavender: #B38DFF;
  --pp-bg-card: #fff;
}

/* HEADER + NAVIGATION */
header {
  background: linear-gradient(90deg, #F5F7FA 90%, #fffbe7 100%);
  border-bottom: 3px solid #4AC2A9;
  box-shadow: 0 2px 6px rgba(36,50,74,0.05);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 16px 12px 16px;
  position: relative;
}
header img {
  height: 52px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
nav a {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
nav a.cta-btn,
.cta-btn {
  background: var(--pp-yellow);
  color: #24324A;
  box-shadow: 2px 2px 0 #31a2fd22;
  border-radius: 30px;
  padding: 12px 32px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-left: 10px;
  text-shadow: 1px 1px #fffbe7;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus,
nav a.cta-btn:hover {
  background: var(--pp-pink);
  color: #fff;
  box-shadow: 4px 6px 0 #4AC2A977, 0 1px 16px #f75f9433;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
.cta-btn.secondary {
  background: var(--pp-lavender);
  color: #24324A;
}
.cta-btn.secondary:hover {
  background: var(--pp-blue);
  color: #fff;
}
nav a:not(.cta-btn):hover {
  color: var(--pp-yellow);
  background: #fff2be;
}

/* MOBILE NAVIGATION BURGER */
.mobile-menu-toggle {
  display: flex;
  background: var(--pp-pink);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: 12px;
  z-index: 1002;
  border: 2px solid var(--pp-yellow);
  box-shadow: 2px 2px 0 #24324A22;
  transition: background 0.2s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pp-yellow);
  color: #24324A;
  box-shadow: 3px 4px 0 #F75F9466;
  outline: none;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}
nav {
  display: none;
}
@media (min-width: 992px) {
  nav {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,.06,.89,.98);
  box-shadow: -8px 0 34px 0 #24324A22;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: var(--pp-pink);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--pp-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pp-yellow);
  color: #24324A;
  outline: none;
}
.mobile-nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  padding: 14px 12px;
  border-radius: 18px;
  color: #24324A;
  font-size: 1.09rem;
  font-family: 'Montserrat', sans-serif;
  background: #F5F7FA;
  margin-bottom: 6px;
  font-weight: 700;
  box-shadow: 2px 2px 0 #b38dff22;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pp-secondary);
  color: #fff;
}

@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* LAYOUT: Sections, Content, Flex Utilities */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.card-container, .service-list, .feature-grid,
.solution-grid, .guide-list, .faq-list, .blog-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card, .feature, .service, .solution, .guide, .post, .faq-item {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
/* Responsive Flex Directions */
@media (max-width: 768px) {
  .content-wrapper,
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature-grid,.solution-grid,.service-list,.card-container,.blog-posts-list,.guide-list {
    flex-direction: column !important;
  }
}

/* HERO SECTION (Playful style) */
.hero {
  background: linear-gradient(120deg, #FBA100 14%, #F5F7FA 100%);
  border-radius: 0 0 56px 0;
  min-height: 285px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 6px 28px #31A2FD22, 0 2px 15px #FBA10022;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 2px 2px 0 #24324A33;
  margin-bottom: 0.3em;
  letter-spacing: 0.04em;
}
.hero p {
  font-size: 1.18rem;
  color: #24324A;
  font-weight: 500;
  margin-bottom: 1em;
}
.hero .cta-btn {
  margin-top: 18px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* FEATURES / CARDS / SERVICES / SOLUTIONS */
.feature, .service, .solution, .guide, .post {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 15px 0 #4AC2A922;
  padding: 32px 24px 28px 24px;
  min-width: 260px;
  min-height: 160px;
  flex: 1 0 240px;
  position: relative;
  border-left: 6px solid var(--pp-yellow);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.15s;
}
.feature:hover, .service:hover, .solution:hover, .guide:hover, .post:hover {
  box-shadow: 0 9px 24px #31a2fd44, 0 2px 4px #24324A11;
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
  border-left-color: var(--pp-pink);
}
.feature img, .service img, .solution img {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  background: #F5F7FA;
  border-radius: 16px;
  box-shadow: 1px 1px 5px #4ac2a933;
  padding: 5px;
  transition: background 0.2s;
}
.feature:hover img,
.solution:hover img,
.service:hover img {
  background: var(--pp-yellow);
}

.feature h3, .service h3, .solution h3, .guide h3, .post h3 {
  color: var(--pp-secondary);
  font-size: 1.13rem;
}

.feature p, .service p, .solution p, .guide p, .post p {
  color: #24324Ad1;
  font-size: 1rem;
}

/* BADGES / STATISTICS */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.trust-badges img {
  height: 38px;
  width: auto;
  background: #fffbe7;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #FBA10022;
  padding: 4px 10px;
}

/* TESTIMONIAL CARDS */
.testimonials h2 {
  color: var(--pp-pink);
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px #4AC2A911;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-left: 6px solid var(--pp-blue);
  padding: 22px 22px 18px 22px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px #F75F9444;
  border-color: var(--pp-pink);
  transform: translateY(-2px) rotate(-0.75deg);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #24324A;
  margin-bottom: 7px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
  color: #24324A;
  opacity: 0.82;
}
.testimonial-meta strong {
  color: var(--pp-secondary);
}

/* CONTACT DETAILS */
.contact-details-short p,
.contact-details-full p,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #24324A;
  font-size: 1rem;
  font-weight: 500;
}
.contact-details-short img,
.contact-details-full img,
.footer-contact img {
  min-width: 22px;
  height: 22px;
}

/* MAP EMBED (fake) */
.map-embed {
  margin-top: 20px;
  padding: 14px;
  border-radius: 16px;
  background: #F5F7FA;
  box-shadow: 0 1px 10px #24324A11;
  color: #24324A;
  font-size: 1rem;
  font-style: italic;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 14px #4AC2A922;
  padding: 22px 22px 17px 22px;
  border-left: 6px solid var(--pp-lavender);
  transition: box-shadow 0.2s, border-color 0.18s;
}
.faq-item h3 {
  font-size: 1.14rem;
  color: var(--pp-secondary);
  margin-bottom: 0.2em;
}
.faq-item p {
  color: #24324A;
  font-size: 1rem;
}
.faq-item:hover {
  box-shadow: 0 7px 24px #b38dff44;
  border-color: var(--pp-yellow);
}

/* BLOG POSTS */
.blog-posts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px #31A2FD22;
  padding: 24px 18px;
  border-left: 5px solid var(--pp-blue);
  flex: 1 0 260px;
  margin-bottom: 22px;
  position: relative;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.16s;
}
.post:hover {
  box-shadow: 0 4px 24px #31A2FD44;
  border-color: var(--pp-pink);
  transform: scale(1.025) rotate(-2deg);
}

.featured-post {
  background: var(--pp-lavender);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 6px 20px #b38dff44;
  padding: 32px 22px;
  margin-bottom: 18px;
  font-size: 1.14rem;
}
.featured-post h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.4em;
}

/* CTA BLOCKS */
.cta {
  background: linear-gradient(93deg, #31A2FD10 36%, #4AC2A9 95%, #F5F7FA 100%);
  border-radius: 44px;
  box-shadow: 0 5px 19px #4AC2A911;
  margin-bottom: 60px;
  text-align: left;
}
.cta h2 {
  color: var(--pp-yellow);
  font-size: 2rem;
  text-shadow: 1px 1px #fffbe7;
  margin-bottom: 0.3em;
}

/* POLICIES */
.policy, .thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 #b38dff15;
  padding: 32px 22px;
}
.policy h1, .thank-you h1 {
  color: var(--pp-pink);
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #24324A 91%, #B38DFF 100%);
  color: #fff;
  padding: 55px 0 38px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--pp-yellow);
  text-decoration: underline;
}
.footer-contact p {
  color: #fff;
  font-size: 0.99em;
}
.footer-logo img {
  width: 58px;
  height: 58px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-logo { align-self: flex-end; margin-right: 8px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 16px;
  background: #fff;
  box-shadow: 0 4px 20px #24324A44, 1px 1px 6px #FBA10044;
  border-radius: 18px;
  padding: 22px 20px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3000;
  opacity: 1;
  animation: slideUpFadeIn 0.5s cubic-bezier(.33,1.37,.64,.97);
}
@keyframes slideUpFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-banner p {
  color: #24324A;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 0.5em;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 8px 22px;
  background: var(--pp-yellow);
  color: #24324A;
  margin-right: 10px;
  box-shadow: 1px 1px #FFD40021;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-banner button.reject {
  background: var(--pp-pink);
  color: #fff;
}
.cookie-banner button.settings {
  background: var(--pp-secondary);
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--pp-lavender);
  color: #fff;
  box-shadow: 2px 2px 0 #4AC2A988;
  outline: none;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #24324A66;
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBackdropIn 0.15s;
}
@keyframes fadeBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 38px 30px 28px 30px;
  box-shadow: 0 5px 32px #b38dff44, 1px 2px 14px #4AC2A933;
  width: 95vw;
  max-width: 380px;
  position: relative;
  z-index: 3100;
  animation: modalSlideIn .33s cubic-bezier(.77,.06,.89,.98);
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(70px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  color: var(--pp-pink);
  margin-bottom: 18px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal .category label {
  font-weight: 600;
  color: var(--pp-secondary);
  font-size: 1rem;
}
.cookie-modal .category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--pp-yellow);
  border-radius: 8px;
}
.cookie-modal .category .always-on {
  font-size: 0.96rem;
  color: #B38DFF;
  font-weight: 600;
  margin-left: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px; right: 22px;
  background: var(--pp-yellow);
  color: #24324A;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1rem;
  border: none;
  box-shadow: 1px 1px #fad32c33;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--pp-pink);
  color: #fff;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 16px;
  background: var(--pp-secondary);
  color: #fff;
  border: none;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: var(--pp-yellow);
  color: #24324A;
}

/* ANIMATIONS: playful */
@keyframes swing {
  20% { transform: rotate(-6deg); }
  40% { transform: rotate(5deg); }
  55% { transform: rotate(-3deg); }
  70% { transform: rotate(1deg); }
  100% { transform: rotate(0deg); }
}
.cta-btn:hover, .cta-btn:focus {
  animation: swing 0.55s backwards;
}
.feature:hover img, .service:hover img, .solution:hover img {
  animation: jumpicon 0.6s linear 1;
}
@keyframes jumpicon {
  0% { transform: scale(1) translateY(0);} 40% { transform: scale(0.95) translateY(-7px);} 70% { transform: scale(1.06) translateY(0);} 100% { transform: scale(1) translateY(0); }
}

/* PLAYFUL EFFECTS */
.feature, .service, .solution, .testimonial-card, .faq-item, .post {
  transition: box-shadow 0.24s, border-color 0.2s, transform 0.18s;
}

/* Table Styles (if needed) */
table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 7px #4AC2A922;
}
th, td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
}
th {
  background: #F5F7FA;
  color: #24324A;
}

/* Utility Classes and States */
.mb-24 { margin-bottom: 24px !important; }
.mt-18 { margin-top: 18px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-18 { gap: 18px; }

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
  .container { max-width: 960px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section, .policy, .thank-you {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .card-container, .feature-grid, .faq-list, .blog-posts-list, .service-list, .solution-grid, .guide-list {
    gap: 18px !important;
  }
  header .container {
    padding: 13px 8px 8px;
  }
  nav {
    gap: 10px;
  }
  .hero {
    border-radius: 0 0 35px 0;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  header .container { flex-direction: column; gap: 10px; align-items: flex-start; }
  .mobile-menu { padding: 16px 7px 14px 11px; }
  .mobile-nav { margin-top: 46px; }
}

/* END OF CSS (NO GRID, ONLY FLEXBOX LAYOUTS) */
