/* 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, menu, 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-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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F9F6;
  color: #231F20;
  min-height: 100vh;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
*, *::before, *::after { box-sizing: border-box; }
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
}
a { color: #27517A; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #15755A; text-decoration: underline; }
ul, ol { padding-left: 1.3em; }
strong, b { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #27517A;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #15755A;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #27517A;
  margin-bottom: 10px;
  line-height: 1.2;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  color: #15755A;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #40433C;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.70;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #15755A;
  background: #EEF5EC;
  margin: 0 0 12px 0;
  padding: 14px 20px;
  border-radius: 12px 32px 12px 12px;
  color: #225c45;
}
h1 + p, h2 + p, h3 + p { margin-top: -8px; }

/* GENERAL SPACING AND FLEXBOX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
  border-radius: 28px;
  box-shadow: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 2px 16px 0 rgba(39, 81, 122, 0.08);
  overflow: hidden;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(39, 81, 122, 0.16);
  z-index: 1;
}
.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;
  background: #F7FBE9;
  border-radius: 28px 60px 28px 28px;
  box-shadow: 0 1px 14px 0 rgba(21, 117, 90, 0.07);
  margin-bottom: 24px;
  position: relative;
  border: 1px solid #EDF4EF;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 1px 30px -8px #C5DBD2;
  position: sticky;
  top: 0;
  z-index: 300;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 16px;
  background: #EEF6FC;
  padding: 4px 9px;
  margin-right: 16px;
  box-shadow: 0 0 1.5px rgba(39,81,122,0.10);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #27517A;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background .15s, color .10s;
}
.main-nav a.cta {
  font-weight: 700;
  padding: 8px 24px;
}
.main-nav a.primary {
  background: #15755A;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(21, 117, 90, 0.10);
  border-radius: 20px;
}
.main-nav a.primary:hover, .main-nav a.primary:focus {
  background: #3E9E81;
  color: #FFF;
}
.main-nav a.secondary {
  background: #DEE3E9;
  color: #27517A;
  border-radius: 16px;
}
.main-nav a.secondary:hover, .main-nav a.secondary:focus {
  background: #BEE0D2;
}
.main-nav a.tertiary {
  background: #F9FDEB;
  color: #27517A;
}
.main-nav a:hover:not(.primary):not(.secondary), .main-nav a:focus:not(.primary):not(.secondary) {
  background: #EEF6FC;
  color: #15755A;
}
/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #15755A;
  color: #FFF;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 7px 14px;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #3E9E81;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(231, 241, 235, 0.99);
  z-index: 1001;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 14px 48px 0 rgba(41,51,31,0.15);
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(.76,.13,.36,.94);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #3E9E81;
  border: none;
  font-size: 2.2rem;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #15755A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 16px 0;
  font-size: 1.2rem;
  color: #27517A;
  border-bottom: 1px solid #BEDECB;
  background: transparent;
  width: 100%;
  border-radius: 0;
  transition: background .12s, color .11s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a.cta.primary {
  background: #15755A;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 7px 0 rgba(21,117,90,0.08);
  margin-top: 10px;
  text-align: center;
  font-weight: 700;
  padding: 16px 0;
}
.mobile-nav a.cta.primary:hover, .mobile-nav a.cta.primary:focus {
  background: #3E9E81;
}

/* MAIN LAYOUT ELEMENTS */
main {
  width: 100vw;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 60vh;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
}
.cta-bar {
  background: #F9FDEB;
  border-radius: 40px 20px 32px 20px;
  box-shadow: 0 1px 10px 0 rgba(30,81,80,.04);
  border: 1px solid #EEEEE3;
  padding: 32px 28px;
  align-items: center;
  gap: 12px;
}

/* FLEXBOX GRIDS (adapt to exact class names in HTML) */
.feature-grid,
.benefit-grid,
.services-list,
.services-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div,
.benefit-grid > div,
.services-list > div,
.services-detailed > div {
  background: #FFF;
  border-radius: 20px 36px 24px 20px;
  box-shadow: 0 2px 16px 0 rgba(21,117,90,0.04);
  padding: 24px 18px 18px 18px;
  min-width: 240px;
  flex: 1 1 240px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .benefit-grid > div:hover, .services-list > div:hover, .services-detailed > div:hover {
  box-shadow: 0 6px 18px 0 rgba(21,117,90,0.12);
}
.feature-grid img, .benefit-grid img, .services-detailed img {
  width: 44px; height: 44px; border-radius: 14px; background: #EDF4EF; padding: 7px;
  margin-bottom: 12px;
  box-shadow: 0 1px 9px 0 rgba(62,158,129,0.10);
}
.service-price {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #15755A;
  border-radius: 8px;
  background: #F1FAED;
  padding: 3px 13px;
  margin-top: 8px;
  align-self: flex-end;
}
.services-list > div .service-price,
.services-detailed > div .service-price {
  margin-top: auto;
}

.trust-signals {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 16px;
}
.trust-signals ul {
  list-style: disc outside;
  font-size: 1rem;
  color: #40433C;
}
.trust-signals .cta {
  margin-left: 14px;
  margin-top: 0;
}

/* Cards, Lists, Tables, Other Wrappers  */
.card, .case-studies blockquote, .client-feedback blockquote {
  background: #FFF;
  border-radius: 18px 31px 18px 18px;
}

.case-studies, .client-feedback {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #F9FDEB;
  border-radius: 11px 38px 18px 18px;
  border: 1px solid #E9F7EC;
  padding: 17px 22px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #15755A;
}

.map-placeholder {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #EEF5EC;
  border-radius: 13px 21px 14px 28px;
  padding: 19px 18px;
  color: #15755A;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #F1FAED;
  border-radius: 14px 34px 16px 18px;
  padding: 10px 20px 10px 14px;
  font-size: 0.98rem;
  margin-top: 20px;
  margin-bottom: 12px;
}
.newsletter-signup .cta {
  margin-left: 10px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 10px;
}
.social-links img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #DEE3E9;
  box-shadow: 0 1px 9px 0 rgba(62,158,129,0.08);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  color: #949C8D;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.footer-menu a { color: #15755A; }
.footer-menu a:hover, .footer-menu a:focus { text-decoration: underline; color: #27517A; }

footer {
  background: #F7FBE9;
  padding-top: 30px;
  padding-bottom: 16px;
  margin-top: 60px;
  border-top: 1.5px solid #EEF6FC;
}
footer .container {
  align-items: center;
  justify-content: center;
}
footer span {
  display: block;
  text-align: center;
  font-size: 0.92rem;
  color: #727A6D;
  margin-top: 20px;
}

/* CTA BUTTONS */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  box-shadow: 0 1px 7px 0 rgba(21,117,90,0.08);
  padding: 13px 30px;
  font-size: 1.08rem;
  line-height: 1.25;
  border: none;
  cursor: pointer;
  transition: background .2s, color .18s, box-shadow .19s, transform .19s;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 2px;
  background: #EFF9F0;
  color: #27517A;
}
.cta.primary {
  background: #15755A;
  color: #FFF;
}
.cta.primary:hover, .cta.primary:focus {
  background: #3E9E81;
  color: #FFF;
  transform: translateY(-1.5px) scale(1.025);
}
.cta.secondary {
  background: #DEE3E9;
  color: #15755A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #BEE0D2;
  color: #27517A;
}
.cta.tertiary {
  background: #F9FDEB;
  color: #27517A;
}
.cta.tertiary:hover, .cta.tertiary:focus {
  background: #EEF6FC;
  color: #15755A;
}
.cta:active { transform: scale(0.97); }

/* TESTIMONIALS */
.testimonial-card blockquote {
  border: none;
  background: #F7FBE9;
  padding: 0;
  font-size: 1.07rem;
  color: #225c45;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #15755A;
  font-size: 1rem;
  margin-left: 10px;
  margin-top: 0px;
  font-style: normal;
  font-weight: 500;
}
.star-rating {
  margin-left: 26px;
  color: #E7C94E;
  font-size: 1.4rem;
  letter-spacing: 1.8px;
}

/* ACCORDIONS AND FAQ */
.faq-accordion > h3 {
  font-size: 1.13rem;
  color: #225c45;
  margin-top: 18px;
  margin-bottom: 2px;
  cursor: pointer;
  transition: color .14s;
}
.faq-accordion > h3:hover { color: #15755A; }
.faq-accordion > p {
  margin-bottom: 7px;
  margin-left: 20px;
  color: #385f4b;
  font-size: 1rem;
}

/* UTILITY CLASSES  */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.workshop-list ul,
.workshop-schedule ul,
.content-wrapper ul,
.pricing-table ul {
  padding-left: 18px;
  margin-left: 0;
  color: #27517A;
  font-size: 1rem;
  margin-bottom: 8px;
}
.workshop-schedule {
  margin-top: 8px;
}

/* Responsive Design - Mobile First */
@media (max-width: 1330px) {
  .container { max-width: 98vw; }
}
@media (max-width: 991px) {
  .container { max-width: 96vw; }
  .feature-grid > div, .benefit-grid > div, .services-list > div, .services-detailed > div {
    min-width: 180px; max-width: 100%;
  }
}
@media (max-width: 830px) {
  .container { max-width: 99vw; }
  header .container { flex-direction: row; gap: 0; }
  .main-nav { gap: 10px; }
  .feature-grid, .benefit-grid, .services-list, .services-detailed { gap: 15px; }
  .section { padding: 25px 6px; margin-bottom: 30px; }
}
@media (max-width: 768px) {
  header .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .logo img { height: 33px; padding: 2px 7px; border-radius: 8px; }
  .feature-grid, .benefit-grid, .services-list, .services-detailed, .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .trust-signals { flex-direction: column; gap: 16px; align-items: flex-start; }
  .section { margin-bottom: 16px; padding: 20px 2px; }
  .cta-bar { padding: 24px 12px; text-align: center; border-radius: 24px; }
}
@media (max-width: 520px) {
  h1, .h1 { font-size: 1.60rem; }
  h2, .h2 { font-size: 1.13rem; }
  h3, .h3 { font-size: 1.02rem; }
  .feature-grid > div, .benefit-grid > div, .services-list > div, .services-detailed > div, .testimonial-card {
    padding: 14px 8px 11px 8px;
    min-width: unset;
  }
  .newsletter-signup { padding: 7px 8px 7px 7px; font-size: 0.91rem; }
}
.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: 16px; }
}

/* Cookie Consent Banner Bottom */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #F9FDEB;
  color: #425a39;
  box-shadow: 0 -2px 24px 0 rgba(21,117,90,0.09);
  padding: 20px 8px 22px 8px;
  border-top: 2px solid #E9F7EC;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  animation: fadeInBanner 0.39s ease;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 1 1 350px;
  font-size: 1.02rem;
}
.cookie-banner .cookie-actions { display: flex; flex-direction: row; gap: 13px; }
.cookie-banner button {
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 14px;
  padding: 10px 22px;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background .18s, color .15s;
  font-weight: 500;
}
.cookie-banner .cookie-accept {
  background: #15755A;
  color: #FFF;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #3E9E81;
}
.cookie-banner .cookie-reject {
  background: #DEE3E9;
  color: #15755A;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #BEE0D2;
}
.cookie-banner .cookie-settings {
  background: #F1FAED;
  color: #27517A;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FFFAE2;
  color: #15755A;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 4px 17px 7px;
  }
  .cookie-banner .cookie-actions { gap: 10px; flex-wrap: wrap; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,86,41, .17);
  z-index: 10010;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInBanner 0.23s cubic-bezier(.68,.21,.45,1.01);
}
.cookie-modal {
  background: #fff; color: #40433C;
  border-radius: 23px 31px 13px 23px;
  padding: 36px 32px 28px 32px;
  display: flex; flex-direction: column; gap: 19px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 4px 48px 0 rgba(39,81,122, 0.14);
  border: 1.5px solid #E9F7EC;
  position: relative;
}
.cookie-modal h3 { font-family: 'Montserrat'; font-size: 1.14rem; color: #15755A; margin-bottom: 6px; }
.cookie-modal ul { margin: 0 0 0 18px; font-size: 0.98rem; color: #225c45; }
.cookie-modal label { display: flex; align-items: center; gap: 7px; font-size: 0.99rem; margin-bottom: 8px; }
.cookie-modal input[type="checkbox"], .cookie-modal input[type="radio"] {
  accent-color: #15755A;
  margin-right: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #15755A;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover { color: #3E9E81; }


/*********
Organic/Nature Visual Elements
**********/
/* Organic rounded shapes as backgrounds for sections/cards */
.section, .card, .case-studies blockquote, .testimonial-card, .newsletter-signup, .cta-bar, .cookie-modal, .pricing-table, .map-placeholder, .card-container .card {
  border-radius: 25px 50px 20px 35px;
  box-shadow: 0 2px 18px 0 rgba(39,81,122,0.07);
}
.card, .feature-grid > div, .benefit-grid > div, .services-list > div, .services-detailed > div {
  border-radius: 22px 44px 18px 18px;
  border: 1px solid #EEF6FC;
}
.cta-bar, .newsletter-signup, .map-placeholder, .pricing-table {
  border-radius: 18px 39px 18px 20px;
}

/* Subtle shadow/texture overlay for backgrounds */
body {
  background-color: #F8F9F6; /* subtle warm earth tone */
  background-image: radial-gradient(ellipse at 80% 15%, #E7F4EC 30%, transparent 65%),
   radial-gradient(ellipse at 18% 72%, #F1FAED 7%, transparent 40%);
  background-size: cover;
}

/* Line-style textures - subtle organic border at top section on desktop */
.section:first-of-type {
  border-top: 7px solid #BEE0D2;
  border-radius: 0 0 40px 40px;
}
@media (max-width: 991px) {
  .section:first-of-type { border-top-width: 4px; }
}
@media (max-width: 520px) {
  .section:first-of-type { border-top-width: 2px; }
}

/* Subtle hover lifts for cards */
.feature-grid > div, .benefit-grid > div, .services-list > div, .services-detailed > div, .testimonial-card {
  transition: box-shadow .22s, transform .18s;
}
.feature-grid > div:hover, .benefit-grid > div:hover, .services-list > div:hover, .services-detailed > div:hover, .testimonial-card:hover {
  box-shadow: 0 12px 32px -6px rgba(62,158,129,0.13);
  transform: translateY(-3px) scale(1.018);
}

/* VISUAL HIERARCHY AND WHITE SPACE */
main, .container, .content-wrapper, .card-container, .card, .feature-grid, .benefit-grid, .services-list, .newsletter-signup {
  margin-top: 0;
  margin-bottom: 0;
}
main > section { margin-bottom: 0; }
.section { margin-bottom: 60px !important; padding-bottom: 35px; }
.card-container, .card, .feature-grid, .benefit-grid, .services-list {
  margin-bottom: 18px;
}
.card, .feature-grid > div, .services-list > div, .benefit-grid > div, .testimonial-card {
  margin-bottom: 20px !important;
}

/* Accessibility - Focus styles and dark-text on testimonials */
a:focus, button:focus, input:focus, .cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #15755A;
  outline-offset: 2.5px;
  z-index: 10;
}
.testimonial-card, .testimonial-card blockquote, .testimonial-meta, .case-studies blockquote, .client-feedback blockquote {
  color: #225c45;
  background: #F7FBE9;
}
.testimonial-card { border: 1.2px solid #DFE6D8; color: #27332F; }

/* Micro-interactions for button press */
.cta:active, .cookie-banner button:active, .cookie-modal .modal-actions button:active {
  transform: scale(.97);
  box-shadow: none;
}

/****** END: Main Styles ******/
