/* 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;
}
footer span {
  color: white !important;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue:400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

:root {
  --primary: #1A365D;
  --secondary: #FFD166;
  --accent: #EFEFEF;
  --text-dark: #222840;
  --text-light: #FFFFFF;
  --brand-blue: #1976D2;
  --brand-pink: #FF5EAF;
  --brand-cyan: #41EAD4;
  --brand-yellow: #FFD166;
  --fun-green: #58D68D;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADERS/TYPO */
h1, .h1 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 48px;
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.05;
  text-shadow: 1px 3px 0 var(--brand-yellow), 1px 6px 16px rgba(26,54,93,0.08);
  text-transform: uppercase;
}
h2, .h2 {
  font-family: 'Bebas Neue', Arial Black, sans-serif;
  font-size: 32px;
  color: var(--brand-blue);
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: 0 2px 0 var(--brand-yellow);
}
h3, .h3 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 24px;
  color: var(--brand-pink);
  margin-bottom: 10px;
  text-transform: uppercase;
}
h4, .h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-blue);
}
p, li, span, address {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
ul {
  padding-left: 24px;
  margin-bottom: 12px;
  list-style: disc inside;
  font-size: 16px;
}
.text-section ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.text-section li {
  list-style: disc;
  margin-bottom: 4px;
}

.text-section {
  margin-bottom: 36px;
}

/* SECTION SPACING AND LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 30px rgba(26,54,93,0.11), 0 1.5px 5px rgba(255,94,175,0.1);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 26px 25px 26px;
  min-width: 240px;
  transition: transform 0.24s cubic-bezier(.42,1.5,.69,.93), box-shadow 0.25s cubic-bezier(0,1,.5,1);
  border: 2px solid var(--brand-yellow);
}
.card:hover {
  transform: translateY(-7px) scale(1.025) rotate(-0.3deg);
  box-shadow: 0 12px 44px rgba(26,54,93,0.14), 0 4px 12px rgba(65,234,212,0.13);
}

/* ALTERNATIVE CARDS FOR SERVICES */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(65,234,212,0.06), 0 2.5px 10px rgba(255,94,175,0.08);
  padding: 26px 24px 20px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: transform 0.21s cubic-bezier(.3,2.3,.7,.6), box-shadow 0.18s;
  border: 2.5px solid var(--brand-cyan);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card h3 {
  font-size: 22px;
  color: var(--brand-pink);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.service-card strong {
  color: var(--brand-blue);
  font-size: 15px;
  margin-top: 10px;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.04) rotate(0.7deg);
  box-shadow: 0 11px 28px rgba(255,209,102,0.17); 
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe5;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(255,94,175,0.12);
  border-left: 6px solid var(--brand-yellow);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 670px;
  color: var(--primary);
  font-size: 17px;
}
.testimonial-card p {
  font-size: 18px;
  color: var(--primary);
  line-height: 1.35;
  text-shadow: 0 1px 0 rgba(255,209,102,0.10);
}
.testimonial-card span {
  font-size: 15px;
  color: var(--brand-pink);
  align-self: flex-end;
}

/* LAYOUT FLEXBOX PATTERNS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.cta-button, .mobile-nav a.cta-button {
  display: inline-block;
  font-family: 'Bebas Neue', Arial, sans-serif;
  background: var(--brand-pink);
  color: #fff;
  padding: 14px 34px;
  border-radius: 32px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 20px 0 8px 0;
  box-shadow: 0 6px 20px rgba(255,94,175,0.19), 0 2px 7px var(--brand-yellow);
  border: 2.5px solid var(--brand-yellow);
  transition: background 0.16s, color 0.16s, transform 0.22s, box-shadow 0.27s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-cyan);
  color: var(--primary);
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 10px 28px var(--brand-pink),0 4px 12px var(--fun-green);
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
button:focus {
  outline: 2px solid var(--brand-pink);
}

/* NAVIGATION */
header {
  background: var(--primary);
  box-shadow: 0 2px 22px rgba(255,209,102,0.15);
  position: relative;
  z-index: 101;
}
.main-nav {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav img {
  width: 48px;
  height: 48px;
  margin-right: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px #FFF9);
}
.main-nav a {
  color: var(--brand-yellow);
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 7px 12px;
  border-radius: 16px;
  transition: background 0.16s, color 0.17s, transform 0.14s;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.08) rotate(-1deg);
}
.main-nav .cta-button {
  margin-left: 12px;
  margin-top: 0;
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: var(--brand-yellow);
  font-size: 32px;
  border-radius: 50%;
  color: var(--primary);
  z-index: 200;
  border: 3px solid var(--brand-pink);
  box-shadow: 0 2px 6px rgba(26,54,93,0.06);
  transition: background 0.14s, box-shadow 0.2s, color 0.14s;
}
.mobile-menu-toggle:active {
  color: var(--brand-pink);
  background: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--brand-yellow) 80%, var(--brand-cyan) 100%);
  z-index: 9999;
  transform: translateX(100vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.6,2,.4,1), opacity 0.24s;
  box-shadow: 0 6px 40px rgba(65,234,212, .15);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 20px;
  align-self: flex-end;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 100%;
  font-size: 30px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--primary);
  transition: background 0.16s, color 0.17s;
}
.mobile-menu-close:hover {
  background: var(--fun-green);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--primary);
  background: #fff;
  border-radius: 22px;
  padding: 14px 38px;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  width: 90%;
  box-shadow: 0 2.5px 8px rgba(255,94,175,0.12);
  border: 2px solid var(--brand-yellow);
  transition: background 0.19s, color 0.17s, transform 0.13s;
}
.mobile-nav a.cta-button {
  background: var(--brand-pink);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 6px 20px rgba(255,94,175,0.19), 0 2px 7px var(--brand-yellow);
}
.mobile-nav a:hover {
  background: var(--brand-cyan);
  color: var(--brand-pink);
  transform: scale(1.04) skewX(-2deg);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--brand-yellow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 12000;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -5px 26px rgba(65,234,212,0.13);
  font-size: 16px;
  border-top: 4px solid var(--brand-pink);
  animation: slideUpBanner 0.5s cubic-bezier(.82,2,.68,1) 0.3s both;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-left: 12px;
}
.cookie-banner button {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 18px;
  padding: 8px 22px;
  border-radius: 24px;
  margin: 0;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--brand-pink);
  box-shadow: 0 2px 5px rgba(65,234,212,0.09);
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.18s, color 0.12s, transform 0.14s;
}
.cookie-banner button.accept {
  background: var(--fun-green);
  color: #fff;
  border: 2px solid var(--brand-pink);
}
.cookie-banner button.accept:hover {
  background: var(--brand-cyan);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: #fff;
  color: var(--brand-yellow);
  border: 2px solid var(--primary);
}
.cookie-banner button.reject:hover {
  background: #ffe8c6;
  color: var(--brand-pink);
}
.cookie-banner button.settings {
  background: var(--brand-pink);
  color: #fff;
  border: 2px solid var(--primary);
}
.cookie-banner button.settings:hover {
  background: var(--brand-cyan);
  color: var(--brand-pink);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%,50vh) scale(0.7);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 72px rgba(26,54,93,0.19);
  z-index: 13000;
  min-width: 330px;
  max-width: 94vw;
  width: 420px;
  padding: 32px 20px 25px 23px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s, transform 0.38s cubic-bezier(.81,2,.44,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,0) scale(1);
}
.cookie-modal h3 {
  font-size: 24px;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.cookie-modal ul {
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.cookie-category label {
  flex: 1 1 auto;
  font-family: 'Roboto', sans-serif;
  color: var(--primary);
  font-size: 16px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--brand-pink);
  margin-left: 12px;
}
.cookie-modal .essential-label {
  color: var(--fun-green);
  font-weight: bold;
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal button {
  font-size: 17px;
  font-family: 'Bebas Neue',sans-serif;
  border-radius: 22px;
  padding: 6px 20px;
  border:2px solid var(--primary);
  color: var(--primary);
  background: var(--brand-yellow);
  transition: background 0.15s, color 0.12s;
}
.cookie-modal button.save {
  background: var(--brand-cyan);
  color: var(--primary);
  font-weight: bold;
}
.cookie-modal button.close {
  background: var(--brand-pink);
  color: #fff;
}

/* FOOTER */
footer {
  background: var(--primary);
  padding: 30px 0 18px 0;
  color: #fff;
  box-shadow: 0 -6px 30px rgba(26,54,93,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-yellow);
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.7px;
  padding: 5px 10px;
  border-radius: 15px;
  transition: background 0.15s, color 0.15s;
  text-transform: uppercase;
}
.footer-nav a:hover {
  background: var(--brand-pink);
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  color: #fff;
  opacity: 0.90;
}
.footer-info address {
  font-style: normal;
  color: var(--brand-yellow);
}

/* CONTACT INFO CARDS */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 24px 0 6px 0;
}
.address-card, .email-card, .hours-card {
  background: #fff;
  color: var(--primary);
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(65,234,212,0.10);
  padding: 18px 22px 12px 22px;
  min-width: 210px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  border: 2px solid var(--brand-cyan);
  font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .main-nav {
    padding: 8px 6px;
    gap: 10px;
  }
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .service-cards,
  .card-container,
  .content-grid,
  .testimonial-container,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .feature-item {
    gap: 11px;
  }
  h1, .h1 {
    font-size: 32px;
  }
  h2, .h2 {
    font-size: 22px;
  }
  h3, .h3 {
    font-size: 17px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 13px 10px;
    font-size: 15px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 34px;
  }
  .footer-info, .footer-nav {
    font-size: 14px;
  }
  .address-card, .email-card, .hours-card {
    min-width: 95vw;
    padding: 14px 7px 10px 12px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  h1, .h1 {
    font-size: 25px;
  }
  h2, .h2 {
    font-size: 16px;
  }
  .container, .content-wrapper {
    padding: 0;
    max-width: 100vw;
  }
  .cookie-modal {
    min-width: 85vw;
    width: 94vw;
    padding: 18px 7px 10px 10px;
  }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta-button, .mobile-nav a, .cookie-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.19s;
}
@media (hover: hover) and (pointer: fine){
  .cta-button:hover,
  .main-nav a:hover,
  .service-card:hover,
  .mobile-nav a:hover,
  .cookie-banner button:hover,
  .cookie-modal button:hover {
    filter: brightness(1.04) drop-shadow(0 2px 7px rgba(255,94,175,0.22)); 
  }
}

/* UTILITIES & MISC */
section {
  width: 100%;
}
hr {
  border: none;
  border-top: 2.5px dashed var(--brand-cyan);
  margin: 24px 0;
}
/* extra fun playful element: Colored stickers (randomized if implemented with JS, but static shapes here) */
.section::before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: -18px;
  background: var(--brand-pink);
  border-radius: 62% 43% 65% 38%/44% 63% 38% 62%;
  opacity: 0.12;
  position: relative;
  left: 8px;
  z-index: 0;
}
.section:nth-child(even)::before {
  background: var(--brand-cyan);
  left: auto;
  right: 8px;
  margin-left: auto;
}

::-webkit-scrollbar {
  width: 9px;
  background: var(--brand-yellow);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-pink);
  border-radius: 7px;
  border: 2px solid var(--brand-yellow);
}

/* ACCESSIBILITY & FOCUS */
a:focus, button:focus, .cta-button:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2.5px solid var(--brand-cyan);
  outline-offset: 3px;
  background: var(--accent);
  color: var(--primary);
}

/* PREVENT ABSOLUTE CONTENT OVERLAPPING */
.card, .service-card, .testimonial-card {
  position: relative;
  z-index: 1;
}

/* LEGAL & POLICY PAGES */
.text-section h3 {
  margin-top: 12px;
  margin-bottom: 7px;
  color: var(--brand-blue);
  font-family: 'Bebas Neue', Arial Black, sans-serif;
  text-transform: uppercase;
  font-size: 19px;
}
.text-section h4, .text-section h5 {
  margin-top: 6px;
  margin-bottom: 5px;
  font-size: 16px;
}
.text-section p, .text-section ul {
  font-size: 15px;
  margin-bottom: 8px;
}

/* VISUAL HIERARCHY */
.content-wrapper > h2 {
  margin-top: 6px;
  margin-bottom: 10px;
}
.content-wrapper > h1 {
  margin-bottom: 10px;
}

/* MINIMAL BUMP FOR LAST ELEMENT */
.content-wrapper > *:last-child {
  margin-bottom: 0px;
}

/* WHITE SPACE, CARDS, SHADOWS, ROUNDED CORNERS INCLUDED ABOVE */

/* ENSURE NO ABSOLUTE POSITIONS FOR CONTENT ELEMENTS */
/* (The only absolute/fixed positions are decorative, or explicit overlays such as burger & cookie banner/modal) */
