/* ========== CSS RESET & NORMALIZATION ========== */
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;
  min-height: 100vh;
  background: #F2F2F2; /* Light accent background */
  color: #222E3A;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  border: 0;
}
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
input, textarea, select {
  font: inherit;
}

/* ========== BRAND TYPOGRAPHY ========== */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'),
    url('https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfBBc9.ttf') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular'),
    url('https://fonts.gstatic.com/s/opensans/v28/mem8YaGs126MiZpBA-UFVZ0b.ttf') format('truetype');
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F2F2F2;
  color: #222E3A;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222E3A;
}
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
}
p, ul, ol, li, span {
  font-size: 1rem;
  font-weight: 400;
}
.subheadline {
  font-size: 1.1rem;
  color: #6C8152;
  margin-bottom: 20px;
}

b, strong {
  font-weight: 700;
}

/* ========== ORGANIC NATURE-INSPIRED PALETTE EXTENSION ========== */
:root {
  --primary: #222E3A;
  --secondary: #94B83D;
  --accent: #F2F2F2;
  --earth: #D1BFA3;
  --forest: #3F5734;
  --leaf: #B8CE88;
  --natural-text: #434B34;
  --brown: #A39A87;
  --shadow: rgba(74, 94, 52, 0.11);
  --white: #FFF;
  --danger: #E05454;
  --success: #67AE5B;
  --gray: #EAE7E1;
}

/* ========== GLOBAL CONTAINER & LAYOUT SYSTEM ========== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 24px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 600px) {
  .section {
    padding: 24px 6px 30px 6px;
    margin-bottom: 36px;
  }
}

/* ===== FLEX UTILITY CLASSES (MANDATORY PATTERNS) ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* >=20px between cards */
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 3px 14px var(--shadow);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 240px;
}
.card:hover {
  box-shadow: 0 6px 20px var(--shadow);
  transform: translateY(-4px) scale(1.03);
}
.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: 22px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 12px var(--shadow);
  border: 1px solid var(--gray);
}
.testimonials .testimonial-card span:last-child {
  color: var(--secondary);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
header img {
  height: 40px;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--leaf);
  color: var(--forest);
}
.btn-primary {
  display: inline-block;
  padding: 10px 28px;
  background: var(--secondary);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 26px;
  font-size: 1.07rem;
  box-shadow: 0 2px 8px var(--shadow);
  letter-spacing: 0.6px;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.13s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 12px var(--shadow);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  header .container {
    gap: 13px;
  }
  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none; /* Hide main desktop nav */
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.78rem;
    text-align: center;
    border: none;
    margin-left: 10px;
    transition: background 0.2s, color 0.2s, box-shadow 0.18s;
    box-shadow: 0 2px 8px var(--shadow);
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: var(--forest);
    color: var(--accent);
  }
}

/***** MOBILE MENU OVERLAY *****/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--accent) 85%, var(--leaf) 150%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.61,.16,.37,1.1);
  box-shadow: -5px 0 24px var(--shadow);
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.open {
  pointer-events: auto;
  transform: translateX(0);  /* Slide in */
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  margin: 22px 24px 8px 0;
  background: var(--earth);
  color: var(--forest);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  text-align: center;
  border: none;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--danger);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 26px;
  margin-top: 24px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--natural-text);
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  background: none;
  border-radius: 9px;
  padding: 10px 16px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--leaf);
  color: var(--forest);
}
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}

/***** Prevent content behind mobile menu from scrolling *****/
body.mobile-menu-open {
  overflow: hidden;
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(105deg, var(--earth) 36%, var(--accent) 100%);
  border-radius: 0 0 54px 54px/0 0 24px 24px;
  box-shadow: 0 7px 44px var(--shadow);
  margin-bottom: 60px;
  padding-top: 42px;
  padding-bottom: 42px;
  position: relative;
  overflow-x: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
  text-shadow: 0 2px 6px var(--shadow);
  margin-bottom: 14px;
}
.hero .subheadline {
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 0 0 28px 28px/0 0 12px 12px;
    margin-bottom: 34px;
  }
  .hero h1 {
    font-size: 1.26rem;
  }
}

/* ========== FEATURES, CARDS, SERVICES ========== */
.features {
  background: linear-gradient(90deg, var(--accent) 60%, var(--leaf) 100%);
  border-radius: 32px;
  box-shadow: 0 2px 12px var(--shadow);
}
.features .content-wrapper > h2, .features .content-wrapper > h1 {
  color: var(--forest);
}
.features ul, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features ul {
  padding: 0;
}
.feature-grid > li, .features ul > li {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 3px 12px var(--shadow);
  align-items: flex-start;
  border: 1px solid var(--gray);
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > li:hover, .features ul > li:hover {
  box-shadow: 0 7px 22px var(--shadow);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img, .features ul > li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 4px;
}
@media (max-width: 980px) {
  .feature-grid, .features ul {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid > li, .features ul > li {
    max-width: 100%;
  }
}

.services {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 2px 8px var(--shadow);
}
.services .content-wrapper > h2, .services .content-wrapper > h1 {
  color: var(--primary);
}
.services ul, .services ol {
  margin-top: 12px;
  margin-bottom: 4px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.services li, .services ol > li {
  font-size: 1rem;
  line-height: 1.55;
}
.services b {
  color: var(--secondary);
}

/***** CARDS (for use in card-container, etc.) *****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  align-items: flex-start;
}

/* ========== TESTIMONIALS & CTA ========== */
.testimonials {
  background: var(--gray);
  border-radius: 32px;
}
.testimonials .content-wrapper > h2,
.testimonials .content-wrapper > h1 {
  color: var(--forest);
  text-align: left;
}

/***** CTA section *****/
.cta {
  margin-bottom: 0;
  background: linear-gradient(98deg, var(--leaf) 60%, var(--accent) 100%);
  border-radius: 32px;
  position: relative;
  box-shadow: 0 2px 16px var(--shadow);
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 15px;
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 8px;
}
.cta-info {
  margin-top: 12px;
  color: var(--forest);
  font-size: 1.1rem;
  max-width: 560px;
}

/* ========== ABOUT & CONTACT SECTIONS ========== */
.text-section {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 1px 7px var(--shadow);
  padding: 24px 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  border-radius: 15px;
  padding: 12px 17px;
  box-shadow: 0 1px 6px var(--shadow);
}
.contact-item strong {
  min-width: 75px;
}
.contact-item a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: bold;
}

@media (max-width: 700px) {
  .contact-details {
    gap: 12px;
  }
}

/* ========== FOOTER ========== */
footer {
  width: 100%;
  background: var(--forest);
  color: #fff;
  padding: 36px 0;
  font-size: 1rem;
  margin-top: 60px;
  box-shadow: 0 -3px 18px var(--shadow);
  border-radius: 38px 38px 0 0/13px 13px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 2 1 220px;
}
.footer-brand img {
  background: var(--leaf);
  border-radius: 12px;
  width: 48px;
  height: 48px;
}
.footer-brand .tagline {
  font-style: italic;
  font-size: 1.01rem;
  color: var(--accent);
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.35;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 140px;
}
.footer-nav a {
  color: var(--leaf);
  padding: 2px 0;
  transition: color 0.13s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFF;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 2 1 160px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  filter: brightness(1.2);
  vertical-align: middle;
  border-radius: 5px;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
  margin-left: 2px;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #FFF;
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-brand {
    margin-bottom: 12px;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 22px 18px 18px 18px;
  background: linear-gradient(90deg, var(--accent) 70%, var(--leaf) 100%);
  color: var(--primary);
  box-shadow: 0 -2px 18px var(--shadow);
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  border-radius: 28px 28px 0 0/8px 8px 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.27s, transform 0.27s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
.cookie-banner__text {
  max-width: 520px;
  line-height: 1.5;
  color: var(--primary);
}
.cookie-banner__actions {
  display: flex;
  gap: 15px;
}
.cookie-btn {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 7px 22px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 0;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 1px 6px var(--shadow);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--forest);
  color: var(--accent);
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #c93535;
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--leaf);
  color: var(--forest);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--forest);
  color: var(--accent);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: .98rem;
    padding: 14px 6px 16px 6px;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
    gap: 9px;
  }
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 380px;
  background: var(--white);
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 12px 32px var(--shadow);
  transform: translate(-50%,-52%) scale(1);
  z-index: 100000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s, transform 0.23s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 20px 22px 20px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-40%) scale(0.88);
}
.cookie-modal h3 {
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}
.cookie-category-label {
  flex: 1;
  font-size: 1rem;
}
.cookie-switch {
  width: 42px;
  height: 22px;
  border-radius: 13px;
  background: var(--gray);
  position: relative;
  transition: background 0.2s;
}
.cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf);
  transition: transform 0.21s, background 0.18s;
  box-shadow: 0 1px 5px var(--shadow);
}
.cookie-switch input:checked + .cookie-switch-slider {
  transform: translateX(20px);
  background: var(--secondary);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--danger);
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.77;
  transition: color 0.14s, opacity 0.14s;
  z-index: 2;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: #c93535;
  opacity: 1;
}

/* ========== ORGANIC DECORATIVE ========== */
/* Add subtle organic shadow, shapes, and rounded corners throughout as above */
section, .section, .features, .services, .cta, .testimonials, .text-section, .card {
  border-radius: 32px 48px 28px 44px/20px 42px 32px 24px;
}

/* Remove border radius for simple sections */
@media (max-width: 768px) {
  section, .section, .features, .services, .cta, .testimonials, .text-section, .card {
    border-radius: 18px;
  }
}

/* ========== SPACING UTILS ========== */
.mb-16 { margin-bottom: 16px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-32 { margin-bottom: 32px!important; }
.mt-32 { margin-top: 32px!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }
.gap-32 { gap: 32px!important; }

/* ========== RESPONSIVE TYPOGRAPHY & LAYOUT ========== */
@media (max-width: 1024px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  .card, .features ul > li, .feature-grid > li {
    padding: 19px 10px 17px 14px;
    min-width: 180px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.08rem; margin-bottom: 8px; }
  h2 { font-size: 0.97rem; margin-bottom: 7px; }
  .btn-primary {
    padding: 9px 13px;
    font-size: 1rem;
  }
}

/* ========== GENERAL FORM STYLES ========== */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 15px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 1px 5px var(--shadow);
  margin-bottom: 16px;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--secondary);
  outline: none;
  background: var(--white);
}
label {
  font-size: 1rem;
  margin-bottom: 5px;
  display: inline-block;
}

/* ========== MICROINTERACTIONS ========== */
a, button, .btn-primary, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-modal__close {
  outline: none;
  transition: all 0.16s cubic-bezier(.55,.06,.47,1.2);
}
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 9px;
  background: var(--earth);
}
::-webkit-scrollbar-thumb {
  background: var(--leaf);
  border-radius: 8px;
}

/* ========== STYLE-CRITICAL, AESTHETIC MARKERS ========== */
/**** Subtle leaf-like background on accent blocks ****/
.features, .testimonials, .cta {
  position: relative;
}
.features:before, .cta:before, .testimonials:before {
  content: '';
  position: absolute;
  right: -24px;
  bottom: -15px;
  width: 74px;
  height: 54px;
  background: url('../assets/organic-leaf.svg') no-repeat center/contain;
  opacity: 0.20;
  z-index: 0;
  pointer-events: none;
}

/***** Remove on mobile for performance *****/
@media (max-width: 700px) {
  .features:before, .cta:before, .testimonials:before { display: none; }
}


/* ========== ACCESSIBILITY, CONTRAST, AND HOVER GUIDELINES ========== */
.testimonial-card, .testimonials {
  color: #222E3A;
  background: #FFF;
}
.testimonial-card p,
.testimonial-card span {
  color: #222E3A;
}

/***** Prevent overlapping and maintain spacing between all cards/sections *****/
.card, .testimonial-card, .feature-grid > li, .features ul > li, .services ul > li, .card-container > .card {
  margin-bottom: 20px;
}
.section, section, .services, .features, .testimonials, .cta, .footer, .text-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .section, section, .services, .features, .testimonials, .cta, .text-section {
    margin-bottom: 34px;
    padding: 20px 6px;
  }
}

/***** Hide mobile menu and cookie modal by default *****/
.mobile-menu { display: none; }
.cookie-modal { display: none; }
.mobile-menu.open { display: flex; }
.cookie-modal.open { display: flex; }

/***** Z-Index for overlays *****/
.mobile-menu, .cookie-modal {
  z-index: 99999;
}

/* ------ END of CSS ------ */
