/* CSS RESET & BASES */
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 {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2C366A;
  background: #F5F5F6;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
}
img, svg {
  max-width: 100%;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #2C366A;
  text-decoration: none;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  color: #2C366A;
  font-weight: 700;
  letter-spacing: 0.014em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 22px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
}
small {
  font-size: 0.85em;
  opacity: 0.7;
}

/* CONTAINER AND LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}

@media (min-width: 900px) {
  .container {
    padding: 0 32px;
  }
  .section {
    padding: 58px 0;
  }
}

/* HEADER NAV */
header {
  background: #A8C0E0;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(44,54,106,0.06);
  margin-bottom: 20px;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 0;
}
.logo-link {
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Quicksand',Arial,sans-serif;
  font-size: 1.08em;
  padding: 7px 13px;
  border-radius: 12px;
  transition: background 0.20s, color 0.20s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FEC84B;
  color: #2C366A;
}
.cta-primary {
  background: #2C366A;
  color: #fff;
  font-family: 'Quicksand',Arial,sans-serif;
  font-weight: 700;
  font-size: 1.12em;
  border-radius: 20px;
  padding: 12px 32px;
  margin-left: 22px;
  box-shadow: 0 4px 24px 0 rgba(44,54,106,0.12);
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.24s, transform 0.14s, box-shadow 0.21s;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FEC84B;
  color: #2C366A;
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 8px 32px 0 rgba(44,54,106,0.22);
}
.mobile-menu-toggle {
  display: none;
  background: #FEC84B;
  color: #2C366A;
  font-size: 2.1rem;
  line-height: 1;
  border: none;
  border-radius: 50%;
  padding: 4px 13px 5px 13px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(44,54,106,0.09);
  transition: background 0.19s, transform 0.13s;
  z-index: 9002;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #2C366A;
  color: #fff;
  outline: 2px solid #2C366A;
}
@media (max-width: 1020px){
  .main-nav { gap: 12px; }
  .cta-primary { padding: 10px 22px; font-size: 1em; margin-left: 10px; }
}
@media (max-width: 768px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 50px 0 rgba(44,54,106,0.19);
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(.73,.05,.38,1.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition: transform 0.37s cubic-bezier(.73,.05,.38,1.17);
}
.mobile-menu-close {
  color: #2C366A;
  font-size: 2.6rem;
  background: transparent;
  border: none;
  padding: 16px 24px 10px 24px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FEC84B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 36px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.4rem;
  color: #2C366A;
  font-weight: 700;
  border-radius: 10px;
  padding: 7px 14px;
  transition: background 0.18s, color 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FEC84B;
  color: #2C366A;
}

/* HERO SECTION (playful) */
.hero {
  background: linear-gradient(96deg,#FEC84B 0% 60%,#A8C0E0 80% 100%);
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 44px 20px 60px 20px;
  box-shadow: 0 8px 44px 0 rgba(44,54,106,0.10);
  min-height: 320px;
  position: relative;
  animation: heroPop 0.8s cubic-bezier(.65,.06,.38,1.09);
}
.hero h1 {
  color: #2C366A;
  font-size: 2.4rem;
  font-family: 'Quicksand', Arial, sans-serif;
  text-shadow: 0 2px 0 #fff6b9, 0 4px 16px #fec84b30;
}
.hero .subtitle {
  font-size: 1.20rem;
  color: #2C366A;
  margin-bottom: 20px;
}
.hero .cta-primary {
  margin-top: 18px;
  animation: ctaBounce 1.7s 0.5s ease-in-out infinite alternate;
}
@keyframes heroPop {
  0% { opacity: 0; transform: scale(.96) translateY(32px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ctaBounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-9px) scale(1.09); }
}

/* USPs / FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 #a8c0e045;
  flex: 1 1 200px;
  min-width: 210px;
  max-width: 260px;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.22s, box-shadow 0.14s;
}
.feature-grid li:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 5px 28px 0 #2C366A1a;
  z-index: 1;
}
.feature-grid img {
  width: 48px; height: 48px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 8px #fec84b60);
}
.feature-grid h3 {
  font-size: 1.2rem;
  color: #2C366A;
}
.feature-grid p {
  color: #2C366A;
  font-size: 1rem;
}
@media (max-width: 850px) {
  .feature-grid { gap: 15px; }
  .feature-grid li { min-width: 155px; padding: 18px 11px 15px 14px; }
}

/* CONTENT & GENERAL STYLES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 0;
}
.text-section ul {
  margin-left: 14px;
}
.text-section li {
  list-style: disc inside;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cta-link {
  color: #2C366A;
  font-family: 'Quicksand',Arial,sans-serif;
  background: none;
  border-radius: 12px;
  padding: 8px 12px;
  border: 2px solid #2C366A;
  font-weight: 700;
  margin-top: 12px;
  display: inline-block;
  transition: background 0.23s,
    color 0.23s, border 0.20s;
}
.cta-link:hover, .cta-link:focus {
  background: #FEC84B;
  border-color: #FEC84B;
  color: #2C366A;
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 18px 0 36px 0;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 28px 17px 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 3px 19px 0 #a8c0e038;
  position: relative;
  font-size: 1.04em;
  margin-bottom: 14px;
}
.service-list li img {
  width: 40px; height: 40px;
  margin-right: 7px;
  margin-top: 3px;
  filter: drop-shadow(0 1px 5px #FEC84B40);
}
.service-list strong {
  font-weight: bold;
  color: #2C366A;
  font-family: 'Quicksand', Arial, sans-serif;
}
.service-list span {
  color: #2C366A;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 18px 0 #2C366A14;
  padding: 20px 28px;
  margin-bottom: 22px;
  margin-top: 7px;
  border-left: 7px solid #FEC84B;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 29px 0 #2C366A24;
}
.testimonial-card p {
  color: #2C366A;
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-author {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #A8C0E0;
  font-weight: 700;
  font-size: 1.05rem;
  margin-left: 2px;
}

/* CTA BANNER (BOTTOM OF PAGE) */
.cta-banner {
  background: linear-gradient(94deg,#FEC84B 0% 75%,#A8C0E0 90% 100%);
  border-radius: 32px;
  margin-bottom: 60px;
  box-shadow: 0 5px 40px 0 #2C366A11;
  animation: ctaPop 0.8s cubic-bezier(.25,1.14,.48,1.03);
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #2C366A;
}
.cta-banner p {
  color: #2C366A;
  font-size: 1.10rem;
  margin-bottom: 20px;
}
.cta-banner .cta-primary {
  margin-top: 6px;
}
@keyframes ctaPop {
  0% { opacity: 0; transform: scale(.97) translateY(32px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* FOOTER */
footer {
  background: #A8C0E0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -3px 22px 0 #2C366A13;
  margin-top: 46px;
  padding: 19px 0 10px 0;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #2C366A;
  font-size: 1rem;
  font-family: 'Quicksand', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FEC84B;
  color: #2C366A;
}
.branding {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96em;
  color: #2C366A;
  margin-bottom: 2px;
}
.branding img {
  width: 33px; height: 33px;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 21px 30px 21px 22px;
  box-shadow: 0 -2px 24px 0 #2C366A22;
  border-top: 7px solid #FEC84B;
  font-size: 1rem;
  border-radius: 24px 24px 0 0;
  min-height: 54px;
  animation: cookieSlideIn 0.7s cubic-bezier(.79,.04,.39,.97);
}
.cookie-banner p {
  margin: 0; color: #2C366A;
  font-size: 1.02em;
}
.cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-actions button {
  border-radius: 16px;
  padding: 8px 24px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1em;
  border: none;
  margin-left: 0; font-weight: 600;
  cursor: pointer;
  background: #A8C0E0;
  color: #2C366A;
  transition: background 0.19s, color 0.19s;
}
.cookie-actions .accept {
  background: #2C366A;
  color: #fff;
}
.cookie-actions .accept:hover {
  background: #FEC84B;
  color: #2C366A;
}
.cookie-actions .reject {
  background: #FEC84B;
  color: #2C366A;
}
.cookie-actions .reject:hover {
  background: #A8C0E0;
}
.cookie-actions .settings {
  background: #fff;
  color: #2C366A;
  border: 2px solid #2C366A;
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus {
  background: #A8C0E0;
  color: #2C366A;
}
@keyframes cookieSlideIn { from { transform: translateY(100%); opacity: 0; } to { transform: none; opacity: 1; } }

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(44,54,106,0.17);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 44px 0 #2C366A36;
  min-width: 330px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPop 0.53s cubic-bezier(.78,.06,.4,1.14);
}
@keyframes modalPop {
  0% { opacity: 0; transform: scale(.85) translateY(22px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: #2C366A;
  margin-bottom: 13px;
  font-family: 'Quicksand', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-bottom: 12px;
}
.cookie-toggle {
  display: inline-flex;
  width: 45px;
  height: 25px;
  align-items: center;
  background: #F5F5F6;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  border: 1px solid #A8C0E0;
  transition: background 0.14s, border 0.18s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #A8C0E0;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.18s, background 0.13s;
  box-shadow: 0 2px 8px 0 #2C366A15;
}
.cookie-toggle input:checked + span {
  left: 22px;
  background: #2C366A;
}
.cookie-modal .save {
  background: #2C366A;
  color: #fff;
  border-radius: 17px;
  padding: 10px 38px;
  font-family: 'Quicksand', Arial, sans-serif;
  border: none;
  font-size: 1em;
  margin-top: 12px;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal .save:hover { background: #FEC84B; color: #2C366A; }

/* PRESET FLEX SPACING PATTERNS! */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 #2C366A18;
  position: relative;
  transition: box-shadow 0.15s, transform 0.17s;
}
.card:hover { box-shadow: 0 6px 33px 0 #2C366A22; transform: translateY(-4px) scale(1.02); }
.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;
}

/* Misc. Cards & Playful Elements */
.card {
  padding: 32px 30px 28px 28px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.21s, transform 0.13s;
}
.card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.20rem;
  margin-bottom: 6px;
}
.card p {
  color: #2C366A;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* LINKS, BUTTONS, FORMS */
a:focus, button:focus {
  outline: 2px dashed #FEC84B;
  outline-offset: 2px;
  z-index: 5;
}
button {
  font-family: inherit;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.44rem; }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  .section, section {
    padding: 23px 6px;
    margin-bottom: 38px;
    border-radius: 17px;
  }
  .hero, .cta-banner {
    padding: 28px 10px 38px 10px;
    border-radius: 18px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .feature-grid {
    gap: 12px;
  }
  .feature-grid li {
    min-width: 110px;
    max-width: 99vw;
    padding: 14px 7px 11px 7px;
  }
  .service-list li { padding: 10px 11px; font-size: 1em; }
  .footer-nav { gap: 9px; font-size: 1em; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.48rem; line-height: 1.12; }
  h2 { font-size: 1.17rem; }
  .feature-grid { flex-direction: column; gap: 6px; }
  .feature-grid li, .card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 10px 6px 13px 8px;
  }
  .service-list li { flex-direction: column; align-items: flex-start; gap: 8px; }
  .testimonial-card { padding: 10px 7px; border-radius: 14px; }
  .cta-banner, .hero { padding: 17px 4px 19px 4px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
}

/* PLAYFUL DYNAMIC SPECIALS */
::-webkit-scrollbar {
  width: 11px;
  background: #FEC84B20;
}
::-webkit-scrollbar-thumb {
  background: #A8C0E0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2C366A55;
}

/****** FUN FONTS use Google Fonts in HTML, Fallbacks set above ******/

/* Decorative Micro Animations */
a, button, .card, .cta-link, .cta-primary {
  transition: background 0.15s, color 0.17s, transform 0.11s, box-shadow 0.19s;
}
.card:hover, .feature-grid li:hover {
  transform: scale(1.025) rotate(-1deg);
}
.cta-link:active, .cta-primary:active {
  transform: scale(0.98);
}

/* Focus state for accessibility */
:focus-visible {
  outline: 2px dashed #FEC84B !important;
}

/* Energetic icons pop on hover */
.feature-grid img, .service-list li img {
  transition: filter 0.14s, transform 0.17s;
}
.feature-grid li:hover img,
.service-list li:hover img {
  filter: drop-shadow(0 3px 14px #fec84bcc);
  transform: scale(1.16) rotate(-8deg);
}

/* Responsive for Cookie Banner and Modal */
@media(max-width: 610px){
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 17px; padding: 14px 8px; border-radius: 10px 10px 0 0; }
  .cookie-actions { gap: 9px; flex-wrap: wrap; }
  .cookie-modal { min-width: unset; padding: 22px 10px; }
}

/* Utility helpers */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-16 { margin-top: 16px!important; }
.mt-24 { margin-top: 24px!important; }
.hr {
  border: none;
  height: 2px;
  width: 32px;
  background: #FEC84B;
  margin: 14px 0;
  border-radius: 2px;
}

/****** END ******/