/* ---------- 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.4;
  background: #f6f6f3;
  color: #1C1C1C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
input, textarea {
  background: #fff;
}

/* ------------- BRAND COLORS AND NATURE ORGANIC PALETTE ------------- */
:root {
  --brand-primary: #15658C;
  --brand-secondary: #1C1C1C;
  --brand-accent: #F0B429;
  --earth-olive: #576B3B;
  --earth-sage: #BFD9B1;
  --earth-sand: #EFEBE1;
  --earth-brown: #928464;
  --neutral-white: #fff;
  --neutral-grey: #e8e5db;
  --shadow: 0 2px 8px rgba(44,53,26,0.07);
  --shadow-lg: 0 8px 32px rgba(44,53,26,0.10);
  --section-bg: #f7f7f3;
  --testimonial-bg: #fffbea;
  --danger: #d9534f;
  --safe: #3b7e3b;
  --focus-ring: 0 0 0 3px rgba(21,101,140, 0.17);
}

/* ---------- TYPOGRAPHY ---------- */
h1, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
@media (min-width: 600px) {
  h1, .hero h1 { font-size: 3rem; }
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.275rem;
  font-weight: 500;
  color: var(--earth-olive);
  margin-bottom: 12px;
}
h4 {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--brand-secondary);
}
p, li, blockquote, cite {
  font-size: 1rem;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  line-height: 1.65;
}
strong { font-weight: 600; }
blockquote {
  font-style: italic;
  color: var(--brand-primary);
  margin-bottom: 8px;
  padding-left: 24px;
  border-left: 3px solid var(--earth-olive);
  background: var(--earth-sand);
  border-radius: 0 4px 4px 0;
}
cite {
  display: block;
  font-size: 0.96rem;
  color: var(--earth-brown);
  margin-top: 4px;
  font-style: normal;
  letter-spacing: 0.5px;
}

/* -------- GLOBAL STRUCTURE & CONTAINERS -------- */
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.section, .hero, .about-section, .services, .services-list, .features, .testimonials, .team-section,
.case-studies, .faq-section, .cta, .cta-offer, .cta-newsletter, .contact-details, .thank-you-section, .legal, .blog-list {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px 32px 18px 24px / 28px 20px 26px 16px;
  background: var(--section-bg);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section, .hero, .about-section, .services, .services-list, .features, .testimonials, .team-section,
  .case-studies, .faq-section, .cta, .cta-offer, .cta-newsletter, .contact-details, .thank-you-section, .legal, .blog-list {
    padding: 26px 8px;
    margin-bottom: 36px;
    border-radius: 12px 18px 14px 16px / 16px 10px 18px 10px;
  }
}

/* ---------- FLEXBOX CARDS & SECTIONS ---------- */
.card-container, .content-grid, .feature-list, .service-list, .team-list, .project-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.content-grid {
  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;
    gap: 18px;
  }
}
.card, .testimonial-card, .post-preview, .text-section {
  margin-bottom: 20px;
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(87,107,59, 0.06);
}
.card {
  position: relative;
  padding: 32px 22px 24px 22px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border: 1.5px solid var(--neutral-grey);
  transition: box-shadow .28s, border-color .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(21,101,140, 0.12);
  border-color: var(--brand-primary);
}

/* --- Testimonial Card --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 20px;
  background: var(--testimonial-bg);
  box-shadow: 0 2px 10px rgba(87,107,59,0.08);
  border-radius: 18px 30px 12px 18px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 540px;
  transition: transform 0.18s;
  border-left: 4px solid var(--brand-accent);
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: var(--shadow-lg);
}
.testimonials {
  background: var(--earth-sand);
}
.testimonials h2 {
  color: var(--earth-olive);
}

/* --- Blog preview cards --- */
.post-preview {
  background: var(--neutral-white);
  padding: 18px 20px 18px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--neutral-grey);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.19s, border-color 0.19s;
}
.post-preview h3 a {
  color: var(--brand-primary);
  font-weight: 600;
  transition: text-decoration .2s, color .17s;
}
.post-preview h3 a:hover, .post-preview h3 a:focus {
  text-decoration: underline;
  color: var(--earth-olive);
}
.post-preview:hover {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-lg);
}

/* --- Feature & Service Items --- */
.feature-list {
  flex-wrap: wrap;
  gap: 24px 18px;
}
.feature-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
  flex: 1;
  border-radius: 14px 22px 10px 12px;
  background: #f6faef;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 2px 4px rgba(191,217,177,0.08);
  border-left: 4px solid var(--earth-olive);
  transition: box-shadow .17s,border-color .12s;
}
.feature-list li img {
  margin-bottom: 6px;
  width: 34px;
  height: 34px;
}
.feature-list li:hover, .feature-list li:focus-within {
  box-shadow: 0 6px 20px rgba(21,101,140,0.12);
  border-color: var(--brand-primary);
}
.service-list {
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li {
  display: flex;
  flex-direction: column;
  background: var(--earth-sage);
  border-radius: 16px 22px 14px 10px;
  box-shadow: var(--shadow);
  padding: 20px 18px 16px 18px;
  gap: 10px;
  min-width: 200px;
  flex: 1 1 220px;
  border-left: 4px solid var(--brand-primary);
  position: relative;
  transition: box-shadow 0.23s, border-color 0.14s;
}
.service-list li:hover, .service-list li:focus-within {
  border-color: var(--brand-accent);
  box-shadow: var(--shadow-lg);
}
.service-list .price {
  position: absolute;
  top: 14px;
  right: 16px;
  font-weight: 700;
  color: var(--brand-accent);
  background: #faf2e3;
  padding: 2px 12px;
  font-size: 1.07rem;
  border-radius: 10px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.team-list li {
  padding: 18px 16px;
  background: var(--earth-sand);
  border-radius: 14px;
  flex: 1 1 220px;
  min-width: 200px;
  border-left: 4px solid var(--earth-olive);
}

.project-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.project-list .text-section, .faq-list .text-section {
  background: var(--earth-sage);
  border-radius: 12px 20px 12px 10px;
  padding: 18px 15px;
  box-shadow: 0 2px 10px rgba(191,217,177,0.11);
  flex: 1 1 220px;
  min-width: 200px;
}

/* ---------- HERO AREA ---------- */
.hero {
  background: linear-gradient(120deg, #f7f7f3 60%, #e5efe4 100%);
  border-radius: 28px;
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px rgba(21, 101, 140, 0.03);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--earth-olive);
}
.hero p {
  font-size: 1.22rem;
  color: var(--brand-secondary);
}
@media (max-width: 768px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 36px;
    border-radius: 14px;
  }
}

/* ---------- BUTTONS & CTAs ---------- */
.cta-btn, .nav-cta, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 2em;
  border-radius: 28px 44px 20px 26px;
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.11rem;
  font-weight: 600;
  letter-spacing: .5px;
  box-shadow: 0 2px 14px rgba(21,101,140,0.10);
  transition: background .20s, color .20s, box-shadow .18s;
  border: none;
  cursor: pointer;
  outline: none;
  margin-top: 10px;
}
.cta-btn:hover, .nav-cta:hover, .cta-btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: var(--earth-olive);
  color: var(--brand-accent);
  box-shadow: 0 6px 28px rgba(87,107,59,0.13);
}
.nav-cta {
  margin-left: 16px;
}
.footer-menu a {
  padding: 0.33em 1.2em;
  border-radius: 16px;
  transition: background .17s, color .14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--earth-sage);
  color: var(--brand-primary);
}
/* ---- Cookie Banner Buttons ---- */
.cookie-btn.accept {
  background: var(--safe);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #217c36;
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #b94742;
}
.cookie-btn.settings {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}
.cookie-btn.settings:hover {
  background: #f7c86a;
}

/* ---------- NAVIGATION & HEADER ---------- */
header {
  background: var(--earth-sage);
  box-shadow: 0 2px 6px rgba(191,217,177,0.13);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 0 14px 0;
}
.main-nav > a {
  padding: 8px 12px;
  border-radius: 14px;
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  transition: background .165s, color .165s;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: var(--brand-accent);
  color: #fff;
}
.main-nav > a img {
  width: 44px;
  height: auto;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
  .main-nav > a { font-size: 0.99rem; }
}

/* ----------- MOBILE NAVIGATION (hamburger & overlay) ----------- */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 18px;
  border: none;
  margin: 8px 0 10px 10px;
  transition: background .2s;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  box-shadow: var(--focus-ring);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 10px;
    right: 16px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(191,217,177,0.98);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.82, 0, .25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 22px 12px 18px;
  box-shadow: 0 8px 38px rgba(44,53,26,0.16);
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
  padding: 6px 10px 4px 10px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--earth-olive);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  color: var(--brand-secondary);
  font-size: 1.22rem;
  padding: 12px 20px;
  border-radius: 18px;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-primary);
  color: #fff;
}

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

/* -------- CTA Newsletter / Offer area -------- */
.cta, .cta-offer, .cta-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ecf8e5;
  border-radius: 18px 34px 14px 26px;
  box-shadow: 0 4px 18px rgba(87,107,59, 0.08);
}
.cta-btn {
  margin-top: 12px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--earth-olive);
  color: #fff;
  padding: 32px 0 16px 0;
  font-size: 1rem;
}
footer .container {
  padding-left: 20px;
  padding-right: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
footer img {
  width: 42px; height: auto; margin-bottom: 6px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 7px;
}
footer p {
  color: #e9efea;
  font-size: 0.97rem;
}

/* ---------------- COOKIE CONSENT BANNER ---------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: var(--earth-brown);
  color: #fff8e3;
  padding: 22px 16px 18px 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 32px rgba(87,107,59,0.13);
  z-index: 3100;
  gap: 18px;
  animation: slideUpBanner 0.55s cubic-bezier(.65,0,.47,1);
}
@keyframes slideUpBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  cursor: pointer;
  min-width: 128px;
  margin: 6px 0;
  font-weight: 600;
  font-size: 1rem;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(87,107,59,0.32);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .32s;
}
.cookie-modal {
  background: var(--neutral-white);
  color: var(--brand-secondary);
  border-radius: 18px 32px 12px 18px;
  padding: 36px 24px 28px;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 8px 40px rgba(21,101,140,0.14);
  animation: dropInModal .5s cubic-bezier(.61,0,.3,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes dropInModal {
  0% { transform: translateY(-80px) scale(.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2rem;
  color: var(--danger);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  transition: background .14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #f7e6e3;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--brand-primary);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--earth-sand);
  border-radius: 8px;
  padding: 10px 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--brand-accent);
  width: 22px; height: 22px;
}
.cookie-category label {
  color: var(--brand-secondary);
  font-weight: 500;
  font-size: 1rem;
}
.cookie-category .desc {
  font-size: 0.95rem;
  color: var(--brand-secondary);
  margin-left: 4px;
}

/* ----------- LEGAL, FAQ, ETC. ----------- */
.legal ul, .faq-section ul{
  margin: 12px 0 18px 24px;
  padding-left: 0;
  list-style: disc;
}
.legal ul li, .faq-section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--brand-secondary);
}
.legal a, .faq-section a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color .13s;
}
.legal a:hover, .faq-section a:hover, .faq-section a:focus {
  color: var(--earth-olive);
}

/* ----------- BLOG CATEGORY FILTER ---------- */
.category-filter {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
}
.category-filter span {
  font-weight: 600;
  color: var(--earth-olive);
}
.category-filter a {
  background: var(--earth-sand);
  color: var(--brand-primary);
  padding: 0.29em 1.15em;
  border-radius: 14px;
  transition: background .14s, color .12s;
}
.category-filter a:hover, .category-filter a:focus {
  background: var(--brand-primary);
  color: #fff;
}

/* -------------- FORMS (simple) -------------- */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  border-radius: 9px;
  border: 1.5px solid var(--neutral-grey);
  font-size: 1rem;
  color: var(--brand-secondary);
  background: #fff;
  transition: border-color .14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--brand-primary);
  outline: none;
}

/* -------------- SPACING & GAPS -------------- */
.section, .hero, .about-section, .special-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.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;
}

/* ------------- RESPONSIVE DESIGN ------------- */
@media (max-width: 1023px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .card-container, .content-grid, .feature-list, .service-list, .team-list, .project-list, .faq-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1, .hero h1 { font-size: 1.7rem; }
  h2 { font-size: 1.21rem;  }
  .card, .testimonial-card, .text-section, .post-preview {
    min-width: 0;
    max-width: 100%;
    padding: 16px 8px 12px 10px;
    border-radius: 10px 16px;
  }
  .feature-list, .service-list, .team-list, .project-list, .faq-list {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card { padding: 15px 10px; gap: 8px; }
}
/* Hamburger button always visible when menu hidden */
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
}

/* ------------- INTERACTION & ACCESSIBILITY ------------- */
:focus {
  outline: none;
  box-shadow: var(--focus-ring);
}
.cta-btn:active, .nav-cta:active, .cookie-btn:active {
  filter: brightness(.93);
}
::-webkit-scrollbar {
  width: 10px;
  background: #e5efe4;
}
::-webkit-scrollbar-thumb {
  background: #bfcfb4;
  border-radius: 6px;
}

/* ------------- MICRO-ANIMATIONS & HOVER EFFECTS ------------- */
a, .cta-btn, .nav-cta, .cookie-btn, .main-nav > a, .footer-menu a, .category-filter a {
  transition: background .20s, color .18s, text-decoration .11s, box-shadow .14s;
}
button {
  transition: background .18s, box-shadow .15s, color .11s;
}
input, textarea {
  transition: border-color .14s;
}
.card, .service-list li, .feature-list li {
  transition: box-shadow .18s, border-color .13s, background .14s;
}

/* --- Prevent content overlapping & spacing rules --- */
.card, .testimonial-card, .post-preview, .feature-list li, .service-list li,
.team-list li, .project-list .text-section, .faq-list .text-section {
  margin-bottom: 20px;
}
.card-container, .content-grid, .feature-list, .service-list, .team-list, .project-list, .faq-list {
  gap: 20px;
}

/* ----------- HIDE SCROLL (when overlay active) ----------- */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* ----------- Z-INDEX LAYERING ----------- */
header { z-index: 30; position: relative; }
footer { z-index: 5; position: relative; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 3100; }
.cookie-modal-overlay { z-index: 4000; }

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