/* CSS RESET & BASE --------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F0F6F2;
  color: #224E68;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #224E68;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #6EAB40;
}
strong {
  font-weight: bold;
}

/* TYPOGRAPHY ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #224E68;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 1.5rem;
  font-weight: 800;
}
h3 {
  font-size: 1.18rem;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}

/* PLAYFUL DYNAMIC FONTS & EFFECTS ------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  background: #F0F6F2;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(34,78,104,0.07);
  position: relative;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* HEADER -------------------------------------------------------------- */
header {
  background: #224E68;
  color: #fff;
  width: 100%;
  z-index: 50;
  box-shadow: 0 2px 12px 0 rgba(34,78,104,0.08);
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 16px 16px 16px;
  min-height: 68px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-shadow: 0 1px 3px #224E68a1;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #6EAB40;
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}
header img {
  max-height: 44px;
  width: auto;
  display: block;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  padding: 12px 26px;
  background: #6EAB40;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 14px 0 rgba(110,171,64,0.10);
  margin-left: 12px;
  transition: background 0.2s, color 0.15s, transform 0.18s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.cta-btn.cta-primary:hover, .cta-btn.cta-primary:focus {
  background: #224E68;
  color: #fff;
  transform: scale(1.09) rotate(2deg);
}

/* MOBILE NAVIGATION --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 200;
  width: 48px;
  height: 48px;
  font-size: 2.1rem;
  line-height: 1;
  color: #224E68;
  background: #F0F6F2;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 rgba(34, 78, 104, 0.11);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.19s, transform 0.13s;
}
.mobile-menu-toggle:active {
  background: #6EAB40;
  color: #fff;
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #224E68;
  color: #fff;
  z-index: 401;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.79,0.03,0.28,0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  margin: 18px 26px 0 0;
  font-size: 2.3rem;
  background: none;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.12s;
}
.mobile-menu-close:active {
  background: #6EAB40;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  margin-top: 46px;
  margin-right: 50px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #224E68;
  padding: 12px 32px;
  border-radius: 24px;
  margin-bottom: 10px;
  box-shadow: 0 1px 7px 1px rgba(34,78,104,0.1);
  transition: background 0.15s, color 0.15s, transform 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6EAB40;
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}

@media (max-width: 992px) {
  header .container nav {
    display: none;
  }
  header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

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

/* HERO / HEADER SECTIONS ---------------------------------------------- */
.hero {
  background: #6EAB40;
  padding: 48px 0 28px 0;
  position: relative;
  border-radius: 0 0 52px 52px;
  box-shadow: 0 9px 45px 0 rgba(110,171,64,0.14);
  z-index: 5;
  margin-bottom: 40px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #fff;
  font-size: 2.3rem;
  text-shadow: 0 4px 24px #6EAB4060, 0 3px 1px #224E68;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  color: #fff;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
}
.hero .cta-btn {
  margin: 0 auto;
  font-size: 1.17rem;
  padding: 16px 38px;
  letter-spacing: 0.01em;
  border-radius: 32px;
  box-shadow: 0 8px 28px 0 rgba(56,173,55,0.11);
}

/* FEATURES (Card List) ------------------------------------------------ */
.features {
  background: #fff;
  padding-top: 24px;
  margin-bottom: 60px;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(110,171,64,0.09);
}
.features .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 10px;
}
.feature-item {
  background: #F0F6F2;
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(34,78,104,0.06);
  padding: 28px 24px 24px 24px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 295px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  cursor: pointer;
  border: 3px solid transparent;
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
  filter: drop-shadow(0 3px 9px #6EAB4055);
  animation: popimg 1.3s cubic-bezier(0.64,0.09,0.52,1.46) infinite alternate;
}
@keyframes popimg { 0% { transform: scale(1); } 50% { transform: scale(1.08) rotate(-4deg); } 100% { transform: scale(1); } }
.feature-item:hover, .feature-item:focus {
  transform: translateY(-6px) scale(1.03) rotate(1deg);
  box-shadow: 0 7px 26px 0 rgba(110,171,64,0.18);
  border: 3px solid #6EAB40;
  background: #fff;
}
.feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  color: #224E68;
}
.feature-item p {
  font-size: 1rem;
  color: #376483;
}

/* CARDS --------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 7px 24px 0 rgba(34,78,104,0.09);
  padding: 32px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.19s, box-shadow 0.18s, border 0.21s;
}
.card:hover, .card:focus {
  transform: translateY(-6px) scale(1.025) rotate(-2deg);
  box-shadow: 0 14px 38px 4px #6EAB4058;
  border: 2px solid #6EAB40;
}

/* TESTIMONIALS -------------------------------------------------------- */
.testimonials {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(34,78,104,0.11);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.testimonial-card {
  background: #F0F6F2;
  border-radius: 24px;
  padding: 24px 25px;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 24px 0 rgba(34,78,104,0.08);
  font-size: 1.01rem;
  color: #224E68;
  font-weight: 400;
  border-left: 5px solid #6EAB40;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 29px 2px #6EAB4060;
  border-left: 8px solid #224E68;
}
.testimonial-card strong {
  color: #224E68;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 0.98rem;
}
.testimonial-card p {
  color: #224E68;
  font-size: 1.09rem;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #45843d;
}

/* SERVICES LIST ------------------------------------------------------- */
.services {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 18px 0 rgba(34,78,104,0.07);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #F0F6F2;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(110,171,64,0.07);
  padding: 24px 20px 22px 22px;
  min-width: 220px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.17s, border 0.17s;
  border-left: 4px solid #6EAB40;
}
.service-item h3 {
  color: #224E68;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.11rem;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #6EAB40;
  font-size: 1.08rem;
  font-weight: 800;
}
.service-item:hover, .service-item:focus {
  transform: scale(1.035) rotate(-2deg);
  box-shadow: 0 12px 32px 0 #6EAB4035;
  border-left: 4px solid #224E68;
}

/* CONTACT & DETAILS --------------------------------------------------- */
.contact {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 7px 21px 0 rgba(34,78,104,0.08);
  padding: 40px 24px;
  margin-bottom: 60px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-details a {
  color: #6EAB40;
  font-weight: bold;
}

/* RESOURCES, DOWNLOAD GUIDES ------------------------------------------ */
.resources {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(34,78,104,0.06);
  margin-bottom: 60px;
  padding: 40px 24px;
}
.download-guides {
  background: #EAF4E9;
  border-radius: 18px;
  padding: 18px 12px;
  margin-top: 10px;
  box-shadow: 0 1px 8px 0 rgba(110,171,64,0.05);
}
.download-guides a {
  color: #224E68;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  transition: color 0.18s;
}
.download-guides a:hover, .download-guides a:focus {
  color: #6EAB40;
}

/* TEAM PAGE ----------------------------------------------------------- */
.team-member-profile {
  background: #F0F6F2;
  border-radius: 20px;
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(110,171,64,0.06);
  font-size: 1rem;
}

/* LEGAL PAGE ---------------------------------------------------------- */
.legal {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 14px 0 rgba(34,78,104,0.07);
  margin-bottom: 60px;
  padding: 40px 24px;
  color: #224E68;
}
.legal h1, .legal h2 {
  color: #224E68;
}

/* FOOTER -------------------------------------------------------------- */
footer {
  background: #224E68;
  color: #fff;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -3px 22px 0 rgba(34,78,104,0.12);
  padding: 38px 0 16px 0;
  margin-top: 44px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline #6EAB40 0.18em;
  transition: color 0.17s, text-decoration 0.13s;
  padding: 6px 8px;
  border-radius: 12px;
}
.footer-links a:hover, .footer-links a:focus {
  color: #6EAB40;
  background: #fff1;
}
.legal-info {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.social-media-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.social-media-icons img {
  width: 32px;
  height: 32px;
  transition: filter 0.15s, transform 0.13s;
  filter: grayscale(0.3) brightness(1.04);
  cursor: pointer;
}
.social-media-icons img:hover, .social-media-icons img:focus {
  filter: none;
  transform: scale(1.12) rotate(3deg);
}

/* SPACING & FLEX LAYOUTS ---------------------------------------------- */
.card-container {
  gap: 24px;
  margin-bottom: 20px;
}
.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;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* CRUCIAL: consistent spacing between all cards and sections */
section, .section, .card, .service-item, .feature-item, .testimonial-card, .team-member-profile, .resources, .legal {
  margin-bottom: 20px;
}

/* BUTTONS ------------------------------------------------------------- */
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  background: #6EAB40;
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, transform 0.18s;
  margin-bottom: 0;
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #224E68;
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}

/* FORM ELEMENTS ------------------------------------------------------- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 14px;
  border: 2px solid #c6d8cd;
  border-radius: 16px;
  margin-bottom: 16px;
  outline: none;
  background: #fff;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border-color: #6EAB40;
}

/* COOKIE CONSENT BANNER ----------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #224E68;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  box-shadow: 0 -3px 16px 1px #224E6830;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  opacity: 1;
  transform: translateY(0);
  animation: cookie-popup-in 0.45s cubic-bezier(0.6, 0.25, 0.55, 1.17);
}
@keyframes cookie-popup-in {
  0% { opacity: 0; transform: translateY(90px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__message {
  font-size: 1.04rem;
  margin-right: 32px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 #6EAB4060;
}
.cookie-banner__settings {
  background: #fff;
  color: #224E68;
  border: 2px solid #6EAB40;
  font-weight: 700;
  margin-right: 8px;
  transition: background 0.16s, color 0.15s;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #6EAB40;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL -------------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,78,104,0.72);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-in 0.44s cubic-bezier(0.59, 0.11, 0.52, 1.09);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  color: #224E68;
  border-radius: 20px;
  box-shadow: 0 8px 38px 3px #224E6819;
  padding: 32px 22px 22px 22px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  animation: modal-pop 0.41s cubic-bezier(0.42,0.7,0.26,1.08);
}
@keyframes modal-pop {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #6EAB40;
  font-size: 2.1rem;
  cursor: pointer;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.19rem;
  color: #224E68;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #224E68;
}
.cookie-category input[type=checkbox]:disabled + label {
  color: #bbb;
}
.cookie-modal__actions {
  display: flex;
  gap: 9px;
  justify-content: flex-end;
  width: 100%;
}
.cookie-modal__save {
  background: #6EAB40;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
}
.cookie-modal__cancel {
  background: #fff;
  color: #224E68;
  border: 2px solid #6EAB40;
  font-weight: 700;
  border-radius: 20px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal__cancel:hover, .cookie-modal__cancel:focus {
  background: #6EAB40;
  color: #fff;
}

/* CONFIRMATION / THANK YOU -------------------------------------------- */
.confirmation {
  background: #F0F6F2;
  border-radius: 32px;
  box-shadow: 0 7px 12px 0 rgba(34,78,104,0.05);
  padding: 50px 32px 46px 32px;
  text-align: center;
  margin-bottom: 40px;
}
.confirmation h1 {
  color: #6EAB40;
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.confirmation p {
  font-size: 1.15rem;
  color: #224E68;
}

/* ANIMATIONS & MICRO-INTERACTIONS ------------------------------------- */
.card, .feature-item, .testimonial-card, .service-item {
  transition: transform 0.2s cubic-bezier(.47,.26,.57,1.13), box-shadow 0.19s, border 0.19s;
}
.cta-btn, .card, .service-item, .feature-item {
  will-change: transform, box-shadow;
}

/* RESPONSIVE DESIGN --------------------------------------------------- */
@media (max-width: 1260px) {
  .container { max-width: 98vw; }
}
@media (max-width: 992px) {
  .container { max-width: 92vw; }
  .footer-links { gap: 14px; }
  .legal-info { align-items: flex-start; }
  .social-media-icons { gap: 11px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  .section, .features, .services, .contact, .resources, .legal, .about, .testimonials, .confirmation {
    padding: 28px 5px;
    border-radius: 16px;
  }
  .hero {
    border-radius: 0 0 34px 34px;
    padding: 28px 0 12px 0;
    margin-bottom: 24px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
  .content-grid, .card-container, .testimonial-cards, .services-list, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .mobile-nav {
    margin-right: 13px;
    margin-top: 34px;
    gap: 11px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 9px;
  }
  .cookie-banner__message { margin-right: 0; font-size: 1rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.26rem; }
  h2 { font-size: 1.12rem; }
  .hero h1 { font-size: 1.35rem; }
  .footer-links { font-size: 0.99rem; }
  .confirmation {
    padding: 20px 5px 20px 5px;
  }
}

/* PLAYFUL DYNAMIC DECOR: Animated blob background (for hero, etc) ----- */
.hero::after {
  content: '';
  position: absolute;
  right: 10vw;
  top: 10px;
  width: 145px;
  height: 145px;
  z-index: 1;
  background: #fff33c;
  opacity: 0.16;
  border-radius: 43% 57% 64% 36% / 45% 54% 46% 55%;
  pointer-events: none;
  animation: blobmove 14s infinite alternate ease-in-out;
}
@keyframes blobmove {
  0% { border-radius: 43% 57% 64% 36% / 45% 54% 46% 55%; transform: rotate(0deg) scale(1.18); }
  50% { border-radius: 68% 32% 34% 66% / 45% 35% 65% 55%; transform: rotate(14deg) scale(1.09); }
  100% { border-radius: 59% 41% 66% 34% / 49% 51% 49% 51%; transform: rotate(-9deg) scale(1.01); }
}

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

/* Accessibility focus ------------------------------------------------------------------ */
a, button, .cta-btn, input, textarea, select {
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px dashed #ffdc35;
  outline-offset: 3px;
}

/* END OF CSS ---------------------------------------------------------- */
