/* ===========================
   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,
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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F6F6;
  color: #1a2d18; /* Deep olive for readable text */
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #15406A;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #26A269;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 48px 36px 40px;
  /* organic, asymmetrical rounded corners */
  box-shadow: 0 6px 32px 0 rgba(41,64,74,0.07);
}
.content-wrapper,
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 769px) {
  .content-wrapper,
  .content-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, .display-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #15406A;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
@media (min-width: 769px) {
  h1, .display-title {
    font-size: 3rem;
  }
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #15406A;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
@media (min-width: 769px) {
  h2 {
    font-size: 2.4rem;
  }
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1a2d18;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #206442;
  margin-bottom: 8px;
}
p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #283829;
}
.subheadline {
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #206442;
  margin-bottom: 18px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(41,64,74,0.04);
  min-height: 70px;
  position: relative;
  z-index: 9;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 46px;
  width: auto;
  border-radius: 12px 28px 16px 22px;
  background: #e7eed9;
  padding: 3px 9px;
  box-shadow: 0 3px 12px 0 rgba(38,162,105,0.08);
  transition: box-shadow 0.2s;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #206442;
  letter-spacing: 0.01em;
  position: relative;
  padding: 3px 0 3px 0;
  border-radius: 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #26A269;
  transition: width 0.3s cubic-bezier(.56,.36,0,.7);
  border-radius: 2px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #26A269;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  padding: 12px 28px;
  border-radius: 28px 38px 42px 24px;
  background: #26A269;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(38,162,105,0.09);
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  transition: background 0.3s, color 0.1s, transform 0.15s;
  vertical-align: middle;
}
.cta-btn.primary {
  background: #206442;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(21,64,106,0.14);
}
.cta-btn:hover,
.cta-btn:focus {
  background: #15406A;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta-btn:active {
  background: #15406A;
  color: #cde3cd;
  transform: none;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: #e7eed9;
  color: #206442;
  font-size: 2.1rem;
  border: none;
  border-radius: 18px 28px 10px 22px;
  padding: 6px 13px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.1s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #26A269;
  color: #fff;
}

@media (max-width: 1170px) {
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    gap: 14px;
  }
}

/* Hide main-nav and call-to-action on mobile, show burger */
@media (max-width: 900px) {
  .main-nav,
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* ===========================
   MOBILE MENU STYLES
   =========================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #edf5ea;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 32px 0 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.56,.36,0,.7);
  box-shadow: -8px 0 48px 0 rgba(32,100,66,.14);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 28px;
  background: #206442;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 19px 13px 40px 19px;
  cursor: pointer;
  padding: 4px 17px 8px 17px;
  transition: background 0.1s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #26A269;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: #206442;
  font-weight: 600;
  border-radius: 10px 14px 17px 6px;
  background: #e7eed9;
  padding: 10px 14px;
  margin-bottom: 3px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #26A269;
  color: #fff;
}

/* ===========================
   HERO SECTIONS
   =========================== */
.hero {
  background: #e7eed9 url('../assets/organic-bg.svg') no-repeat right bottom;
  background-size: 60% auto;
  border-radius: 0 0 48px 48px;
  min-height: 320px;
  margin-bottom: 60px;
  padding-top: 44px;
  padding-bottom: 36px;
  box-shadow: 0 9px 48px -3px rgba(38,162,105,0.08);
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.hero h1 {
  color: #15406A;
  margin-bottom: 4px;
  font-size: 2.4rem;
}
@media (min-width: 769px) {
  .hero .container {
    flex-direction: row;
    gap: 80px;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
}

/* ===========================
   FLEXBOX LAYOUTS & SECTIONS
   =========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px 36px 20px 28px;
  box-shadow: 0 3px 18px 0 rgba(38,162,105,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover,
.card:focus {
  box-shadow: 0 7px 28px 0 rgba(21,64,106,0.11);
  transform: translateY(-3px) scale(1.012);
}
.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;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #e7eed9;
  border-radius: 24px 34px 24px 35px;
  box-shadow: 0 2px 16px 0 rgba(38,162,105,0.06);
  padding: 26px 19px 21px 21px;
  min-width: 210px;
  min-height: 230px;
  flex: 1 1 210px;
  transition: box-shadow 0.15s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 12px 14px 11px 18px;
  background: #cde3cd;
  padding: 4px;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 4px 25px 0 rgba(32,100,66,0.11);
}
@media (max-width: 900px) {
  .feature-item { min-width: 155px; }
}

.service-item {
  background: #fff;
  border-radius: 22px 25px 25px 17px;
  box-shadow: 0 2px 16px 0 rgba(21,64,106,0.07);
  padding: 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 245px;
  min-width: 220px;
  transition: box-shadow 0.18s;
}
.service-item:hover {
  box-shadow: 0 6px 25px 0 rgba(32,100,66,0.13);
}
.service-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .feature-item, .service-item {
    min-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
  .service-list, .service-grid {
    gap: 12px;
    flex-direction: column;
  }
}

/* ===========================
   TESTIMONIALS & REVIEW CARDS
   =========================== */
.testimonials {
  background: #f9f6ef;
  border-radius: 38px 38px 32px 32px;
}
.testimonials h2 {
  color: #206442;
  font-size: 2rem;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 270px;
  background: #fff;
  border-radius: 22px 31px 22px 23px;
  box-shadow: 0 5px 24px 0 rgba(32,100,66,0.08);
  margin-bottom: 20px;
  flex: 1 1 270px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #15406A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
}
.testimonial-author {
  font-size: 1rem;
  color: #206442;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 9px 30px 0 rgba(21,64,106,0.12);
}

/* Ensure contrast for testimonials and reviews (dark text on light card) */
.testimonial-card,
.review-card {
  color: #15406A;
  background: #fff;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #265133;
  color: #f6f6f6;
  padding: 44px 0 0 0;
  margin-top: 80px;
  border-radius: 48px 48px 0 0;
}
footer .container {
  padding-bottom: 16px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 45px;
  background: #cde3cd;
  border-radius: 14px 18px 20px 20px;
  box-shadow: 0 3px 12px 0 rgba(38,162,105,0.07);
  margin-bottom: 9px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: .98rem;
}
.contact-info img {
  width: 19px;
  height: 19px;
  margin-right: 5px;
  vertical-align: middle;
  background: #e7eed9;
  border-radius: 5px;
  padding: 2px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #cde3cd;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 2px 0;
}
.footer-menu a:hover {
  color: #fff;
}
footer .cta-btn {
  background: #26A269;
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(38,162,105,0.11);
  margin-top: 20px;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
  background: #e7eed9;
  border-radius: 44px 44px 38px 38px;
  box-shadow: 0 7px 42px 0 rgba(38,162,105,0.09);
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
}
.cta h2 {
  color: #15406A;
  font-size: 2rem;
}
.cta p {
  font-size: 1.1rem;
  color: #206442;
  text-align: center;
  max-width: 920px;
}
.cta-btn.primary {
  margin-top: 15px;
}

/* ===========================
   ABOUT, LEGAL, TEAM, ETC.
   =========================== */
.text-section {
  background: #f6f6ec;
  border-radius: 17px 27px 15px 28px;
  padding: 18px 18px 14px 18px;
  margin-bottom: 18px;
}
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  padding: 0 4px;
}
.team-members > div {
  background: #e7eed9;
  border-radius: 16px 32px 14px 20px;
  padding: 15px 17px;
  flex: 1 1 220px;
  min-width: 180px;
  box-shadow: 0 2px 10px 0 rgba(38,162,105,0.05);
  font-family: 'Roboto', Arial, sans-serif;
}
.training-programs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 9px;
}
.training-programs-grid > div {
  background: #f6f6ec;
  padding: 10px 13px 8px 13px;
  border-radius: 14px 12px 13px 10px;
  box-shadow: 0 1px 7px 0 rgba(38,162,105,0.04);
  flex: 1 1 140px;
  min-width: 140px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .team-members, .training-programs-grid {
    flex-direction: column;
    gap: 13px;
  }
}
.benefits-list, .case-studies, .analytics-tools-list, .report-types, .decision-support-benefits, .coaching-methods, .success-metrics {
  background: #e7eed9;
  border-radius: 14px 17px 12px 18px;
  padding: 14px 14px 14px 17px;
  margin-bottom: 16px;
  font-size: .99rem;
  box-shadow: 0 1px 8px 0 rgba(32,100,66,0.04);
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal {
  background: #fff;
  border-radius: 32px 40px 36px 36px;
  box-shadow: 0 6px 32px 0 rgba(41,64,74,0.05);
  padding: 36px 20px;
  margin-bottom: 60px;
}
.legal .text-section {
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.legal ul, .legal ol {
  padding-left: 30px;
  margin-bottom: 22px;
}
.legal li {
  margin-bottom: 7px;
}

/* ===========================
   FORM ELEMENTS (if present)
   =========================== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px 19px 15px 18px;
  border: 1px solid #b6c7ad;
  padding: 10px 14px;
  margin-bottom: 18px;
  background: #f6f6f6;
  color: #15406A;
  box-shadow: 0 1px 6px 0 rgba(38,162,105,0.08);
  transition: border 0.16s, box-shadow 0.19s;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #26A269;
  border-color: #26A269;
  background: #e7eed9;
}

/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #e7eed9;
  box-shadow: 0 -4px 30px 0 rgba(21,64,106,0.08);
  z-index: 99999;
  padding: 22px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 32px 32px 0 0;
  animation: cookieSlideIn 0.55s cubic-bezier(.56,.36,0,.7);
}
@keyframes cookieSlideIn {
  from { transform: translateY(96px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner p {
  color: #283829;
  font-size: 1rem;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cookie-btn,
.cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px 17px 17px 20px;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(38,162,105,0.08);
  transition: background 0.17s, color 0.13s, transform 0.14s;
}
.cookie-btn {
  background: #206442;
  color: #fff;
}
.cookie-btn.reject {
  background: #e7eed9;
  color: #206442;
  border: 1.5px solid #206442;
}
.cookie-btn:hover,
.cookie-btn:focus,
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #15406A;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-settings-btn {
  background: #fff;
  color: #206442;
  border: 1.5px solid #206442;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000;
  background: #fff;
  border-radius: 34px 44px 31px 37px;
  box-shadow: 0 8px 70px 0 rgba(32,100,66,.16);
  padding: 34px 26px 28px 30px;
  transform: translate(-50%, -60%) scale(0.99);
  min-width: 300px; max-width: 92vw;
  min-height: 180px;
  animation: cookieModalSlideIn 0.47s cubic-bezier(.56,.36,0,.7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 19px 11px 16px 14px;
  }
}
@keyframes cookieModalSlideIn {
  from { opacity: 0; transform: translate(-50%, -60%) scale(0.85); }
  to   { opacity: 1; transform: translate(-50%, -60%) scale(0.99); }
}
.cookie-modal h3 {
  font-size: 1.27rem;
  color: #206442;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #15406A;
}
.cookie-switch {
  width: 42px;
  height: 22px;
  position: relative;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e7eed9;
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #26A269;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.11);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #206442;
  font-size: 1.7rem;
  position: absolute;
  top: 13px;
  right: 23px;
  cursor: pointer;
  opacity: 0.78;
  transition: color 0.13s, opacity 0.12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #15406A;
  opacity: 1;
}

/* ===========================
   ANIMATIONS & MICRO-INTERACTIONS
   =========================== */
.feature-item, .service-item, .testimonial-card, .card {
  transition: box-shadow 0.15s, transform 0.17s, background 0.16s;
}
.feature-item:active, .service-item:active, .testimonial-card:active, .card:active {
  background: #cde3cd;
  box-shadow: 0 6px 37px 0 rgba(32,100,66,0.18);
  transform: scale(0.98);
}

a:focus, .cta-btn:focus {
  outline: 2px solid #26A269;
  outline-offset: 2px;
}

/* ===========================
   MISC & SPACING
   =========================== */
@media (max-width: 768px) {
  h1.display-title, h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-menu {
    gap: 6px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 210px;
    border-radius: 0 0 32px 32px;
    padding-top: 21px;
    padding-bottom: 20px;
  }
  .team-members > div, .feature-item, .service-item {
    padding: 13px 8px;
    border-radius: 12px 15px 10px 16px;
  }
  .section, .legal {
    border-radius: 20px;
    padding-left: 3px;
    padding-right: 3px;
  }
  .cta {
    border-radius: 24px 24px 18px 18px;
  }
  .footer-content, .content-grid {
    gap: 11px;
  }
}

/* Remove margin between last elements */
.section > :last-child, .container > :last-child, .legal > :last-child, .content-grid > :last-child, .content-wrapper > :last-child {
  margin-bottom: 0 !important;
}

/* Organic “blob” background elements (if present in design) */
.organic-bg {
  position: absolute;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
  filter: blur(2px);
}

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

/* ===========================
   END CSS
   =========================== */