/* --- CSS RESET & NORMALIZE --- */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #F3F7ED;
  color: #215145;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #15818F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #215145;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 12px;
}
button,
input[type="submit"] {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
}

/* --- BRAND FONT LOAD --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* --- ROOT COLORS as CSS variables --- */
:root {
  --color-primary: #215145;
  --color-secondary: #15818F;
  --color-accent: #F3F7ED;
  --color-fun-1: #FCE563;
  --color-fun-2: #F57D7C;
  --color-fun-3: #82D8D1;
  --color-fun-4: #81A4F9;
  --color-white: #fff;
  --color-black: #181C17;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Source Sans Pro', Arial, sans-serif;
  --shadow-base: 0 4px 20px 0 rgba(21, 129, 143, 0.08);
  --shadow-card: 0 8px 32px 0 rgba(33,81,69,0.12);
  --radius-base: 18px;
  --transition: 0.23s cubic-bezier(.45,0,.55,1.17);
  --section-space: 60px;
}

body {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; color: var(--color-fun-2);}
h2 { font-size: 2rem; margin-bottom: 16px; color: var(--color-secondary);}
h3 { font-size: 1.35rem; margin-bottom: 14px; color: var(--color-fun-4);}
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.7rem; }
}

p, ul, ol {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-primary);
}
strong {
  font-weight: 700;
  color: var(--color-fun-1);
}

/* --- GENERAL FLEX CONTAINERS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- HEADER --- */
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 8px 0;
  background: var(--color-white);
  box-shadow: var(--shadow-base);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 49;
}
header > a img {
  height: 48px;
  width: auto;
  margin-right: 14px;
  margin-left: 16px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: 20px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  padding: 7px 11px;
  border-radius: 10px;
  color: var(--color-secondary);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-fun-2);
  color: var(--color-white);
}
.cta-button.primary {
  background: var(--color-fun-1);
  color: var(--color-black);
  margin-left: auto;
  margin-right: 26px;
  border-radius: 13px;
  padding: 12px 27px;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  box-shadow: var(--shadow-base);
  transition: transform 0.13s, box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}
.cta-button.primary:after {
  content: '';
  position: absolute;
  left: -50%;
  top: 40%;
  width: 200%;
  height: 50%;
  background: rgba(255,255,255,0.16);
  filter: blur(4px);
  z-index: 1;
  transition: opacity 0.3s;
}
.cta-button.primary:hover,
.cta-button.primary:focus {
  background: var(--color-fun-2);
  color: #fff;
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 2px 30px 0 rgba(245,125,124,0.13);
}
.cta-button.primary:hover:after,
.cta-button.primary:focus:after {
  opacity: 0.4;
}
.cta-button {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: 13px;
  padding: 10px 26px;
  box-shadow: var(--shadow-card);
  margin-top: 11px;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-fun-3);
  color: var(--color-black);
  transform: scale(1.05) rotate(2deg);
}
.cta-button:active {
  background: var(--color-primary);
  color: var(--color-fun-1);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  margin-left: 8px;
  margin-right: 10px;
  align-items: center;
  z-index: 100;
  padding: 4px 10px;
  border-radius: 9px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-fun-3);
  z-index: 199;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.42,-0.05,.26,1.25);
  box-shadow: 0px 10px 42px 0 rgba(32,81,69,0.26);
  padding: 0;
  opacity: 1;
  visibility: visible;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 27px 22px 18px 0;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-fun-1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  justify-content: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 0;
  letter-spacing: 0.2px;
  color: var(--color-primary);
  width: 100%;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-fun-2);
  color: #fff;
  border-radius: 11px;
  padding-left: 8px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .cta-button.primary {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    flex-direction: row;
    padding: 13px 0 6px 0;
  }
  header > a img {
    height: 38px;
  }
  .cta-button.primary {
    padding: 10px 20px;
    font-size: 1rem;
    margin-right: 6px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(98deg, var(--color-fun-3) 60%, var(--color-fun-1) 100%, var(--color-white) 130%);
  border-radius: 0 0 58px 58px;
  min-height: 340px;
  margin-bottom: 44px;
  box-shadow: var(--shadow-base);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 330px;
}
.hero .content-wrapper {
  margin-top: 38px;
  gap: 22px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-fun-2);
}
.hero p {
  font-size: 1.3rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

/* --- GLOBAL SECTIONS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  section { padding: 28px 6px; }
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 28px;
  position: relative;
  transition: transform .18s, box-shadow .23s;
  z-index: 1;
  min-width: 260px;
  max-width: 420px;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 42px 0 rgba(245,125,124,0.13);
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 rgba(129,164,249,0.11);
  margin-bottom: 24px;
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 780px;
  font-size: 1.13rem;
  color: var(--color-primary);
  z-index: 1;
  border-left: 10px solid var(--color-fun-4);
  animation: floatCard 0.7s cubic-bezier(.47,1.64,.41,.8) backwards;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.1em;
  border-left: 3px solid var(--color-fun-2);
  padding-left: 10px;
  margin-bottom: 6px;
}
.testimonial-card cite {
  color: var(--color-fun-4);
  font-weight: 700;
  font-size: 1em;
}
@keyframes floatCard {
  0% { transform: translateY(40px) scale(.96); opacity: 0; }
  100% { transform: none; opacity: 1; }
}

.project-card {
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 rgba(129,164,249,0.08);
  padding: 22px 26px;
  margin-bottom: 20px;
  margin-right: 16px;
  min-width: 260px;
  max-width: 550px;
  transition: box-shadow .20s, transform .18s;
}
.project-card:hover {
  box-shadow: 0 6px 22px 0 rgba(245,125,124,0.07);
  transform: scale(1.018) rotate(1deg);
}

ul.service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 27px;
}
ul.service-list li {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  max-width: 390px;
  min-width: 250px;
  flex: 1 1 260px;
  padding: 22px 18px 18px 23px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .15s;
  position: relative;
  color: var(--color-primary);
}
ul.service-list li strong,
ul.service-list h3 {
  color: var(--color-fun-4);
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-weight: 800;
}
ul.service-list span {
  float: right;
  font-weight: bold;
  color: var(--color-fun-1);
  background: var(--color-fun-3);
  padding: 6px 13px;
  border-radius: 10px;
  margin-left: 18px;
  font-size: 1em;
}
ul.service-list li:hover {
  box-shadow: 0 6px 34px 0 rgba(33,81,69,0.12);
  transform: scale(1.03) rotate(-1.2deg);
}

.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 18px 0;
}
.feature-highlights span {
  display: flex;
  align-items: center;
  background: var(--color-fun-3);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1em;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 1px 9px 0 rgba(129,164,249,0.06);
  gap: 9px;
  transition: background .13s, color .13s, transform .21s;
}
.feature-highlights span img {
  width: 24px; height: 24px;
}
.feature-highlights span:hover {
  background: var(--color-fun-2);
  color: var(--color-white);
  transform: scale(1.09) rotate(-5deg);
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 13px;
}
.text-section ul {
  margin-left: 22px;
}
.text-section a.cta-button {
  margin-top: 15px;
}

.contact-details {
  margin-top: 14px;
  margin-bottom: 18px;
}
.contact-details li {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.05em;
}
.contact-details a {
  color: var(--color-fun-4);
  font-weight: 700;
}
.contact-details a:hover,
.contact-details a:focus {
  color: var(--color-fun-2);
}

/* --- CTA Animations --- */
.cta-button, .feature-highlights span, ul.service-list li, .card, .testimonial-card, .project-card {
  transition: box-shadow .23s, transform .21s, background .18s, color .18s;
}

/* --- OL STYLES --- */
ol {
  list-style-position: inside;
  margin-bottom: 16px;
  padding-left: 12px;
  color: var(--color-primary);
}
ol li {
  font-size: 1.06em;
  margin-bottom: 10px;
  padding-left: 0px;
  position: relative;
  font-family: var(--font-body);
}
ol li:before {
  display: none;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: var(--color-fun-1);
  padding: 38px 0 16px 0;
  border-radius: 50px 50px 0 0;
  margin-top: 40px;
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-fun-1);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.08em;
  background: transparent;
  transition: color .18s, background .16s, border-radius .18s;
  padding: 6px 17px;
  border-radius: 10px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-fun-2);
  color: #fff;
}
footer p {
  text-align: center;
  font-size: 1.02em;
  letter-spacing: 0.03em;
  margin-top: 0;
  color: var(--color-fun-1);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--color-fun-1);
  color: var(--color-black);
  box-shadow: 0 -2px 22px 0 rgba(33,81,69,0.12);
  padding: 24px 20px 21px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  gap: 14px;
  animation: bannerSlideUp .6s cubic-bezier(.42,-0.05,.26,1.25);
}
@keyframes bannerSlideUp {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 13px;
  background: var(--color-fun-2);
  color: #fff;
  border: none;
  padding: 8px 24px;
  font-size: 1.04rem;
  cursor: pointer;
  margin: 0;
  transition: background .19s, color .15s;
  box-shadow: var(--shadow-base);
}
.cookie-banner button.cookie-settings {
  background: var(--color-fun-4);
  color: var(--color-white);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-secondary);
  color: var(--color-fun-1);
}
.cookie-banner button.cookie-settings:hover {
  background: var(--color-primary);
  color: var(--color-fun-1);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,81,69,0.29);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  transition: opacity .19s;
}
.cookie-modal.open {
  display: flex;
  animation: fadeInModal .34s;
}
@keyframes fadeInModal {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal-dialog {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(21,129,143,0.17);
  padding: 36px 28px 23px 28px;
  max-width: 420px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-dialog h3 {
  font-size: 1.26em;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-fun-2);
  width: 19px;
  height: 19px;
}
.cookie-category .always-on {
  color: var(--color-fun-1);
  font-size: 0.96em;
  background: var(--color-fun-3);
  border-radius: 7px;
  padding: 3px 9px;
  font-weight: bold;
  margin-left: 12px;
}
.cookie-close-btn {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none;
  font-size: 1.7rem;
  color: var(--color-secondary);
  cursor: pointer;
  border-radius: 7px;
  padding: 0 9px;
  transition: background .13s, color .13s;
}
.cookie-close-btn:hover,
.cookie-close-btn:focus {
  background: var(--color-fun-1);
  color: var(--color-primary);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 14px;
}


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 990px) {
  .container {
    max-width: 98vw;
    padding-left: 7px; padding-right: 7px;
  }
  .service-list, .card-container, .content-grid, .feature-highlights {
    gap: 15px;
  }
  .card, .service-list li, .project-card {
    min-width: 175px;
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 230px;
    border-radius: 0 0 33px 33px;
  }
  .section, section {
    margin-bottom: 39px;
    padding: 23px 3vw 23px 3vw;
  }
  .testimonial-card, .project-card, ul.service-list li, .card {
    min-width: 90vw;
    padding: 16px 10px 16px 13px;
    font-size: 1em;
  }
  .hero .content-wrapper {
    margin-top: 0; gap: 10px;
  }
  ul.service-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-highlights {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  footer {
    padding: 27px 0 11px 0;
    border-radius: 29px 29px 0 0;
    margin-top: 27px;
  }
}

/* --- SCROLLBAR STYLES --- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-accent);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-fun-3);
  border-radius: 16px;
}

/* --- FUN PLAYFUL MICRO-ANIMATIONS --- */
.cta-button, .feature-highlights span, .cta-button.primary {
  cursor: pointer;
  will-change: transform;
  position: relative;
  z-index: 2;
}
.cta-button:active, .feature-highlights span:active, .cta-button.primary:active {
  transform: scale(0.98) rotate(-2deg);
}

@media (max-width: 610px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .footer-nav a { font-size: 1em; }
}

/* --- VISUAL DYNAMIC ACCENTS --- */
.content-wrapper h2::after {
  content: ' ';
  display: inline-block;
  width: 33px; height: 8px;
  margin-left: 9px;
  background: var(--color-fun-1);
  border-radius: 20px/6px;
  vertical-align: 8%;
  animation: accentWiggle 1.9s infinite cubic-bezier(.02,1.12,.92,-0.04);
}
@keyframes accentWiggle {
  50% { transform: scaleX(1.17) scaleY(0.88) rotate(-6deg); }
}

.hero h1 {
  font-family: 'Bungee', var(--font-display), 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1.2px;
  text-shadow: 2px 2px 0 var(--color-fun-1), 0 3px 7px rgba(245,125,124,0.13);
  /* Playful dynamic headline */
}

/* FUN GOOGLE FONT for playfulness (only for h1 in hero) */
@import url('https://fonts.googleapis.com/css2?family=Bungee:wght@400&display=swap');

/* --- FORM ELEMENTS, if used --- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1.06rem;
  padding: 11px 13px;
  border-radius: 8px;
  border: 2px solid var(--color-fun-3);
  margin-bottom: 16px;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 1px 4px 0 rgba(21,129,143,0.05);
  outline: none;
  transition: border-color .17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-fun-2);
}
label {
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 700;
  color: var(--color-fun-4);
  margin-bottom: 3px;
  display: inline-block;
}


/* --- UTILITIES & OVERRIDES --- */
[hidden] { display: none!important; }
.d-none { display: none!important; }
.flex { display: flex!important; }
.align-center { align-items: center!important; }
.justify-center { justify-content: center!important; }
.gap-20 { gap: 20px!important; }
.gap-30 { gap: 30px!important; }

/* PREVENT ABSOLUTE CONTENT POSITIONING for content blocks */
/* But allow absolutely positioned decorative accents only */

/* --- ACCESSIBILITY/HIGHLIGHT --- */
:focus {
  outline: 3px solid var(--color-fun-1);
  outline-offset: 1px;
  z-index: 2222;
}

/* --- ENSURE NO OVERLAP --- */
section, .card-container, .card, .feature-highlights, .service-list li, .testimonial-card, .project-card {
  margin-bottom: 20px;
}
/* Minimum 20px margin and gap between all content elements */

/* --- PRINT STYLES --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  section { page-break-inside: avoid; background: #fff; color: #111; }
}
