/* 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 {
  height: 100%;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F0F4F8;
  color: #1C3355;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #3F8E51;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.65,0,.35,1);
}
a:hover, a:focus {
  color: #F46800;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 0.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.625rem; color: #F46800; margin-bottom: 24px; line-height: 1.1; }
h2 { font-size: 2rem; color: #3F8E51; margin-bottom: 20px; }
h3 { font-size: 1.375rem; color: #1C3355; margin-bottom: 14px; }
h4 {
  font-size: 1.2rem;
  color: #1C3355;
}
p {
  margin-bottom: 1em;
  font-size: 1.125rem;
  color: #1C3355;
}
strong, b {
  font-weight: bold;
  color: #1C3355;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 30px rgba(28, 51, 85, 0.09), 0 1.5px 6px 1.5px rgba(244,104,0,0.07);
  position: relative;
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  padding-bottom: 10px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-list > div {
  flex: 1 1 220px;
  background: #F8F6FB;
  border-radius: 18px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(33,154,242,0.07);
  transition: transform 0.2s cubic-bezier(.7,1,.3,1), box-shadow 0.2s cubic-bezier(.7,1,.3,1);
  position: relative;
  min-width: 220px;
}
.service-list > div:hover {
  transform: translateY(-5px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 24px rgba(63,142,81,0.17), 0 2px 7px rgba(244,104,0,0.12);
}
.cta {
  display: inline-flex;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F46800;
  color: #fff !important;
  border: none;
  border-radius: 48px;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 14px 32px;
  margin-top: 14px;
  box-shadow: 0 3px 8px rgba(244,104,0,0.07);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.18s cubic-bezier(.7,1,.3,1), transform 0.18s cubic-bezier(.7,1,.3,1), box-shadow 0.18s cubic-bezier(.7,1,.3,1);
  outline: none;
  align-items: center;
  justify-content: center;
}
.cta:hover, .cta:focus {
  background: #1C3355;
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 6px 24px rgba(28,51,85,0.18), 0 2px 9px rgba(244,104,0,0.14);
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.065rem;
}
header nav a {
  color: #1C3355;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 500;
  position: relative;
  transition: background 0.14s, color 0.14s;
}
header nav a:not(.cta):hover, header nav a:not(.cta):focus {
  background: #F0F4F8;
  color: #F46800;
}
header nav a.cta {
  margin-left: 12px;
}
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 9px rgba(28, 51, 85, 0.08);
  position: sticky;
  top: 0;
  z-index: 1102;
}
header img {
  height: 40px;
  margin-right: 8px;
}
/* Mobile navigation */
.mobile-menu-toggle {
  display: none;
  background: #3F8E51;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 18px;
  transition: background 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F46800;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 30px rgba(28,51,85,0.12);
  z-index: 1301;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,1,.3,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px 18px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -12px 0 56px rgba(63,142,81,0.18);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 18px;
  background: #F46800;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.45rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1C3355;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 62px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.26rem;
  color: #1C3355;
  padding: 12px 16px;
  border-radius: 22px;
  background: #F0F4F8;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F46800;
  color: #fff;
}
@media (max-width: 1020px) {
  nav {
    gap: 7px;
  }
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  section {
    padding: 28px 6vw;
  }
}
@media (max-width: 820px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}
@media (min-width: 821px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}
@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.10rem; }
  section { padding: 22px 4vw; margin-bottom: 38px; }
  .service-list {
    gap: 12px;
  }
  .service-list > div {
    min-width: unset;
    padding: 17px 8px;
  }
  .container {
    padding: 0 1vw;
  }
}
/* Cards, Testimonial, Features, Content-Grid, Section Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F8F6FB;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(33,154,242,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 24px 20px 24px;
  min-width: 230px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover,
.card:focus {
  transform: scale(1.03) rotate(-1.5deg);
  box-shadow: 0 8px 24px rgba(63,142,81,0.22), 0 2px 12px rgba(244,104,0,0.19);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 28px;
  margin-bottom: 24px;
  background: #F0F4F8;
  border-radius: 19px;
  box-shadow: 0 4px 22px rgba(63,142,81, 0.08);
  border-left: 7px solid #F46800;
  max-width: 560px;
  width: 100%;
  font-size: 1.18rem;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 34px rgba(246,104,0,0.16), 0 2px 14px rgba(28, 51, 85, 0.08);
  background: #fffcea;
}
.testimonial-card blockquote {
  color: #1C3355;
  margin-bottom: 0.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: left;
}
.testimonial-card cite {
  color: #3F8E51;
  font-style: normal;
  font-size: 1rem;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
/* Footer */
footer {
  margin-top: 30px;
  background: #fff;
  padding: 36px 24px 12px 24px;
  width: 100%;
  box-shadow: 0 -4px 34px rgba(28, 51, 85, 0.04);
  border-radius: 23px 23px 0 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 8px;
}
footer a {
  color: #1C3355;
  padding: 4px 10px;
  border-radius: 18px;
  transition: background 0.15s;
}
footer a:hover, footer a:focus {
  background: #F0F4F8;
  color: #F46800;
}
footer p {
  font-size: 1rem;
  text-align: left;
  color: #8591a5;
  margin-top: 9px;
}
/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2002;
  background: #fff;
  box-shadow: 0 -4px 32px rgba(28,51,85,0.08), 0 -1px 8px rgba(246,104,0,0.02);
  padding: 22px 12vw 22px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  border-radius: 19px 19px 0 0;
  animation: cookie-banner-fadein 0.6s cubic-bezier(.7,1,.3,1);
}
@keyframes cookie-banner-fadein {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #1C3355;
  font-size: 1.065rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn {
  background: #3F8E51;
  color: #fff;
  border: none;
  border-radius: 31px;
  font-size: 1.01rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  margin-left: 12px;
  padding: 11px 24px;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  outline: none;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #F46800;
  color: #fff;
  transform: scale(1.07);
}
.cookie-banner .settings-btn {
  background: #F46800;
  color: #fff;
  margin-left: 8px;
  margin-right: 4px;
}
.cookie-banner .reject-btn {
  background: #e54b3c;
  color: #fff;
  margin-left: 8px;
}
@media (max-width: 684px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 16px 10px;
    gap: 14px;
  }
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(28,51,85,0.24);
  z-index: 3001;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.34s, opacity 0.34s cubic-bezier(.7,1,.3,1);
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 9px 38px rgba(63,142,81,0.11);
  padding: 44px 26px 34px 26px;
  min-width: 285px;
  max-width: 96vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookie-modal-appear 0.5s cubic-bezier(.7,1,.3,1);
}
@keyframes cookie-modal-appear {
  from { transform: scale(.86); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  color: #F46800;
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.cookie-category {
  margin-bottom: 16px;
  width: 100%;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #1C3355;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  margin-left: 8px;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F0F4F8;
  border-radius: 24px;
  transition: background 0.16s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: #F46800;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.16s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 26px;
}
.cookie-modal-actions .cookie-btn {
  background: #3F8E51;
}
.cookie-modal-actions .cookie-btn:hover, .cookie-modal-actions .cookie-btn:focus {
  background: #F46800;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: #F46800;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #1C3355;
}
/* Animations and Playful Elements */
.cta, .cookie-btn, .mobile-menu-toggle, .card, .service-list > div, .testimonial-card {
  transition: box-shadow 0.18s cubic-bezier(.7,1,.3,1), background 0.18s, color 0.16s, transform 0.14s;
}
/* Fun Playful Shadow Animations on Section Hover */
section:hover {
  box-shadow: 0 12px 54px rgba(246,104,0,0.13), 0 4px 19px rgba(63,142,81,0.06);
  transform: translateY(-4px) scale(1.012);
  animation: playful-bounce 0.38s cubic-bezier(.59, 1.45, .53, .94);
}
@keyframes playful-bounce {
  0%   {transform: translateY(0) scale(1);}
  35%  {transform: translateY(-7px) scale(1.03);}
  100% {transform: translateY(-4px) scale(1.01);}
}
/* Playful Dots Decorations for Section - fun on larger screens */
@media (min-width: 1100px) {
  section::after {
    content: '';
    position: absolute;
    right: 42px;
    top: 18px;
    width: 32px;
    height: 32px;
    background: #F46800;
    opacity: 0.10;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: playful-dot 3s infinite alternate ease-in-out;
  }
  section::before {
    content: '';
    position: absolute;
    left: 33px;
    bottom: 31px;
    width: 18px;
    height: 18px;
    background: #3F8E51;
    opacity: 0.15;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: playful-dot 2.4s infinite alternate-reverse ease-in-out;
  }
}
@keyframes playful-dot {
  0% { transform: scale(1) rotate(0deg); opacity: 0.08;}
  70% { transform: scale(1.25) rotate(10deg); opacity: 0.17;}
  100% { transform: scale(1.12) rotate(-6deg); opacity: 0.15;}
}
/* Typography - Playful/Dynamic headings font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
}
h1,h2,h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Responsive adjustments for flex containers */
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
/* General List Styles - playful check bullet on service list */
.service-list h3{
    font-size: 1.22rem;
    color: #F46800;
    margin-bottom: 9px;
}
.service-list p {
    font-size: 1.04rem;
    color: #1C3355;
    margin-bottom: 2px;
}
ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
  color: #1C3355;
  font-size: 1rem;
}
ul li:before {
  content: '\2713';
  position: absolute;
  left: 1px;
  font-size: 1em;
  color: #3F8E51;
  font-weight: bold;
  line-height: 1;
}
ol li {
  margin-bottom: 7px;
  font-size: 1rem;
  color: #1C3355;
  padding-left: 0;
}
/* Section spacing, section rule enforcement */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Accessibility and contrast - reviews in readable contrast */
.testimonial-card,
.testimonial-card cite,
.testimonial-card blockquote {
  background-color: #F0F4F8!important;
  color: #1C3355!important;
}
/* General form styles */
input, textarea, select {
  border-radius: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 10px;
  border: 1.7px solid #1C3355;
  outline: none;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border-color: #F46800;
}
button {
  font-family: inherit;
}

/* PLAYFUL FONT-FACE FALLBACKS */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.gstatic.com/s/montserrat/v26/JTUQjIg1_i6t8kCHKm459WxZ.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me4xM.ttf') format('truetype');
}

/* Remove scroll on modal/banner open (handled by js) */
body.cookie-modal-open {
  overflow: hidden;
}

/* Utility: visually-hidden */
.visually-hidden {
  display: none !important;
  width: 0; height: 0; position: absolute; left: -9999px;
}

/* Demo: Hide js-unavailable elements unless js is enabled */
.js-unavailable { display: none; }
