/* =========================================
  CSS RESET & BASE STYLES
========================================= */
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,
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, 
main, 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F1FAEE;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #457B9D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E63946;
}

/* ================================
  TYPOGRAPHY
================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1D3557;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-size: 1rem;
  color: #232323;
}
p {
  margin-bottom: 14px;
}
ul, ol {
  margin-left: 1.1em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
.text-section li:before {
  content: '\2022';
  color: #E63946;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* ===================================
  LAYOUT CONTAINERS
=================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ===================================
  FLEXBOX LAYOUTS (MANDATORY)
=================================== */
.card-container,
.card-grid,
.content-grid,
.feature-grid,
.services-list,
.service-cards,
.benefits-grid,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
/* Services & FAQ, on mobile: stack */
@media (max-width: 900px) {
  .feature-grid,
  .services-list,
  .service-cards,
  .content-grid,
  .benefits-grid,
  .faq-list {
    flex-direction: column;
    gap: 20px;
  }
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px 0 rgba(29,53,87, 0.07);
  padding: 28px 24px 24px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
  min-width: 230px;
  flex: 1 1 270px;
  z-index: 1;
  /* Only for decorative overlays use absolute! */
}
.card:hover, .card:focus {
  transform: translateY(-7px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 40px 0 rgba(29,53,87,0.13);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  color: #1D3557;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(50,60,160,.09);
  min-width: 260px;
  margin-bottom: 24px;
  transition: box-shadow 0.22s, transform 0.25s;
  font-size: 1.08em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(70,130,180,0.13);
  transform: scale(1.03) rotate(1deg);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px 10px;
    margin-bottom: 16px;
  }
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.customer-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 280px;
}

/* FAQ styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list h3 {
  color: #457B9D;
  margin-bottom: 6px;
  font-size:1.10rem;
}
.faq-list p {
  margin-bottom: 8px;
}

/* ================================
  HEADER, NAVIGATION, LOGO
================================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(29,53,87,0.07);
  position: sticky;
  top: 0;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1D3557;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: background 0.24s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F1FAEE;
  color: #E63946;
}
.btn-primary {
  padding: 11px 30px 12px 30px;
  border: none;
  border-radius: 28px;
  background: #457B9D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08em;
  box-shadow: 0 2px 14px 0 rgba(70,123,157,0.15);
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.28s, transform 0.19s;
  margin-left: 16px;
  letter-spacing: .04em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.03);
  outline: none;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #1D3557;
  color: #fff; 
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 32px 0 rgba(29,53,87,0.16);
}
.btn-secondary {
  padding: 10px 25px;
  border: 2px solid #457B9D;
  border-radius: 28px;
  background: #fff;
  color: #457B9D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  box-shadow: 0 2px 8px 0 rgba(70,123,157,0.07);
  transition: background 0.17s, color 0.18s, border-color 0.19s, transform 0.13s;
  margin-top: 16px;
  outline: none;
}
.btn-secondary:hover, 
.btn-secondary:focus {
  background: #F1FAEE;
  border-color: #1D3557;
  color: #1D3557;
  transform: scale(1.03);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 12px;
  }
  .btn-primary {
    font-size: 1em;
    padding: 10px 18px 11px 18px;
  }
}

/* Hide main navigation on mobile */
@media (max-width: 920px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
}

/* ===============================
  MOBILE BURGER MENU
================================*/
.mobile-menu-toggle {
  background: #F1FAEE;
  border: none;
  font-size: 2.2rem;
  color: #457B9D;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px 4px 12px;
  border-radius: 28px;
  margin-right: 6px;
  margin-left: auto;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(70,123,157,0.11);
  outline: none;
  z-index: 120;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #457B9D;
  color: #fff;
}
@media (min-width: 921px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom:0; right: 0;
  background: #fff;
  z-index: 1200;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.57,0.07,0.89,0.75);
  box-shadow: -7px 0 41px 0 rgba(29,53,87, 0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 20px;
  margin-right: 28px;
  margin-bottom: 26px;
  font-size: 2.2rem;
  background: #F1FAEE;
  color: #457B9D;
  border: none;
  cursor: pointer;
  border-radius: 24px;
  padding: 7px 18px 6px 18px;
  transition: background 0.18s, color 0.14s;
  z-index: 1211;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E63946;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-left: 18px;
  gap: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #1D3557;
  background: #F1FAEE;
  border-radius: 13px;
  padding: 13px 28px 13px 14px;
  margin-bottom: 4px;
  margin-right: 18px;
  width: calc(100% - 34px);
  transition: background 0.16s, color 0.14s, transform 0.12s;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1D3557;
  color: #fff;
  transform: translateX(5px);
}
@media (min-width: 921px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-close {
    display: none !important;
  }
}

/* ================================
  MAIN, CARDS, SECTIONS, CTA AREAS
================================ */
main {
  margin-top: 0;
  background: #F1FAEE;
}
.feature-grid > div,
.services-list > div,
.service-cards > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(70,123,157,0.08);
  padding: 26px 20px 20px 20px;
  flex: 1 1 280px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.22s;
  position: relative;
  text-align: left;
  z-index: 0;
  display: flex;
  flex-direction: column;
}
.feature-grid > div:hover,
.services-list > div:hover,
.service-cards > div:hover {
  box-shadow: 0 7px 28px 0 rgba(70,123,157,0.13);
  transform: scale(1.04) rotate(-1deg);
}
.feature-grid img,
.services-list img,
.service-cards img {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  filter: drop-shadow(0 2px 2px #ccc);
}

/* ENERGETIC PLAYFUL SHADOWS */
.card, .feature-grid > div, .services-list > div, .service-cards > div, .testimonial-card {
  box-shadow: 0 2px 18px 0 rgba(70,123,157,0.08), 0 0.5px 1.5px 0 #F1FAEE;
}

.contact-teaser, .thank-you-message {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  color: #1D3557;
  margin-bottom: 16px;
}

.next-steps {
  margin-bottom: 18px;
}
.next-steps ul {
  margin-bottom: 0;
}

/* ================================
  FOOTER
================================ */
footer {
  background: #1D3557;
  color: #F1FAEE;
  padding: 44px 0 0 0;
  width: 100%;
  font-size: 1em;
  margin-top: 70px;
  position: relative;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98em;
  text-decoration: underline dotted #F1FAEE 1px;
  padding: 4px 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFBE0B;
  background: rgba(255,255,255,0.07);
  border-radius: 7px;
}
.contact-info p,
.legal-disclaimer p {
  color: #F1FAEE;
  font-size: .98em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  margin-bottom: -3px;
}
.legal-disclaimer {
  border-top: 1px solid rgba(241,250,238,0.15);
  padding-top: 16px;
  text-align: center;
  font-size: 0.93em;
  margin-bottom: 17px;
}

@media (max-width: 768px) {
  .footer-nav {
    gap: 18px;
    flex-direction: column;
  }
  footer .container {
    gap: 14px;
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* ================================
  ANIMATIONS (SUBTLE, PLAYFUL)
================================ */
@keyframes pop {
  0% { transform: scale(0.99); }
  70% { transform: scale(1.04) rotate(-2deg); }
  100% { transform: scale(1); }
}
.card:active, .feature-grid>div:active, .btn-primary:active {
  animation: pop 0.26s;
}
/* fun wiggly effect on hover for playfulness */
.card:hover::after, .feature-grid>div:hover::after {
  content: '';
  display: block;
  position: absolute;
  right: -7px; bottom: -7px; left: -7px; top: -7px;
  border-radius: 22px;
  border: 2px dashed #FFC300;
  opacity: 0.25;
  pointer-events: none;
  z-index: 2;
  animation: wiggle 0.33s 1;
}
@keyframes wiggle {
  0% { transform: rotate(-1deg); }
  70% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

/* ================================
  RESPONSIVE HELPERS
================================ */
@media (max-width: 767px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .feature-grid > div,
  .services-list > div,
  .service-cards > div {
    padding: 18px 10px 16px 10px;
    min-width: 160px;
  }
}

/* ================================
  MISC ELEMENTS
================================ */
blockquote {
  border-left: 5px solid #FFD166;
  margin: 16px 0;
  padding: 10px 16px;
  background: #fffbe4;
  color: #1D3557;
  border-radius: 6px;
  font-style: italic;
}
hr {
  border: none;
  border-top: 1px solid #E5ECF6;
  margin: 34px 0 34px 0;
}

/* ==================================
   COOKIE BANNER (FIXED, INTERACTIVE)
=================================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #1D3557;
  box-shadow: 0 -2px 24px 0 rgba(29,53,87, 0.14);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 24px 16px 24px 30px;
  min-height: 46px;
  animation: fadeInBanner .44s cubic-bezier(.65,.22,.56,1.02);
}
@media (max-width: 680px) {
  #cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 17px 8px;
    align-items: flex-start;
  }
}
@keyframes fadeInBanner {
  from { transform: translateY(44px); opacity: 0;} to { transform: translateY(0); opacity: 1; }
}
#cookie-banner p {
  color: #1D3557;
  margin-bottom: 0;
  font-size: .98em;
  flex: 1 1 180px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-actions button {
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 0.98em;
  box-shadow: 0 1px 6px #E5ECF6;
  cursor: pointer;
  padding: 10px 20px;
  font-weight: 700;
  margin-left: 0;
  transition: background 0.16s, color 0.12s, box-shadow 0.2s, transform 0.13s;
}
.accept-cookies {
  background: #457B9D;
  color: #fff;
  border: 2px solid #457B9D;
}
.accept-cookies:hover, .accept-cookies:focus {
  background: #1D3557;
  color: #fff;
  box-shadow: 0 4px 24px 0 #457B9D44;
  transform: scale(1.06);
}
.reject-cookies {
  background: #F1FAEE;
  color: #457B9D;
  border: 2px solid #457B9D;
}
.reject-cookies:hover, .reject-cookies:focus {
  background: #E63946;
  color: #fff;
}
.open-cookie-settings {
  background: #fffbe4;
  color: #1D3557;
  border: 2px solid #FFD166;
}
.open-cookie-settings:hover, .open-cookie-settings:focus {
  background: #FFD166;
  color: #1D3557;
}

/* COOKIE MODAL  */
#cookie-modal {
  position: fixed;
  z-index: 2500;
  left: 0; top: 0; right:0; bottom:0;
  background: rgba(29,53,87,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
#cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 24px 0 rgba(29,53,87, 0.17);
  padding: 38px 36px 24px 36px;
  min-width: 340px;
  min-height: 260px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalUp .51s cubic-bezier(.78,-0.01,.34,1.05);
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 19px 7px 19px 10px;
    min-width: 0;
    max-width: 96vw;
  }
}
@keyframes cookieModalUp {
  0% { transform: translateY(100px); opacity: 0; }
  70% { transform: translateY(-12px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  margin-bottom: 7px;
  color: #1D3557;
}
.cookie-modal-content .cookie-cat {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.cookie-modal-content label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  color: #222;
  font-weight: 500;
}
.cookie-modal-content .cookie-switch {
  position: relative;
  width: 38px; height: 22px;
  margin-right: 7px;
  display: inline-block;
}
.cookie-modal-content .cookie-switch input {
  display: none;
}
.cookie-modal-content .slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: #F1FAEE;
  border-radius: 13px;
  transition: background 0.2s;
}
.cookie-modal-content .cookie-switch input:checked + .slider {
  background: #FFD166;
}
.cookie-modal-content .slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  height: 15px; width: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px #a4b3d3;
  transition: transform 0.26s;
}
.cookie-modal-content .cookie-switch input:checked + .slider:before {
  transform: translateX(14px);
  background: #FFD166;
}
.cookie-modal-content .cookie-switch[disabled],
.cookie-modal-content .cookie-switch[aria-disabled='true'] {
  pointer-events: none;
  opacity: 0.68;
}
.cookie-modal-close {
  background: #F1FAEE;
  color: #457B9D;
  border-radius: 16px;
  border:none;
  font-size: 1.5rem;
  padding: 6px 14px;
  position: absolute;
  right: 12px; top: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E63946;  color: #fff;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 0.98em;
  padding: 9px 18px;
  font-weight: 700;
  box-shadow: 0 1.5px 7px #e5ecf633;
  transition: background 0.1s, color 0.11s;
  cursor: pointer;
}
.cookie-modal-actions .accept-cookies {
  background: #457B9D; color: #fff;
  border: 2px solid #457B9D;
}
.cookie-modal-actions .reject-cookies {
  background: #F1FAEE; color: #457B9D;
  border: 2px solid #457B9D;
}
.cookie-modal-actions .accept-cookies:hover { background: #1D3557; }
.cookie-modal-actions .reject-cookies:hover { background: #E63946; color: #fff; }

/* ================================
  SCROLLBARS & SELECTION
================================ */
::selection {
  background: #FFD166;
  color: #1D3557;
}
::-webkit-scrollbar {
  width: 11px;
  background: #F1FAEE;
}
::-webkit-scrollbar-thumb {
  background: #A8DADC;
  border-radius: 19px;
  border: 2px solid #F1FAEE;
}

/* Playful dots or decorations: only as visual, out of layout flow */
.decoration-dot {
  position: absolute;
  background: #FFD166;
  width: 18px; height: 18px;
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 1px 7px #FFD16660;
  animation: pop 0.9s 1;
}

/* ================================
  FORM ELEMENTS, INPUTS (if present)
================================ */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
}
input, textarea, select {
  border: 2px solid #A8DADC;
  background: #fff;
  border-radius: 12px;
  padding: 10px 13px;
  margin-bottom: 12px;
  transition: border 0.17s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #457B9D;
  box-shadow: 0 0 0 2px #A8DADC33;
}
button:active { transform: scale(0.98); }

/* ===============================
  PLAYFUL DYNAMIC FONT LOADING
================================*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body,
html {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1FAEE;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ================================
  VISUAL HIERARCHY & ANIMATED ELEMENTS
================================ */
.card, .feature-grid > div, .testimonial-card, .service-cards > div {
  transition: box-shadow 0.28s, transform 0.22s;
}
.card:hover, .feature-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 10px 32px 0 #A8DADC44;
  transform: scale(1.04) rotate(-2deg);
}

/* Mobile first: all .content-grid, .card-grid = column */
.content-grid, .card-grid {
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .content-grid, .card-grid {
    flex-direction: row;
    gap: 24px;
  }
}

/* ================================
  CONSISTENT SPACING
================================ */
.services-list, .feature-grid, .service-cards, .benefits-grid, .faq-list {
  gap: 24px;
}

.card, .feature-grid>div, .services-list>div, .service-cards>div, .testimonial-card {
  margin-bottom: 20px;
}

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

@media (max-width:600px) {
  .section {
    padding: 22px 3px;
    margin-bottom: 32px;
  }
}

/* all cards/sections have at least 20px margin between */
.card, .feature-grid>div, .services-list>div, .service-cards>div {
  margin-bottom: 20px;
}

/* ================================
  PLAYFUL MICRO-INTERACTIONS
================================ */
.btn-primary, .btn-secondary, .cookie-actions button, .cookie-modal-actions button {
  transition: background 0.19s, color 0.13s, box-shadow 0.24s, transform 0.11s;
}
.btn-primary:focus, .btn-secondary:focus, .cookie-actions button:focus, .cookie-modal-actions button:focus {
  outline: 2px solid #FFD166;
}

/* ================================
  ACCESSIBILITY/CONTRAST
================================ */
.testimonial-card {
  background: #fff;
  color: #1D3557;
}
.testimonial-card strong {
  color: #1D3557;
  font-weight: 700;
}

/* Utility classes for color backgrounds if needed */
.bg-primary { background: #1D3557 !important; color: #F1FAEE !important; }
.bg-secondary { background: #457B9D !important; color: #fff !important; }
.bg-accent { background: #FFD166 !important; color: #1D3557 !important; }
.bg-white { background: #fff !important; color: #1D3557 !important; }

/* ====== Hide visually but keep accessible  ===== */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* END: Pale Ledge Consulting - Playful Dynamic CSS */
