/* ==== 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F9FAFF;
  color: #22313F;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  position: relative;
}
a {
  color: #22313F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EB5757;
  outline: none;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: inline-block;
}
ul, ol {
  margin-left: 1.5em;
  padding-left: 0.5em;
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
th, td {
  border: 1px solid #F4D06F;
  padding: 10px 12px;
  text-align: left;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  margin-bottom: 16px;
  color: #22313F;
}
h1 { font-size: 2.25rem; letter-spacing: -1px; line-height: 1.15; }
h2 { font-size: 1.75rem; line-height: 1.18; }
h3 { font-size: 1.25rem; line-height: 1.22; }
h4, h5, h6 { font-size: 1rem; font-weight: 700; }
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22313F;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* ====== PLAYFUL_DYNAMIC COLORS ====== */
:root {
  --color-primary: #22313F;
  --color-secondary: #F4D06F;
  --color-accent: #EB5757;
  --color-accent-alt: #C0392B;
  --color-bg: #F9FAFF;
  --color-white: #FFFFFF;
  --color-contrast: #22313F;
  --color-light: #F6F8FB;
  --shadow-card: 0 6px 20px rgba(34,49,63,0.10), 0 1.5px 3px rgba(34,49,63,0.07);
}

/* ====== LAYOUT CONTAINERS (Flexbox only!) ====== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  position: relative;
  transition: transform 0.13s cubic-bezier(.25,1,.5,1), box-shadow 0.13s;
}
.card:hover {
  transform: translateY(-3px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 12px 32px 0 rgba(235, 87, 87, 0.12), var(--shadow-card);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 16px 0 rgba(235, 87, 87, 0.07), var(--shadow-card);
  background: var(--color-white);
  border-left: 8px solid var(--color-secondary);
  font-family: 'Roboto', Arial, sans-serif;
  color: #22313F;
  transition: border-color 0.2s, box-shadow 0.16s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 32px rgba(244, 208, 111, 0.08), var(--shadow-card);
}
.testimonial-card p {
  font-size: 1.06rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #22313F;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: bold;
}

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

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(120deg, #F4D06F 80%, #EB5757 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 6px 24px -6px #EB5757;
  padding-top: 56px;
  padding-bottom: 56px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.4rem;
  font-weight: 900;
  filter: drop-shadow(2px 3px 0 var(--color-white));
}
.hero p {
  color: var(--color-accent-alt);
  font-size: 1.14rem;
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.1px;
}
.hero .btn-primary {
  margin-top: 12px;
}

/* ==== BUTTONS ==== */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 16px 32px;
  border-radius: 500px;
  border: none;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 4px;
  box-shadow: 0 4px 12px rgba(235,87,87,0.13);
  transition: background 0.18s, transform 0.18s, box-shadow 0.16s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
  transform: translateY(-2px) scale(1.08) rotate(-0.6deg);
  box-shadow: 0 7px 40px rgba(244,208,111,0.10), 0 2px 4px rgba(34,49,63,0.08);
  outline: none;
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: 500px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(244,208,111,0.08);
  transition: background 0.13s, color 0.14s;
}
.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ==== CARDS & SERVICE CARDS ==== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.service-card {
  flex: 1 1 220px;
  background: var(--color-white);
  padding: 24px 20px 22px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 210px;
  transition: box-shadow 0.17s, transform 0.15s;
  border: 2.5px dashed var(--color-secondary);
  position: relative;
}
.service-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--color-accent);
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  color: var(--color-primary);
}
.service-card:hover {
  transform: rotate(1deg) scale(1.04) translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 40px 0 rgba(244,208,111, 0.19), var(--shadow-card);
}

/* ==== LISTS ==== */
ul li, ol li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 32px;
  line-height: 1.7;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 6px;
  box-shadow: 0 1px 3px #fae49e66;
}
ul li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 0.4em;
  margin-left: -32px;
  position: absolute;
  left: 0px;
  top: 2px;
}

/* ==== MAIN NAVIGATION ==== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px 18px 16px;
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(244,208,111,0.13);
  min-height: 68px;
  z-index: 10;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 18px;
  position: relative;
  transition: background 0.17s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: var(--color-secondary);
  color: var(--color-accent) !important;
  outline: none;
}
.header-inner > a img {
  width: 160px;
  height: auto;
  margin-right: 10px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.5rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 14px;
  z-index: 22;
  transition: color 0.13s;
}
.mobile-menu-toggle:focus {
  color: var(--color-accent);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #F4D06F 70%, #22313F 100%);
  box-shadow: 0 0 40px #EB575766;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.19,1,.22,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-accent-alt);
  font-weight: 700;
  margin-left: 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 10001;
  align-self: flex-start;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  padding: 18px 0;
  width: 100%;
  border-radius: 18px;
  font-weight: 700;
  color: var(--color-primary);
  background: none;
  margin-bottom: 2px;
  transition: background 0.14s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-white);
  color: var(--color-accent-alt);
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 32px;
  padding-bottom: 20px;
  border-radius: 32px 32px 0 0;
  margin-top: 48px;
  box-shadow: 0 -4px 24px #F4D06F44;
  width: 100%;
  position: relative;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 18px 24px 18px;
  border-bottom: 1.5px dashed #F4D06F;
}
.footer-top > a img {
  width: 70px;
  height: auto;
  margin-right: 10px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  font-size: 0.98rem;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .01em;
  opacity: 0.88;
  transition: color 0.11s, opacity 0.10s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  opacity:1;
  outline: none;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 26px 0 8px 0;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  transition: filter 0.18s, transform 0.17s;
  filter: grayscale(24%);
}
.footer-social a:hover img {
  transform: scale(1.13) rotate(-7deg);
  filter: none;
}
.footer-bottom {
  font-size: 0.96rem;
  opacity: 0.77;
  text-align: center;
  padding-top: 4px;
  color: #fff;
}

/* ===== CONTACT DETAILS & MAP ==== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 22px 0 12px 0;
  font-size: 1.04rem;
}
.contact-details a {
  color: var(--color-accent);
}
.contact-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 8px 0;
  font-size: 0.98rem;
}
.contact-map img {
  width: 36px;
  height: 36px;
}

/* ==== TABLES ==== */
table {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 10px;
  text-align: left;
}
td {
  font-size: 0.98rem;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 -4px 32px #C0392B33;
  padding: 28px 18px 22px 18px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: transform 0.21s cubic-bezier(.33,1,.4,1), opacity 0.20s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  font-size: 1.03rem;
  margin: 0;
  flex: 1 1 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 19px;
  padding: 11px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.14s, color 0.15s, transform 0.13s;
  box-shadow: 0 1px 5px #00000022;
}
.accept-btn {
  background: var(--color-accent-alt);
  color: #fff;
}
.accept-btn:hover, .accept-btn:focus {
  background: #EB5757;
  color: #fff;
  transform: scale(1.09);
}
.reject-btn {
  background: var(--color-white);
  color: var(--color-accent-alt);
}
.reject-btn:hover, .reject-btn:focus {
  color: #fff;
  background: var(--color-accent);
  transform: scale(1.07);
}
.cookie-settings-btn {
  background: var(--color-primary);
  color: var(--color-secondary);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F4D06F;
  color: var(--color-accent);
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,63,0.13);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.18s;
}
.cookie-modal-hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 420px;
  width: 97vw;
  padding: 30px 26px 22px 26px;
  box-shadow: 0 7px 40px #C0392B27;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-in 0.26s cubic-bezier(.19,1,.22,1);
}
@keyframes modal-in {
  from { transform: translateY(60px) scale(0.94); opacity:0.5; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 1px;
  color: var(--color-primary);
  font-weight: 800;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0 5px;
  font-size: 1rem;
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #F4D06F;
  border-radius: 15px;
  position: relative;
  outline: none;
  margin-right: 6px;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--color-accent);
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: transform 0.17s;
}
.cookie-switch:checked:before {
  transform: translateX(18px);
  background: var(--color-secondary);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 5px;
}

/* ==== ANIMATIONS/MICRO-INTERACTIONS ==== */
.section, .card, .service-card, .testimonial-card, .btn-primary {
  will-change: transform, box-shadow, border;
  transition: box-shadow 0.16s, transform 0.18s;
}

/* Fun fonts playful headings and details! */
h1, h2, h3, .btn-primary {
  text-shadow: 2px 2px 0 #f4d06f38, 1.5px 1.5px 0 #EB575705;
}

/* ==== RESPONSIVE (MOBILE-FIRST) ==== */
@media (max-width: 1020px) {
  .footer-top { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 980px) {
  .container { max-width: 98vw; }
  .main-nav {
    gap: 7px;
  }
  .footer-top { flex-direction: column; gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 100%; }
  .header-inner > a img {
    width: 110px;
  }
  .main-nav {
    display: none !important;
  }
  .btn-primary { font-size: 1rem; padding: 13px 18px; }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-top {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 4px 16px 4px;
  }
  .hero {
    padding-top: 36px; padding-bottom: 36px;
    border-radius: 0 0 26px 26px;
    min-height: unset;
  }
  .service-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 16px;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 34px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    font-size: 1rem;
    padding: 18px 4px 12px 4px;
  }
}
@media (max-width: 530px) {
  .footer-bottom { font-size: 0.90rem; }
  .footer-contact img { width: 13.5px; height: 13.5px; }
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.19rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.15rem; }
  .footer-social a img { width: 19px; height:19px; }
  .service-card, .card { padding: 13px; }
}

/* ==== EXTRAS: TEXT SECTIONS, CONTENT SPACING, VISUAL HIERARCHY ==== */
.text-section {
  padding: 0 0 8px 0;
}
.text-section h1, .text-section h2, .text-section h3 {
  margin-bottom: 12px;
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
}
.text-section p { margin-bottom: 16px; }

/* ==== ENSURE NON-OVERLAPPING/PADDING ==== */
.card, .service-card, .testimonial-card, .feature-item {
  margin-right: 0;
}
.card:not(:last-child), .service-card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.section + .section { margin-top: 0; }

/* ==== VISUAL HIERARCHY ADJUSTMENTS ==== */
h1 { margin-bottom: 16px; }
h2 { margin-bottom: 10px; }
h3 { margin-bottom: 7px; }
.section h2, .content-wrapper > h2 { margin-top: 6px; margin-bottom: 18px; }

/* ==== MODAL Z-INDEXS ALL HIGH FOR OVERLAY/COOKIE ==== */
.cookie-modal-overlay, .cookie-modal {
  z-index: 100000 !important;
}
.mobile-menu { z-index: 9999; }
@media (max-width: 980px) {
  .section, .footer-top, .footer-nav { padding-left: 0; padding-right: 0; }
}

/* ==== Miscellaneous fun & playful accents ==== */
.hero:after {
  content: '';
  display: block;
  width: 120px; height: 120px;
  background: #FBECE0;
  border-radius: 50%;
  position: absolute;
  top: -40px; right: -60px;
  z-index: 0;
  opacity: 0.35;
  pointer-events: none;
  animation: bubble-bounce 2.3s infinite alternate cubic-bezier(.27,.99,.71,1.22);
}
@keyframes bubble-bounce {
  from { transform: translateY(0) scale(1);  }
  to { transform: translateY(16px) scale(1.05); }
}

/* playful underline accents for headings */
h2 {
  position:relative;
}
h2:after {
  content: '';
  display: block;
  width: 38px; height: 5px;
  background: var(--color-accent);
  border-radius: 8px;
  margin-top: 8px;
  opacity: 0.8;
}

/* === Some vibrant playful focus outlines for nav and button === */
:focus {
  outline: 2.5px dashed var(--color-accent-alt);
  outline-offset: 3px;
}

/* ==== PRINT STYLES ==== */
@media print {
  .header-inner, .main-nav, .footer-top, .footer-nav, .footer-social, .footer-bottom, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, .btn-primary, .btn-secondary, .cookie-btn { display: none !important; }
  body { background: #fff !important; }
  section, .container, .section { box-shadow: none !important; background: #fff !important; }
}
