/* RESET & BASE -------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F7FA;
  color: #21243b;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
a {
  color: #2E7D60;
  text-decoration: none;
  transition: color .2s cubic-bezier(.63,.09,.57,1.26);
}
a:hover, a:focus {
  color: #FF8C2E;
  outline: none;
}

/* FONT & HEADINGS -------------------------------------------------- */
h1, h2, h3, h4, .cta-btn {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #1E3A5F;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.26rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
}
strong {
  font-weight: 800;
  color: #2196f3;
}

/* SCROLLBAR for playful look ---------------------------------------- */
body::-webkit-scrollbar { background: #FCE75B; width: 10px; }
body::-webkit-scrollbar-thumb { background: #2E7D60; border-radius: 16px; }

/* CONTAINERS & LAYOUT ----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(30,58,95,.08);
}

@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 24px 8px; border-radius: 16px; }
  .container { padding: 0 8px; }
}

/* HEADER NAVIGATION ------------------------------------------------ */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.site-logo img, .footer-logo img {
  height: 42px;
  transition: transform .35s cubic-bezier(.63,-.08,.49,1.27);
}
.site-logo img:hover {
  transform: scale(1.07) rotate(-8deg);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  padding: 5px 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  color: #2E7D60;
  letter-spacing: 0.03em;
  transition: background-color .2s,color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  background: #FCE75B;
  color: #1E3A5F;
  box-shadow: 0 2px 12px rgba(255,140,46,0.08);
}
.cta-btn {
  background: #FCE75B;
  color: #1E3A5F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  padding: 11px 32px;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 2px 12px rgba(255,220,100,0.14);
  font-weight: 700;
  text-shadow: 0 1px 0 #fff5;
  letter-spacing: .03em;
  border: 2px solid #1E3A5F;
  transition: background .15s, box-shadow .3s, transform .2s;
  cursor: pointer;
  outline: none;
  position: relative;
  margin-left: 10px;
  margin-right: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FF8C2E;
  color: #fff;
  box-shadow: 0 5px 24px 0 #2E7D6077;
  border-color: #2E7D60;
  transform: scale(1.045) rotate(-3deg);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 12px;
  }
  .cta-btn { padding: 9px 16px; font-size: 1rem; }
}

/* MOBILE MENU ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: #FF8C2E;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 10px;
  border: 0;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FCE75B;
  color: #1E3A5F;
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,247,250,0.98);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,-0.04,.28,1.06);
  box-shadow: 0 3px 28px #1e3a5f33;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FF8C2E;
  color: #fff;
  border: 0;
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 48px;
  height: 48px;
  margin: 18px 18px 0 0;
  border-radius: 14px;
  box-shadow: 0 2px 10px #ffbe5c11;
  cursor: pointer;
  transition: background .18s, transform .22s;
  z-index: 1212;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FCE75B;
  color: #1E3A5F;
  transform: scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2E7D60;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 600;
  width: 90vw;
  text-align: center;
  transition: background .18s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCE75B;
  color: #1E3A5F;
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* FLEX PATTERNS ---------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px #2e7d6022;
  padding: 28px 20px;
  transition: transform .18s cubic-bezier(.6,-0.04,.45,1.24), box-shadow .18s;
  min-width: 260px;
  flex: 1 0 280px;
}
.card:hover { transform: translateY(-4px) scale(1.018) rotate(-2deg); box-shadow: 0 7px 32px #1e3a5f18; }

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start !important; gap: 16px; }
  .content-grid { flex-direction: column; gap: 16px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FFF8E1;
  box-shadow: 0 2px 8px #fce75b37;
  border-radius: 18px;
  min-width: 240px;
  max-width: 540px;
  position: relative;
  flex: 1 0 260px;
  transition: transform .16s, box-shadow .19s;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.02) rotate(-2deg);
  box-shadow: 0 5px 18px #1e3a5f25;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #e6fefa;
  border-radius: 14px;
  box-shadow: 0 1px 6px #2e7d6011;
  margin-bottom: 20px;
}

/* FEATURE GRIDS ---------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.feature {
  flex: 1 0 200px;
  max-width: 340px;
  min-width: 220px;
  background: #f7fdff;
  border: 3px solid #2E7D6055;
  box-shadow: 0 2px 14px #1e3a5f09;
  border-radius: 20px 32px 18px 18px;
  padding: 26px 19px 14px 19px;
  text-align: center;
  transition: background .23s, box-shadow .22s, transform .18s;
  position: relative;
  margin-bottom: 20px;
}
.feature:hover {
  background: #FCE75B33;
  box-shadow: 0 5px 20px #2e7d6025;
  transform: translateY(-3px) scale(1.022) rotate(-3deg);
}
.feature img {
  width: 54px;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature { max-width: 100%; }
}

/* LISTS ------------------------------------------------------------ */
.service-list,
ul.service-list,
ul {
  list-style: circle inside;
  margin-bottom: 0;
  font-size: 1.03rem;
  color: #2E7D60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
}
.text-section ul {
  gap: 11px;
}
.text-section ol {
  list-style: decimal inside;
  margin-bottom: 0;
  gap: 11px;
}
.text-section {
  padding: 0 0 8px 0;
}

/* TESTIMONIALS ----------------------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #1E3A5F;
  font-weight: 500;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #1E3A5F;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 10px;
}
.client-logos img {
  height: 38px;
  opacity: .86;
  transition: opacity .19s, transform .23s;
}
.client-logos img:hover {
  opacity: 1;
  transform: scale(1.08) rotate(-9deg);
}

@media (max-width: 800px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .client-logos {
    gap: 22px;
  }
}

/* CONTACT DETAILS -------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 17px 0;
  font-size: 1.02rem;
}
.contact-info img {
  width: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(4px);
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #2E7D60;
  font-weight: 500;
}

/* FOOTER ----------------------------------------------------------- */
footer {
  background: #1E3A5F;
  color: #fff;
  margin-top: 64px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 34px;
  box-shadow: 0 -2px 16px #2e7d6099;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 46px;
  filter: drop-shadow(0 1px 4px #fce75b33);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #FCE75B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .2s;
  font-size: 1.01rem;
  letter-spacing: .01em;
}
.footer-nav a:hover {
  color: #FF8C2E;
}
.footer-contact {
  font-size: .98rem;
  letter-spacing: .01em;
  color: #c0e3e2;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer { padding-top: 34px; padding-bottom: 20px; }
}

/* BUTTONS & INTERACTIONS ------------------------------------------- */
button, .cta-btn {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #2E7D60;
  outline-offset: 2px;
}

/* Animations - playful, energetic */
@keyframes bounceIn {
  0%   { transform: scale(.85) rotate(-8deg); opacity: .2; }
  60%  { transform: scale(1.08) rotate(6deg); opacity: 1; }
  80%  { transform: scale(.96); }
  100% { transform: scale(1) rotate(0); }
}
.cta-btn, .feature, .testimonial-card, .card {
  animation: bounceIn .65s cubic-bezier(.2,1,.42,1.1) both;
}

/* PLAYFUL COLORS --------------------------------------------------- */
:root {
  --primary: #1E3A5F;
  --secondary: #2E7D60;
  --accent: #F5F7FA;
  --brand-gold: #FCE75B;
  --fun-orange: #FF8C2E;
  --fun-lime: #ADE75B;
}

/* COOKIES CONSENT BANNER ------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1300;
  background: #FCE75B;
  color: #1E3A5F;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -3px 22px #2e7d6099;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bannerAppear .92s cubic-bezier(.22,.62,.47,1.24);
  gap: 20px;
}
@keyframes bannerAppear {
  from {transform: translateY(140px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-content {
  max-width: 700px;
  text-align: center;
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: #1E3A5F;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cookie-banner button {
  border: 2px solid #2E7D60;
  padding: 11px 24px;
  border-radius: 16px 6px 16px 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 4px;
  background: #fff;
  color: #2E7D60;
  transition: background .17s, color .15s, box-shadow .21s;
  box-shadow: 0 1px 5px #2e7d6022;
}
.cookie-banner button.accept {
  background: #2E7D60;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #FF8C2E;
  border-color: #FF8C2E;
}
.cookie-banner button.settings {
  background: #fff;
  color: #1E3A5F;
  border-color: #2E7D60;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FCE75B;
  color: #1E3A5F;
}

/* COOKIE MODAL ----------------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1401;
  left: 0; right: 0; top: 0; bottom: 0;
  align-items: center;
  justify-content: center;
  background: rgba(30,58,95,0.32);
}
.cookie-modal.active {
  display: flex;
  animation: modalIn .36s cubic-bezier(.24,1.18,.57,1.00);
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fdfdfd;
  border-radius: 22px;
  max-width: 440px;
  width: 96vw;
  padding: 38px 24px 26px 24px;
  box-shadow: 0 2px 24px #2e7d6015;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  animation: bounceIn .39s cubic-bezier(.32,1.41,.44,.99);
  gap: 18px;
}
.cookie-modal-content h3 {
  font-size: 1.21rem;
  color: #2E7D60;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  padding: 9px 0;
}
.cookie-category label {
  font-size: 1.08rem;
  color: #1E3A5F;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #93C6B8;
}
.toggle-switch {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #FCE75B;
  position: relative;
  margin-left: 16px;
}
.toggle-switch input {
  opacity: 0;
  width: 40px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  cursor: pointer;
}
.toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  background: #FF8C2E;
  width: 18px; height: 18px;
  border-radius: 50%;
  transition: left .18s, background .18s;
}
.toggle-switch input:checked + .toggle-slider {
  left: 20px;
  background: #2E7D60;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 18px;
  background: #fff;
  color: #1E3A5F;
  border: 0;
  font-size: 2.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FF8C2E;
  color: #fff;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 10px;
  border: 2px solid #2E7D60;
  color: #2E7D60;
  background: #fff;
  padding: 9px 18px;
  font-weight: 700;
  transition: background .13s, color .15s;
  box-shadow: 0 2px 8px #aeffb033;
}
.cookie-modal-actions button.save {
  background: #2E7D60;
  color: #fff;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #FCE75B;
  color: #1E3A5F;
}

/* OTHER UTILITIES -------------------------------------------------- */
.hide { display:none !important; }

::-selection { background: #FCE75B; color: #1E3A5F; }

hr {
  border: none;
  border-top: 2px dashed #2E7D60;
  margin: 35px 0;
}

/* RESPONSIVE ELEMENTS ---------------------------------------------- */
@media (max-width: 580px) {
  html { font-size: 15px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.15rem; }
}

/* PLAYFUL MICRO-INTERACTIONS --------------------------------------- */
.feature:hover img, .feature:hover svg {
  animation: swing-icon .46s cubic-bezier(.31,.44,.52,1.14);
}
@keyframes swing-icon {
  0% { transform: rotate(0) scale(.99); }
  60% { transform: rotate(17deg) scale(1.07); }
  70% { transform: rotate(-11deg) scale(1.04); }
  100% { transform: rotate(0) scale(1); }
}
.cta-btn:active {
  transform: scale(0.96) rotate(1deg);
}

/* ACCESSIBLE FOCUS STYLES ------------------------------------------ */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px dashed #FF8C2E;
  outline-offset: 2px;
}

/* PLAYFUL/ENERGETIC ACCENTS for icons etc. ------------------------- */
.feature img, .testimonial-card img {
  background: #FF8C2E22;
  border-radius: 12px;
  padding: 7px;
  margin-bottom: 12px;
  box-shadow: 0 1px 5px #ff8c2e09;
}

/* Utility: make certain text accents pop -------------------------- */
.text-pop {
  color: #FF8C2E;
  font-weight: 900;
}

/* END ------------------------------------------------------------- */
