/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #213164;
  background: #F2F5F7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}
a {
  color: #18A29A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #213164;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* BRAND FONTS (for Google Fonts, include in HTML) */
body,
p,
.text-section {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6, .button-primary, .button-secondary, nav, .hero h1, .cta h2 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
}
h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #213164;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #18A29A;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #213164;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAV */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(33, 49, 100, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 18px 0;
}
.main-nav > a {
  margin-right: 22px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 18px;
  color: #213164;
  border-radius: 28px;
  transition: background 0.22s, color 0.22s;
  background: transparent;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #F2F5F7;
  color: #18A29A;
}
.main-nav .button-primary {
  margin-left: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #18A29A;
  color: #fff;
  border-radius: 10px;
  padding: 6px 14px;
  margin-left: auto;
  cursor: pointer;
  border: none;
  transition: background 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(33,49,100,0.10);
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #213164;
  color: #fff;
  box-shadow: 0 4px 14px rgba(24,162,154,0.12);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 370px;
  height: 100vh;
  background: #18A29A;
  box-shadow: -4px 0 22px rgba(24,162,154,0.12);
  z-index: 120;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.36,1.21,.21,1.00);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2.1rem;
  background: none;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 121;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FF6464;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #18A29A;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(95deg, #fff 75%, #FAF5E3 100%);
  padding: 60px 0 54px 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  color: #213164;
  font-family: 'Montserrat';
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -2px;
}
.hero p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 18px;
}

/* FEATURE GRID / CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.feature-grid li {
  background: #fff;
  padding: 26px 22px;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 340px;
  border-radius: 22px;
  box-shadow: 0 2px 18px 2px rgba(33,49,100,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s cubic-bezier(.53,1.42,.21,1.00), box-shadow 0.18s;
  margin-bottom: 20px!important;
  position: relative;
  gap: 12px;
}
.feature-grid li:hover {
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
  box-shadow: 0 8px 20px 6px rgba(33,49,100,0.14);
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 6px;
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.service-list li {
  background: #fff;
  padding: 22px 20px 20px 20px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 370px;
  border-radius: 20px;
  box-shadow: 0 2px 18px 2px rgba(33,49,100,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px!important;
  position: relative;
}
.service-list h3 {
  font-size: 1.2rem;
  color: #18A29A;
}
.service-list strong {
  font-size: 1.08rem;
  color: #FF6464;
}
.service-list .button-secondary {
  align-self: flex-start;
}

/* CTA SECTION */
.cta {
  background: #18A29A;
  color: #fff;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 18px 50px 18px;
  box-shadow: 0 2px 14px 2px rgba(24,162,154,0.10);
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 5px 20px #19cabfb4;
}
.cta p {
  font-size: 1.2rem;
  margin-bottom: 22px;
}

/* CARD CONTAINERS / ALIGNMENT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 14px 2px rgba(33,49,100,0.06);
  transition: box-shadow 0.18s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 10px 23px 6px rgba(33,49,100,0.13);
  transform: translateY(-4px) scale(1.04);
}

.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TESTIMONIAL CARDS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px 22px 26px;
  background: #fff;
  color: #213164;
  border-radius: 18px;
  box-shadow: 0 3px 18px 2px rgba(21,32,81,0.10);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 380px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 0px;
  color: #213164;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-weight: 500;
  color: #18A29A;
  opacity: 0.93;
  margin-top: 4px;
}

/* QUICK BENEFITS */
.quick-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}
.quick-benefits li {
  background: #18A29A;
  color: #fff;
  font-weight: 700;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 1.1rem;
  white-space: nowrap;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  counter-reset: step;
}
.process-steps li {
  background: #fff;
  padding: 26px 22px;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 340px;
  border-radius: 22px;
  box-shadow: 0 2px 18px 2px rgba(33,49,100,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
  position: relative;
}
.process-steps li:before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #18A29A;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(24,162,154,0.10);
}

/* FEATURE ITEM */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  border: none;
  outline: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 3px 16px 1px rgba(24,162,154,0.10);
  transition: background 0.16s, color 0.16s, transform 0.14s;
}
.button-primary {
  background: #18A29A;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 3px 22px #21316429;
}
.button-primary:hover, .button-primary:focus {
  background: #213164;
  color: #fff;
  transform: translateY(-2px) scale(1.045) rotate(-1deg);
}
.button-secondary {
  background: #fff;
  color: #18A29A;
  border: 2px solid #18A29A;
  font-weight: 800;
}
.button-secondary:hover, .button-secondary:focus {
  background: #18A29A;
  color: #fff;
  transform: translateY(-1px) scale(1.025) rotate(1deg);
}

/* FOOTER */
footer {
  background: #fff;
  box-shadow: 0 -2px 20px 0 rgba(33, 49, 100, 0.05);
  margin-top: 70px;
  padding: 40px 0 18px 0;
  position: relative;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
  margin-bottom: 18px;
  text-align: left;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #18A29A;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #213164;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  display: block;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.97rem;
  color: #213164;
  opacity: 0.88;
}
.footer-address a {
  color: #18A29A;
  text-decoration: underline dotted;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffce8;
  color: #213164;
  padding: 18px 28px 20px 28px;
  box-shadow: 0 -3px 18px 2px #ECCF740a;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  animation: cookieBannerIn 0.8s cubic-bezier(.52,1.52,.21,.94);
  font-size: 1rem;
}
@keyframes cookieBannerIn {
  from {
    transform: translateY(100vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner .button-primary {
  background: #18A29A;
  color: #fff;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 16px;
  font-weight: 700;
}
.cookie-consent-banner .button-primary:hover {
  background: #213164;
}
.cookie-consent-banner .button-secondary {
  background: #fff;
  color: #18A29A;
  border: 2px solid #18A29A;
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 16px;
  font-weight: 700;
}
.cookie-consent-banner .button-secondary:hover {
  background: #18A29A;
  color: #fff;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  color: #213164;
  font-size: 1rem;
  text-decoration: underline;
  border: none;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 10px;
  font-weight: 700;
}
.cookie-consent-banner .cookie-settings:hover {
  color: #18A29A;
  background: #F2F5F7;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,49,100, 0.26);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.34s;
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-preferences-modal {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 6px 44px 2px rgba(33, 49, 100, 0.17);
  max-width: 380px;
  min-width: 270px;
  width: 96vw;
  padding: 24px 28px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2110;
  animation: modalShowPop 0.23s cubic-bezier(.51,1.45,.41,1.01);
}
@keyframes modalShowPop {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-modal-header h3 {
  color: #18A29A;
  font-size: 1.3rem;
}
.cookie-modal-close {
  font-size: 1.7rem;
  color: #FF6464;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  border-radius: 50%;
}
.cookie-modal-close:hover {
  background: #F2F5F7;
}
.cookie-categories {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2F5F7;
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 1rem;
}
.cookie-cat-row input[type=checkbox] {
  accent-color: #18A29A;
  width: 18px;
  height: 18px;
}
.cookie-cat-row label {
  font-weight: 600;
  color: #213164;
  margin-left: 4px;
}
.cookie-cat-note {
  font-size: 0.97rem;
  color: #acab90;
  margin-left: 8px;
}

/* ANIMATIONS */
@keyframes funPulsate {
  0% { box-shadow: 0 0 0 0 #FFDF43cc; }
  75% { box-shadow: 0 0 0 18px rgba(255,223,67,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,223,67,0); }
}
.feature-grid li:hover { animation: funPulsate 0.9s ease-out; }
.button-primary:hover { animation: funPulsate 0.9s linear; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  h1 { font-size: 2.16rem; }
  h2 { font-size: 1.5rem; }
  .feature-grid, .service-list, .process-steps {
    gap: 18px;
  }
  .main-nav ul li a { font-size: 0.99rem; padding: 9px 14px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
  .footer-content { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 865px) {
  .feature-grid, .service-list, .process-steps {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .hero, .cta, .section {
    padding: 26px 0 28px 0;
    border-radius: 0;
  }
  .main-nav ul { display: none; }
  .main-nav .button-primary { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero h1 { font-size: 1.6rem; }
  .cta h2 { font-size: 1.2rem; }
  .feature-grid,
  .service-list,
  .process-steps {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-slider,
  .testimonial-card,
  .quick-benefits {
    flex-direction: column;
    gap: 14px;
  }
  .footer-content { flex-direction: column; gap: 18px; align-items: flex-start; }
  .mobile-nav a { font-size: 1.06rem; padding: 10px 11px; }
  .cookie-consent-banner { flex-direction: column; gap: 10px; align-items: flex-start; padding: 15px 10px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  .feature-grid li,
  .service-list li,
  .process-steps li {
    padding: 14px 8px;
    min-width: unset;
    max-width: 100vw;
  }
  .cta, .section { padding: 10px 0 16px 0; }
  .testimonial-card { padding: 12px 7px 12px 7px; }
}

/* PLAYFUL COLOR ACCENTS */
.feature-grid li:after, .service-list li:after, .testimonial-card:after {
  content: '';
  display: block;
  width: 38px;
  height: 8px;
  border-radius: 10px;
  background: #FFDF43;
  margin: 18px 0 0 0;
  opacity: 0.76;
}
.feature-grid li:after { margin: 15px 0 0 0; }
.service-list li:after { margin: 11px 0 0 0; }
.testimonial-card:after { margin: 13px 0 0 0; }

/* FUN FONTS */
h2, .cta h2 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -1px;
}

/* MICRO-INTERACTIONS */
.button-primary, .button-secondary {
  transition: background 0.19s, color 0.19s, transform 0.13s, box-shadow 0.19s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.97) rotate(0.5deg);
}

/* PLAYFUL HIGHLIGHT ON HOVER */
.feature-grid li:hover, .service-list li:hover, .testimonial-card:hover {
  border: 2px solid #FFDF43;
  box-shadow: 0 7px 30px 0 rgba(33,49,100,0.18);
}

/* Miscellaneous */
hr {
  border: none;
  height: 1px;
  background: #F2F5F7;
  margin: 28px 0;
}

::-webkit-scrollbar {
  width: 10px;
  background: #EFF6FA;
}
::-webkit-scrollbar-thumb {
  background: #18A29A88;
  border-radius: 6px;
}

/* Hide outline on mousedown, show on tab navigation */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 3px dashed #FFDF43;
  outline-offset: 2px;
}

/* Ensuring no flex child ever overflows horizontally */
.feature-grid > *, .service-list > *, .process-steps > * {
  min-width: 0;
}

/* === END === */
