/* --------------------------------------------------
 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F5F5F5;
  font-family: 'Arial', 'Montserrat', sans-serif;
  color: #244160;
  min-height: 100vh;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* --------------------------------------------------
 Brand Colors & Font Vars
-------------------------------------------------- */
:root {
  --color-primary: #244160;
  --color-secondary: #B5C9D6;
  --color-accent: #F5F5F5;
  --color-playful-1: #FFD500;
  --color-playful-2: #FF72B1;
  --color-playful-3: #5BE9B9;
  --color-playful-4: #40C7FF;
  --color-dark: #244160;
  --color-light: #fff;
  --color-contrast: #222;
  --shadow-strong: 0 8px 32px rgba(36,65,96,0.08);
  --shadow-soft: 0 4px 12px rgba(36,65,96,0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Arial', 'Montserrat', sans-serif;
}

/* --------------------------------------------------
 Typography
-------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--color-accent);
  color: var(--color-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.22;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 16px;
}
strong {
  color: var(--color-playful-2);
  font-weight: 700;
}
cite {
  font-style: italic;
  font-size: 0.95em;
  color: var(--color-dark);
}

/* Fun, playful font for highlights */
h1, h2, .btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------
 Containers & Layout
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  padding: 24px;
}
.card:hover {
  transform: translateY(-8px) scale(1.02) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(36,65,96,0.13);
}

.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: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: var(--color-playful-3);
  color: #222;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  font-size: 1.125rem;
  min-width: 200px;
  max-width: 540px;
}
.testimonial-card p {
  color: #222;
}
.testimonial-card cite {
  color: #244160;
  font-weight: bold;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(36,65,96,0.14);
  transform: rotate(-2deg) scale(1.01);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 16px;
  background: var(--color-playful-1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  transition: transform 0.25s;
}
.feature-item:hover {
  transform: scale(1.04) rotate(2deg);
}

/* --------------------------------------------------
 Animations: playful_dynamic bounce & fade-in
-------------------------------------------------- */
@keyframes playfulBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-8px) rotate(-3deg); }
  50% { transform: translateY(4px) rotate(2deg); }
  75% { transform: translateY(-2px) rotate(-2deg); }
}
[data-animate], .btn-primary, .mobile-menu-toggle {
  animation: playfulBounce 1.4s cubic-bezier(.45,.09,.4,1.36) infinite alternate;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}
.section, .hero, .card, .testimonial-card, .btn-primary {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.1s;
}

.hero, .hero.thank-you {
  background: linear-gradient(90deg, var(--color-playful-4) 20%, var(--color-accent) 90%);
  padding: 48px 0 38px 0;
  margin-bottom: 34px;
  position: relative;
  min-height: 280px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 2px 24px rgba(64,199,255,0.10);
}
.hero .content-wrapper {
  text-align: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: #244160EE;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* --------------------------------------------------
 Headers, Navigation, Burger Menu
-------------------------------------------------- */
header {
  background: var(--color-primary);
  color: var(--color-light);
  box-shadow: 0 1px 8px rgba(36,65,96,0.03);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 22;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding: 12px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--color-light);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-playful-2);
  color: var(--color-primary);
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  z-index: 1;
  background: var(--color-playful-2);
  color: var(--color-dark);
  border: none;
  border-radius: 32px;
  font-size: 1.12rem;
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: var(--shadow-strong);
  margin-left: 8px;
  margin-top: 6px;
  letter-spacing: 0.03em;
  transition: background 0.26s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  cursor: pointer;
  position: relative;
  animation-delay: 0.25s;
}
.btn-primary:focus, .btn-primary:hover {
  background: var(--color-playful-1);
  color: var(--color-dark);
  box-shadow: 0 4px 16px #FFD50044;
  transform: scale(1.06) rotate(-1deg);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-playful-2);
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  outline: none;
  margin-left: 10px;
  box-shadow: 0 2px 14px rgba(255,114,177,0.08);
  border: 2px solid var(--color-primary);
  transition: background 0.15s, color 0.16s, transform 0.12s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-playful-1);
  color: var(--color-dark);
  transform: scale(1.13) rotate(3deg);
}

/* --------------------------------------------------
 Mobile Menu Overlay
-------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-playful-4);
  color: var(--color-dark);
  z-index: 3333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.68,-0.3,.32,1.4), opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-playful-2);
  color: var(--color-dark);
  font-size: 2.05rem;
  border-radius: 50%;
  width: 44px; height: 44px;
  margin: 24px 24px 0 0;
  border: 2px solid var(--color-dark);
  transition: background 0.13s, color 0.13s, transform 0.1s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-playful-1);
  color: var(--color-primary);
  transform: scale(1.09) rotate(-5deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 44px 0 0 32px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 10px 24px;
  border-radius: 22px;
  font-weight: 700;
  transition: background 0.13s, color 0.12s;
  margin-bottom: 12px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-playful-3);
  color: var(--color-dark);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Show desktop nav on larger screens, hide mobile */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none!important;
  }
}

/* --------------------------------------------------
 Features, Cards, List Items
-------------------------------------------------- */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li, .service-list li {
  background: var(--color-playful-1);
  color: var(--color-dark);
  font-size: 1.09rem;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s;
}
.feature-grid li:hover, .service-list li:hover {
  background: var(--color-playful-4);
  box-shadow: var(--shadow-strong);
  color: var(--color-primary);
}
.feature-grid img, .service-list img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 3px;
}

/* Address / contact blocks */
.address-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.address-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 9px;
}

.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info h3 {
  margin-top: 0;
}
.contact-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.contact-map img {
  width: 34px;
  height: 34px;
}

/* Call to Action Section */
.cta, .cta-faq {
  background: var(--color-playful-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 38px 16px;
  margin-bottom: 44px;
  margin-top: 38px;
}
.cta h3, .cta-faq h3 {
  font-size: 2rem;
}
.cta .btn-primary, .cta-faq .btn-primary {
  margin-top: 18px;
}

/* FAQ Styles */
.faq > .container > .content-wrapper > div {
  margin-bottom: 38px;
}
.faq h3 {
  font-size: 1.23rem;
  color: var(--color-playful-2);
  margin-top: 16px;
}
.faq p {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* Legal pages */
.legal {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: 26px;
}
.legal ul li {
  padding-left: 0px;
  margin-bottom: 8px;
}

/* --------------------------------------------------
 Card Patterns
-------------------------------------------------- */
.card-container {
  margin-bottom: 28px;
}

/* Testimonial section visual separator */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-playful-3) linear-gradient(110deg, var(--color-playful-3) 80%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonial-card {
  margin-bottom: 20px;
  align-items: flex-start;
}

/* --------------------------------------------------
 Footer
-------------------------------------------------- */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 24px 0 0 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 16px 0;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-light);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.005em;
  opacity: 0.7;
  transition: opacity 0.16s, color 0.18s;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--color-playful-2);
  background: #fff2;
}
.footer-contact {
  font-size: 0.98rem;
}
.footer-contact a {
  color: var(--color-playful-1);
  font-weight: bold;
  text-decoration: underline;
}
footer img {
  height: 40px;
}

/* --------------------------------------------------
 Cookie Consent Banner
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-playful-2);
  color: var(--color-dark);
  z-index: 2222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 20px 20px;
  box-shadow: 0 -2px 24px rgba(255,114,177,0.14);
  font-family: var(--font-display);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  animation: fadeInUp 0.65s 0.14s backwards;
}
.cookie-banner__text {
  font-size: 1.02rem;
  margin-right: 20px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-banner__btn {
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 1rem;
  background: var(--color-playful-1);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  margin-left: 4px;
  box-shadow: 0 2px 8px #FFD50044;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.12s;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: var(--color-playful-4);
  color: var(--color-dark);
  transform: scale(1.05);
}
.cookie-banner__btn--settings {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-playful-1);
}
.cookie-banner__btn--settings:hover {
  background: var(--color-playful-3);
  color: var(--color-dark);
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 4444;
  transform: translate(-50%, -48%) scale(0.95);
  background: #fff;
  min-width: 320px; max-width: 96vw;
  width: 424px;
  box-shadow: 0 8px 60px rgba(36,65,96,0.18);
  border-radius: 28px;
  padding: 32px 30px 30px 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.31s, transform 0.33s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -55%) scale(1);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal__close {
  background: var(--color-playful-2);
  color: var(--color-dark);
  border-radius: 50%;
  border: 1.5px solid var(--color-primary);
  width: 36px; height:36px;
  font-size: 1.55rem;
  display: flex;
  align-items: center; justify-content: center;
  transition: background 0.14s, color 0.11s, transform 0.09s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--color-playful-1);
  color: var(--color-primary);
  transform: scale(1.13) rotate(-5deg);
}
.cookie-modal__categories {
  margin: 24px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color-secondary);
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-category__desc {
  font-size: 1rem;
}
.category-toggle {
  margin-left: 18px;
  width: 44px;
  height: 26px;
  position: relative;
  display: inline-block;
}
.category-toggle input[type="checkbox"] {
  width: 44px;
  height: 26px;
  opacity: 0;
}
.category-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-secondary);
  border-radius: 13px;
  transition: background 0.2s;
}
.category-toggle input:checked + .slider {
  background: var(--color-playful-4);
}
.category-toggle .slider:before {
  content: "";
  position: absolute;
  height: 20px; width: 20px;
  border-radius: 50%;
  left: 3px; bottom: 3px;
  background: var(--color-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.13);
  transition: 0.2s;
}
.category-toggle input:checked + .slider:before {
  transform: translateX(18px);
  background: var(--color-playful-1);
}

.cookie-modal__actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal__actions .cookie-banner__btn {
  margin: 0;
}

/* Modal overlay */
.cookie-modal__overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.22);
  z-index: 4443;
  pointer-events: all;
  opacity: 0.38;
}

/* --------------------------------------------------
 Responsive Styles (Mobile First)
-------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .container, .content-wrapper {
    padding: 0 10px;
  }
}

@media (max-width: 820px) {
  .content-wrapper {
    padding: 0 5px;
    max-width: 100%;
  }
  .footer-flex {
    flex-direction: column;
    gap: 8px;
  }
  .hero {
    padding: 36px 0;
    border-radius: 0 0 18px 18px;
  }
}
@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;
    gap: 10px;
  }
  .section, .features, .testimonials {
    padding: 28px 5px;
    margin-bottom: 34px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .card-container, .testimonial-card {
    flex-direction: column;
    gap: 16px;
  }
  .hero h1{
    font-size: 1.7rem;
  }
  .hero, .cta, .cta-faq {
    padding: 28px 4px;
    border-radius: 0 0 20px 20px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 12px 14px 12px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1rem;
    padding: 16px 8px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 4px 6px;
  }
  .card {
    padding: 14px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 3px;
  }
  h1{
    font-size: 1.18rem;
  }
  h2{
    font-size: 1.05rem;
  }
  .cta, .cta-faq, .hero {
    padding: 18px 2px;
  }
  .footer-flex {
    gap: 4px;
    padding: 0 6px 10px 6px;
  }
  .mobile-menu {
    padding: 0 0 0 2px;
  }
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 7px 8px;
  }
}

/* --------------------------------------------------
 Utility Classes
-------------------------------------------------- */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 2px!important; }
.mb-2 { margin-bottom: 2px!important; }
.mt-8 { margin-top: 8px!important; }
.mb-8 { margin-bottom: 8px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mt-32 { margin-top: 32px!important; }
.mb-32 { margin-bottom: 32px!important; }

/*****************************************************
 PLAYFUL DECORATIVE EXTRAS (no absolute on cards themselves)
*****************************************************/
.card[data-animate]::before, .testimonial-card[data-animate]::before {
  content: '';
  display: block;
  position: absolute;
  left: 12px;
  top: -16px;
  width: 48px;
  height: 12px;
  background: var(--color-playful-1);
  border-radius: 6px;
  z-index: 1;
  opacity: 0.13;
}
.card[data-animate]::after, .testimonial-card[data-animate]::after {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  bottom: -14px;
  width: 28px;
  height: 8px;
  background: var(--color-playful-4);
  border-radius: 6px;
  z-index: 1;
  opacity: 0.14;
}

/* END CSS */
