/* ======================================================================
   CSS RESET & NORMALIZE (flexbox-safe)
   ====================================================================== */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F9F9F5;
  color: #28282F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: #E44F2B;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.5,1.5,.5,1.05);
}
a:hover {
  color: #2E2E3A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
img {
  max-width: 100%;
  display: block;
}

/* ======================================================================
   FONTS (Playful/Dynamic)
   ====================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #E44F2B;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 3px 0 #FFF8, 0 1px 15px #E44F2B22;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #2E2E3A;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #E44F2B;
  margin-bottom: 12px;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #36363F;
}
strong, b {
  color: #2E2E3A;
  font-weight: 700;
}

/* Fun accent font for dynamic headlines (playful touch) */
@font-face {
  font-family: 'LuckiestGuy';
  src: url('https://fonts.gstatic.com/s/luckiestguy/v21/_gP_1RrxsjcxVyin9l9n_j2hTd52.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
.playful {
  font-family: 'LuckiestGuy', 'Montserrat', Arial, sans-serif;
  color: #E44F2B;
  font-size: 2.8rem;
  text-shadow: 0 2px 8px #E44F2B33;
}

/* ======================================================================
   LAYOUT & CONTAINERS
   ====================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 #E44F2B08;
  animation: fadeInUp 0.8s cubic-bezier(.5,1.8,.5,1.1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}
.card {
  background: #F9F9F5;
  margin-bottom: 20px;
  padding: 28px 24px 22px 24px;
  border-radius: 22px;
  box-shadow: 0 7px 28px -10px #E44F2B22;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 100%;
}
.card:hover, .card:focus {
  box-shadow: 0 14px 44px -4px #E44F2B40, 0 4px 18px 0 #2E2E3A12;
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ======================================================================
   HEADER, NAVIGATION & CTA BUTTONS (Playful, Dynamic)
   ====================================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px -6px #E44F2B11;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 70px;
  animation: fadeInDown 0.7s .1s;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 70px;
}
.brand-logo img, header img {
  height: 48px;
  width: auto;
  margin-right: 14px;
  filter: drop-shadow(0 2px 4px #E44F2B11);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: #2E2E3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 7px 16px;
  border-radius: 16px;
  transition: background 0.19s, color 0.19s, transform .13s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FAE1D5;
  color: #E44F2B;
  transform: scale(1.07);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.16s;
  letter-spacing: 0.5px;
  box-shadow: 0 0px 0 #E44F2B10;
  outline: none;
}
.cta-btn.primary {
  background: #E44F2B;
  color: #fff;
  box-shadow: 0 3px 12px -2px #E44F2B50;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #2E2E3A;
  color: #FFF;
  box-shadow: 0 6px 28px -6px #2E2E3A33;
  transform: scale(1.04);
}
.cta-btn.secondary {
  background: #FAE1D5;
  color: #2E2E3A;
  border: 2px solid #E44F2B;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #E44F2B;
  color: #fff;
  transform: scale(1.06);
}

/* Hamburger Mobile Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #E44F2B;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 11px 16px;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 2px 8px #E44F2B29;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #2E2E3A;
  color: #FFF;
  transform: scale(1.10) rotate(-8deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F9F5cc;
  backdrop-filter: blur(5px);
  box-shadow: 0 14px 70px #2E2E3A40;
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.45s cubic-bezier(.65,1.7,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #E44F2B;
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 11px 16px;
  font-size: 2rem;
  position: absolute;
  top: 28px;
  right: 30px;
  cursor: pointer;
  z-index: 1220;
  transition: background 0.15s, transform 0.14s;
  box-shadow: 0 2px 14px -6px #2E2E3A21;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2E2E3A;
  color: #fff;
  transform: scale(1.12) rotate(6deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 60px;
  width: 100vw;
  text-align: right;
  padding-right: 40px;
}
.mobile-nav a {
  color: #E44F2B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  padding: 11px 0px;
  border-radius: 18px;
  background: none;
  transition: background 0.18s, color 0.19s;
  display: inline-block;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2E2E3A;
  background: #FFD7C3;
}

/* ======================================================================
   TESTIMONIALS & QUOTES
   ====================================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF;
  color: #232332;
  border-radius: 16px;
  box-shadow: 0 1px 18px -5px #E44F2B24;
  border-left: 7px solid #E44F2B;
  position: relative;
  min-width: 220px;
  max-width: 520px;
  font-size: 1.08em;
  transition: box-shadow 0.18s, border 0.2s;
  z-index: 2;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 40px -4px #E44F2B33;
  border-left: 12px solid #2E2E3A;
  background: #FFF6F2;
}
.testimonial-author {
  font-size: 0.95em;
  color: #2E2E3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ======================================================================
   SOCIAL LINKS
   ====================================================================== */
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 14px 0;
}
.social-links a img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 8px #E44F2B13;
  background: #fff;
  padding: 4px;
  transition: box-shadow .17s, transform .13s;
}
.social-links a:hover img,
.social-links a:focus img {
  box-shadow: 0 7px 16px -3px #E44F2B33;
  transform: scale(1.13) rotate(-4deg);
  background: #FAE1D5;
}

/* ======================================================================
   CONTACT INFO
   ====================================================================== */
.contact-info {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1em;
}

/* ======================================================================
   FOOTER
   ====================================================================== */
footer {
  background: #2E2E3A;
  padding: 34px 0 28px 0;
  min-height: 100px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-menu a {
  color: #E44F2B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background .13s, color .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #FFF6F2;
  color: #2E2E3A;
}
.brand-logo img {
  height: 48px;
  filter: drop-shadow(0 2px 8px #E44F2B16);
}
.footer-legal {
  color: #FFF;
  font-size: .95em;
  margin-top: 12px;
  text-align: right;
}

/* ======================================================================
   COOKIE CONSENT BANNER & MODAL
   ====================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFF;
  border-top: 3px solid #E44F2B;
  box-shadow: 0 -2px 16px #E44F2B25;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 20px 38px 20px 42px;
  z-index: 9999;
  animation: bannerAppear .7s cubic-bezier(.65,1.6,.7,.9);
}
@keyframes bannerAppear {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-message {
  color: #2E2E3A;
  font-size: 1em;
  flex: 1 1 0%;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 11px;
}
.cookie-btn {
  border: none;
  border-radius: 12px;
  padding: 11px 25px;
  margin: 0 2px;
  background: #E44F2B;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s, color .13s, box-shadow .15s, transform .12s;
  box-shadow: 0 2px 7px #E44F2B14;
}
.cookie-btn.reject {
  background: #2E2E3A;
  color: #FFF;
}
.cookie-btn.settings {
  background: #FFF6F2;
  color: #E44F2B;
  border: 2px solid #E44F2B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FAE1D5;
  color: #E44F2B;
  box-shadow: 0 3px 16px #E44F2B31;
  transform: scale(1.05);
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F9F5e8;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn .6s cubic-bezier(.63,1.5,.2,1.1);
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 23px;
  padding: 45px 35px 32px 35px;
  max-width: 480px;
  box-shadow: 0 8px 44px #E44F2B26;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #E44F2B;
  margin-bottom: 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category input[type=checkbox] {
  transform: scale(1.25);
  accent-color: #E44F2B;
}
.cookie-category label {
  font-size: 1.08em;
  color: #2E2E3A;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-close {
  position: absolute;
  top: 20px; right: 30px;
  background: #E44F2B;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.4rem;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 12340;
  transition: background .12s, transform.11s;
}
.cookie-close:hover, .cookie-close:focus {
  background: #2E2E3A;
  transform: scale(1.09);
}

/* ======================================================================
   MEDIA QUERIES (Mobile First)
   ====================================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
  .cta-btn, .cta-btn.primary, .cta-btn.secondary { padding: 12px 18px; font-size: 0.98rem; }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.38rem; }
}
@media (max-width: 820px) {
  .footer-menu { gap: 12px; }
  .footer-legal { font-size: .9em; }
  .container, header .container, footer .container {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px;
  }
  .footer-menu, .footer-legal, .brand-logo { text-align: left; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta-btn.primary {
    margin-left: 0;
  }
  .container, footer .container, header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .section {
    padding: 22px 5px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 8px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  h1, .h1 { font-size: 1.35rem; }
  h2, .h2 { font-size: 1.12rem; }
  .cookie-banner { font-size:0.92em; }
}
/* ======================================================================
   PLAYFUL DYNAMIC ANIMATIONS, EFFECTS & UTILS
   ====================================================================== */
@keyframes bounceIn {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.07); opacity: 0.98; }
  80%  { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}
.playful-anim {
  animation: bounceIn 0.74s .13s cubic-bezier(.6,1.2,.7,.91);
}
.card, .content-wrapper, .cta-btn, .footer-menu a {
  will-change: transform, box-shadow, background;
  transition: box-shadow .20s, background .22s, color .18s, transform .13s;
}
.section, .card, .testimonial-card {
  box-shadow: 0 8px 24px -9px #E44F2B20;
}
.section, .card, .testimonial-card, .cookie-modal-content {
  border-radius: 18px;
}
::-webkit-scrollbar { width: 7px; background:#FAE1D5; }
::-webkit-scrollbar-thumb { background: #E44F2B; border-radius: 7px; }

/* ======================================================================
   MISC AND DEFAULT ELEMENTS (UL, LI, ETC.)
   ====================================================================== */
li {
  margin-bottom: 10px;
  line-height: 1.55;
}
ul {
  list-style-type: disc;
  padding-left: 28px;
}
ul.contact-info {
  list-style-type: none;
  padding-left: 0;
}

/* Playful key highlight for accent list icons */
ul li img {
  background: #FAE1D5;
  border-radius: 50%;
  box-shadow: 0 2px 11px #E44F2B09;
  margin-right: 10px;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  padding: 3px;
}

/* ======================================================================
   PRINT OVERRIDE (hide header/footer/banner on print)
   ====================================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
}

/* END CSS */
