/* CSS 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, 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 {
  scroll-behavior: smooth;
}
body {
  background: #F4F6FB;
  color: #23284D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #29B6B6;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.4,1.3,.4,1.03);
}
a:hover, a:focus {
  color: #FE6045;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* BRAND COLORS */
:root {
  --primary: #23284D;
  --secondary: #F4F6FB;
  --accent: #29B6B6;
  --accent-2: #FE6045;
  --highlight: #FBDC46;
  --gray-200: #F4F6FB;
  --gray-300: #E0E5F2;
  --gray-800: #2C355A;
  --white: #fff;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 3px 6px 24px rgba(33,192,192,0.07);
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--accent);
  position: relative;
}
h2::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 10px;
  margin-bottom: 4px;
  margin-right: 12px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--primary);
}
h4, h5, h6 {
  font-size: 1rem;
  color: var(--primary);
}
p, li, ul {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b {
  color: var(--accent-2);
  font-weight: 700;
  font-family: 'Oswald', Arial, sans-serif;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 2px 18px 2px rgba(41,182,182,0.11);
  transition: box-shadow .28s cubic-bezier(.41,1.3,.31,1.03);
}
.section:hover {
  box-shadow: 0 6px 48px 6px rgba(41,182,182,0.17); /* playful pop */
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 24px 2px rgba(251,220,70,0.13);
  transition: transform .22s cubic-bezier(.45,1.35,.45,1.1), box-shadow .4s;
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 260px;
}
.card:hover {
  transform: translateY(-8px) scale(1.035) rotate(-1deg);
  box-shadow: 0 6px 38px 6px rgba(254,96,69,0.16);
  z-index: 2;
}

.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;
  background: var(--highlight);
  border-radius: 16px;
  box-shadow: 0 2px 12px 1px rgba(254,96,69,0.11);
  margin-bottom: 20px;
  min-height: 78px;
  font-size: 1.1rem;
  color: #23284D;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card strong {
  margin-left: auto;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 210px;
  background: var(--gray-200);
  border-radius: 17px;
  box-shadow: 0 2px 13px 2px rgba(41,182,182,0.08);
  padding: 22px 16px 22px 20px;
  transition: box-shadow .24s, transform .19s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 30px 8px rgba(251,220,70,0.11);
  transform: scale(1.03) rotate(2deg);
  cursor: pointer;
}

.trust-badges {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  font-size: 0.96rem;
  color: var(--gray-800);
  background: var(--gray-300);
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: 0 1px 9px 0 rgba(41,182,182,0.07);
}

/* Fun List/Feature Icons */
ul > li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  vertical-align: middle;
  display: inline;
}
ul > li {
  margin-bottom: 20px;
  position: relative;
  font-size: 1.07rem;
  background: var(--gray-300);
  border-radius: 14px;
  padding: 16px 18px 16px 18px;
  box-shadow: 0 2px 10px 1px rgba(41, 182, 182, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
ul > li strong {
  color: var(--accent-2);
  font-weight: 700;
  font-family: 'Oswald', Arial, sans-serif;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  box-shadow: 0 4px 18px 6px rgba(41,182,182,0.10);
  width: 100%;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 42px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  padding: 5px 14px;
  border-radius: 9px;
  transition: background .22s, color .21s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent-2);
  color: var(--white);
}
.btn-primary {
  display: inline-block;
  background: var(--accent-2);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 3px 14px 1px rgba(254,96,69,0.19);
  transition: background .22s, transform .13s, box-shadow .22s;
  border: none;
  cursor: pointer;
  margin-left: 15px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px) scale(1.035) rotate(-2deg);
  box-shadow: 0 8px 32px 2px rgba(41,182,182,0.14);
  text-decoration: none;
}

/* Burger menu toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--accent-2);
  color: var(--white);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 14px;
  box-shadow: 0 3px 12px 1px rgba(41,182,182, 0.15);
  cursor: pointer;
  transition: background .18s;
  z-index: 101;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: var(--primary);
  z-index: 1051;
  padding: 40px 22px 22px 28px;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.8, .03, .05, 1);
  box-shadow: 0 0 60vw 2vw rgba(41, 182, 182, 0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent-2);
  color: var(--white);
  border: none;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 10;
  cursor: pointer;
  transition: background .18s;
  box-shadow: 0 3px 12px 1px rgba(254,96,69,0.15);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 56px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 12px 0 8px 0;
  border-radius: 7px;
  transition: background .23s, color .16s;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-2);
  color: var(--white);
}

/* Hide main nav & show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN CONTENT & GENERIC SPACING */
main {
  margin-top: 20px;
  margin-bottom: 32px;
}

.section, .content-wrapper, .feature-grid, .testimonial-card, .card-container, .text-image-section {
  margin-bottom: 20px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding: 28px 5vw;
    margin-bottom: 38px;
    border-radius: 19px;
  }
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    font-size: 1.025rem;
  }
  .trust-badges {
    flex-direction: column;
    gap: 14px;
    padding: 9px 16px;
    border-radius: 13px;
    font-size: 0.97rem;
  }
  ul > li {
    padding: 13px 8px 13px 11px;
    flex-direction: column;
    gap: 8px;
  }
  header .container {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  .feature-grid > div, .card {
    min-width: unset;
    padding: 18px 8px;
    font-size: 0.96rem;
  }
}

/* FOOTER STYLES */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 0;
  font-size: .99rem;
  width: 100vw;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -2px 22px 8px rgba(41,182,182,0.10);
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
  padding: 28px 18px 28px 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  transition: color .18s;
}
.footer-nav a:hover {
  color: var(--accent-2);
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  background: var(--gray-300);
  border-radius: 50%;
  padding: 7px;
  transition: background .19s;
}
.social-links a:hover {
  background: var(--accent-2);
}
.legal-info {
  color: #fff;
  font-size: .99rem;
}
.brand-tagline {
  color: var(--accent-2);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  margin-top: 3px;
}

@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 11px;
    flex-wrap: wrap;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--highlight);
  color: var(--primary);
  box-shadow: 0 -4px 24px 8px rgba(41,182,182,0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  z-index: 1055;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 18px 18px 0 0;
  animation: cookieSlideIn .64s cubic-bezier(.51,0,.59,1.24);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 0;
  font-size: 1.05rem;
  margin-right: 23px;
  color: var(--primary);
}
.cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-btn,
.cookie-btn-accept {
  padding: 9px 22px;
  background: var(--accent-2);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background .17s, color .11s;
}
.cookie-btn-accept:hover {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn-settings {
  padding: 9px 20px;
  background: var(--accent);
  border: none;
  border-radius: 89px;
  color: var(--primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .17s, color .11s;
}
.cookie-btn-settings:hover {
  background: var(--accent-2);
  color: #fff;
}
.cookie-btn-reject {
  padding: 9px 20px;
  background: transparent;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  border-radius: 90px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .17s, color .11s;
}
.cookie-btn-reject:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8vw 17px 7vw;
    gap: 14px;
  }
  .cookie-btns {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 24vh;
  transform: translateX(-50%) scale(1);
  width: 94vw;
  max-width: 430px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 14px 58px 12px rgba(41,182,182,0.15);
  z-index: 1222;
  padding: 35px 32px 22px 32px;
  animation: cookieModalIn .39s cubic-bezier(.33,0,.67,0.94);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateX(-50%) scale(.82); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--accent-2);
  font-size: 1.18rem;
  margin-bottom: 14px;
  text-align: center;
}
.cookie-modal-cats {
  margin-bottom: 18px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
  font-size: 1.03rem;
}
.cookie-cat input[type="checkbox"] {
  accent-color: var(--accent-2);
  width: 20px; height: 20px;
  margin: 0;
}
.cookie-cat .cookie-cat-essential {
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .02em;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.cookie-modal-btn {
  padding: 8px 19px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 88px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  cursor: pointer;
  transition: background .18s, color .15s;
}
.cookie-modal-btn.save {
  background: var(--accent-2);
  color: #fff;
}
.cookie-modal-btn.save:hover {
  background: var(--highlight);
  color: var(--primary);
}
.cookie-modal-btn.cancel {
  background: var(--gray-200);
  color: var(--primary);
}
.cookie-modal-btn.cancel:hover {
  background: var(--accent);
  color: #fff;
}

/* FORM ELEMENTS */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 9px;
  border: 1.5px solid var(--gray-300);
  padding: 11px;
  font-size: 1rem;
  margin-bottom: 14px;
  max-width: 100%;
  outline: none;
  color: var(--primary);
  background: var(--gray-200);
  transition: border-color .17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent-2);
}
button {
  font-family: inherit;
}

/* ANIMATIONS */
.card, .feature-grid > div {
  animation: cardPop .7s cubic-bezier(.5,1.88,.4,.98) both;
}
@keyframes cardPop {
  0% { transform: scale(.92) translateY(40px); opacity: 0; }
  70% { transform: scale(1.05) translateY(-8px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.section {
  animation: fadeSlideInUp .66s cubic-bezier(.51,0,.39,1);
}
@keyframes fadeSlideInUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

.btn-primary, .cookie-btn, .cookie-btn-accept, .cookie-btn-settings, .cookie-btn-reject {
  transition: background .2s, color .17s, transform .15s, box-shadow .21s;
}

/* Misc Fun Styles */
ul > li::before {
  display: none;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* Custom fun font for hero and major sections */
.hero-title, .section:first-child h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.35rem;
  color: var(--accent-2);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  background: linear-gradient(to right, #29B6B6 44%, #FE6045 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* OVERRIDES */
.card, .testimonials, .testimonial-card {
  margin-bottom: 20px;
}

/* Hide scrollbar for playful look on some containers */
.feature-grid, .card-container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: auto;
}
.feature-grid::-webkit-scrollbar, .card-container::-webkit-scrollbar {
  display: none;
}

/* Accessibility: High contrast text in testimonial-card, cookie-banner, etc. */
.testimonial-card, .cookie-banner, .cookie-modal {
  color: #23284D;
}

/* Ensure nothing is clipped or overlapping */
.section, .card, .feature-grid > div, .testimonial-card {
  margin-bottom: 20px;
  box-sizing: border-box;
}

/* Prevent absolute for content: only decorative allowed */
/* (All positioning in .mobile-menu, .mobile-menu-close is just for overlay & close) */

/* End of playful_dynamic CSS */
