/* ====================================================== */
/*  RESET & BASE STYLES | Modern_Bold by ISG             */
/* ====================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #243046;
  background: #F4F2EE;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #243046;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #6DA77C;
}

/* Typography Scale */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: #243046;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #243046;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #243046;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #243046;
}
p, li, address, .body-text {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #243046;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #6DA77C;
  margin-bottom: 24px;
}
strong {
  font-weight: 700;
}

/* Section & Container Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  align-items: flex-start;
  justify-content: flex-start;
}

/* Flex Layout Classes (MANDATORY) */
.card-container, .feature-grid, .service-cards, .articles-grid, .team-bios, .footer-content, .main-nav, .mobile-nav, .content-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(36,48,70,0.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(36,48,70,0.10);
  min-width: 310px;
  max-width: 430px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(36,48,70,0.12);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(109,167,124,0.10);
  padding: 28px 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 2px solid #6DA77C20;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(36,48,70,0.09);
  transform: translateY(-2px) scale(1.012);
  border-color: #6DA77C;
}

/* Primary Button Styles */
.cta-button {
  background: #6DA77C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36,48,70,0.12);
  padding: 14px 32px;
  margin-top: 12px;
  margin-bottom: 0;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #243046;
  color: #fff;
  box-shadow: 0 5px 16px rgba(36,48,70,0.14);
  transform: translateY(-1px) scale(1.024);
}

/* Header & Navigation */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(36,48,70,0.04);
  z-index: 1000;
  position: relative;
  display: flex;
  flex-direction: column;
}
header > a img {
  height: 48px;
  margin: 16px 0 8px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
  font-size: 1rem;
  color: #243046;
}
.main-nav a:hover, .main-nav a:focus {
  background: #6DA77C10;
  color: #6DA77C;
}

/* Mobile Menu */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #243046;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  margin: 12px 0 0 12px;
  display: none;
  z-index: 2002;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,48,70,0.98);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.85,.03,.15,.97);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 30px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  padding: 16px 20px 6px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #6DA77C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin: 36px 0 0 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 16px;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6DA77C;
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-menu {
    display: flex;
  }
}

/* Hero Section */
#hero {
  background: #243046;
  color: #fff;
  padding: 70px 0 60px 0;
  min-height: 440px;
  display: flex;
}
#hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .content-wrapper {
  align-items: flex-start;
  color: #fff;
}
#hero h1, #hero .subheadline {
  color: #fff;
}

/* Features Section */
#features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 18px;
}
#features .feature-item img {
  width: 48px;
  height: 48px;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,48,70,0.07);
  padding: 28px 22px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  border: 2px solid #24304609;
  transition: box-shadow 0.2s, border 0.18s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(36,48,70,0.13);
  border-color: #6DA77C;
  transform: translateY(-2px) scale(1.012);
}
.service-price {
  font-weight: 700;
  color: #6DA77C;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Testimonial Slider & Cards */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: #243046;
  margin-top: 3px;
  opacity: 0.85;
}

/* Articles Highlight */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.article-teaser {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(36,48,70,0.09);
  padding: 22px 18px 18px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid #24304609;
  transition: box-shadow 0.18s, border 0.18s, transform 0.16s;
}
.article-teaser a {
  color: #6DA77C;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.7px;
  margin-top: 4px;
  transition: color 0.18s;
}
.article-teaser:hover {
  box-shadow: 0 10px 28px rgba(36,48,70,0.14);
  border-color: #6DA77C;
  transform: translateY(-2px) scale(1.014);
}
.article-teaser a:hover {
  color: #243046;
}

/* Pricing Box */
.pricing-box {
  background: #243046;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 8px;
  padding: 10px 22px;
  margin: 20px 0 4px 0;
  display: inline-block;
  box-shadow: 0 1px 6px rgba(36,48,70,0.10);
}

/* Accordion FAQ Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 6px rgba(36,48,70,0.08);
  transition: box-shadow 0.18s, transform 0.13s;
  margin-bottom: 8px;
}
.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #6DA77C;
}
.faq-item p {
  font-size: 1rem;
  color: #243046;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(36,48,70,0.12);
  transform: scale(1.012);
}

/* Newsletter CTA & Special Text Sections */
#newsletter-cta, #cta, #about-cta, #contact-cta, #coaching-cta, #workshop-cta, #community-cta, #thankyou {
  background: #6DA77C;
  color: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
}
#newsletter-cta .content-wrapper, #cta .content-wrapper, #about-cta .content-wrapper, #contact-cta .content-wrapper, #coaching-cta .content-wrapper, #workshop-cta .content-wrapper, #community-cta .content-wrapper, #thankyou .content-wrapper {
  color: #fff;
}
#newsletter-cta a, #cta a, #about-cta a, #contact-cta a, #coaching-cta a, #workshop-cta a, #community-cta a, #thankyou a {
  background: #fff !important;
  color: #6DA77C !important;
  box-shadow: 0 2px 8px rgba(36,48,70,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
#newsletter-cta a:hover, #cta a:hover, #about-cta a:hover, #contact-cta a:hover, #coaching-cta a:hover, #workshop-cta a:hover, #community-cta a:hover, #thankyou a:hover {
  background: #243046 !important;
  color: #fff !important;
}

/* Footer Styles */
footer {
  background: #243046;
  color: #fff;
  padding: 50px 0 28px 0;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -4px 26px #24304615;
  margin-top: 40px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}
.footer-contact h3 {
  color: #6DA77C;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.footer-contact, .footer-nav {
  min-width: 190px;
}
.footer-contact p a {
  color: #6DA77C;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #F4F2EE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 4px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #6DA77C;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.footer-social a {
  display: inline-block;
  margin-right: 7px;
  transition: transform 0.14s;
}
.footer-social a:hover {
  transform: scale(1.13) rotate(-4deg);
}
.footer-social img {
  width: 28px;
  filter: grayscale(0%) brightness(1.25);
}
footer address {
  font-style: normal;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.45;
  opacity: 0.93;
}

/* Lists in benefits, values, modules, programs etc */
.values-list, .benefit-list, .service-detail-list, .workshop-program, .module-teasers, .feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 12px;
}
.values-list li, .benefit-list li, .service-detail-list li, .workshop-program li, .module-teasers li, .feature-list li {
  position: relative;
  padding-left: 22px;
  color: #243046;
  font-weight: 500;
  font-size: 1.01rem;
  margin-bottom: 6px;
}
.values-list li:before, .benefit-list li:before, .service-detail-list li:before, .workshop-program li:before, .module-teasers li:before, .feature-list li:before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  border-radius: 3px;
  background: #6DA77C;
  opacity: 0.7;
}

/* Team Bios */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(36,48,70,0.09);
  padding: 20px 16px 16px;
  min-width: 200px;
  max-width: 320px;
  margin-bottom: 20px;
  flex: 1 1 180px;
}
.team-member h3 {
  color: #6DA77C;
  margin-bottom: 5px;
}

/* Search Bar in Magazin */
.search-bar {
  margin: 18px 0 28px 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.search-bar input[type="text"] {
  font-size: 1rem;
  padding: 10px 17px;
  border-radius: 8px;
  border: 2px solid #6DA77C50;
  width: 100%;
  background: #fff;
  transition: border-color 0.15s;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.search-bar input[type="text"]:focus {
  border-color: #6DA77C;
  outline: 2px solid #6DA77C33;
}

/* Article List (Magazin) */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.article-list article {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(36,48,70,0.07);
  padding: 18px 16px 14px;
  border: 2px solid #24304607;
  transition: box-shadow 0.17s, border 0.17s, transform 0.13s;
  position: relative;
}
.article-list article:hover {
  box-shadow: 0 6px 20px rgba(36,48,70,0.12);
  border-color: #6DA77C;
  transform: scale(1.011);
}
.article-list a {
  color: #6DA77C;
  font-weight: 700;
  margin-top: 5px;
  font-size: 0.98rem;
  letter-spacing: 0.8px;
}
.article-list a:hover {
  color: #243046;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #243046;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 16px;
  box-shadow: 0 -2px 40px #24304616;
  width: 100%;
  border-radius: 16px 16px 0 0;
  animation: banner-in 0.37s cubic-bezier(.7,.02,.18,.98);
}
@keyframes banner-in {
  0% { transform: translateY(100%); opacity: 0; }
  90% { transform: translateY(-8px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  font-size: 1.08rem;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #6DA77C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.14s, color 0.12s, transform 0.14s;
  box-shadow: 0 1px 6px rgba(36,48,70,0.13);
}
.cookie-btn:hover {
  background: #fff;
  color: #6DA77C;
  transform: scale(1.04);
}
.cookie-btn.secondary {
  background: #fff;
  color: #243046;
  border: 2px solid #6DA77C;
}
.cookie-btn.secondary:hover {
  background: #6DA77C;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,48,70,0.78);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  animation: modal-in 0.38s cubic-bezier(.9,.03,.15,.97);
}
@keyframes modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #243046;
  border-radius: 22px;
  padding: 36px 22px 24px 22px;
  max-width: 400px;
  width: 94vw;
  box-shadow: 0 8px 40px rgba(36,48,70,0.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  animation: modal-popin .35s cubic-bezier(.7,.02,.18,.98);
}
@keyframes modal-popin {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.34rem;
  margin-bottom: 10px;
  color: #6DA77C;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-weight: 600;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #6DA77C35;
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background 0.17s;
  margin-right: 8px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle-slider {
  display: block;
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #6DA77C40;
  position: absolute;
  left: 0; top: 0;
  transition: background 0.19s;
}
.cookie-toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #24304640;
  transition: left 0.19s, background 0.15s;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  background: #6DA77C;
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider:before {
  left: 19px;
  background: #6DA77C;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #6DA77C;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: #243046;
}

/* Utility & Misc */
.categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #243046;
  margin-bottom: 8px;
}
.categories a {
  color: #6DA77C;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.14s, color 0.14s;
}
.categories a:hover {
  background: #6DA77C15;
  color: #243046;
}

/* Table & Address (legal pages) */
address {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  line-height: 1.55;
}

/* High-Contrast for Testimonial sections as per requirement */
#testimonials, #workshop-testimonials, #community-testimonials, .testimonial-slider {
  background: #F4F2EE;
  color: #243046;
  border-radius: 22px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #243046;
}

/* Responsive Design (Mobile First) */
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .service-cards, .feature-grid, .articles-grid, .team-bios {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 26px 8px;
  }
  .feature-grid, .service-cards, .team-bios, .articles-grid, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  h3, .h3 { font-size: 1.1rem; }
  .cta-button { font-size: 1rem; padding: 12px 18px; }
  .footer-content { gap: 16px; }
  .footer-logo img { width: 48px; }
  .mobile-menu {
    padding-top: 18px;
  }
  .mobile-nav {
    margin: 22px 0 0 18px;
  }
  #hero { padding: 45px 0 28px 0; min-height: unset; }
}
@media (max-width: 480px) {
  .footer-logo img { width: 36px; }
  .pricing-box { font-size: 1rem; padding: 9px 14px; }
}

/* Focus and hover for accessibility (WCAG & Modern_Bold style) */
.cta-button:focus, .cookie-btn:focus, .mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 2px solid #6DA77C;
  box-shadow: 0 0 8px #6DA77C50;
}

/* Hide visually */
.sr-only { position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden; }

/* Ensure min spacing between cards/sections as required */
.card, .feature-item, .service-card, .article-teaser, .team-member, .testimonial-card {
  margin-bottom: 20px;
}
.section + .section {
  margin-top: 0;
}

/* Prevent overlapping, ensure spacing */
.card-container > *, .feature-grid > *, .service-cards > *, .articles-grid > *, .team-bios > * {
  margin-bottom: 0;
}

/* No absolute positioning for content elements (only for graphical/deco if needed) */


/* ===============  END Modern Bold by ISG  ================= */
