/* RESET & BASE TYPOGRAPHY */
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;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F7F4;
  color: #243A37;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  margin: 0 0 20px 20px;
}
a {
  color: #243A37;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: bold;
}
input,button,select,textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #243A37;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.33rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }
h5, h6 { font-size: 1rem; margin-bottom: 6px; }
p,li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #243A37;
}

/* BRAND COLORS */
:root {
  --color-primary: #243A37;
  --color-secondary: #A0C67A;
  --color-accent: #F4F7F4;
  --color-white: #fff;
  --color-black: #0d1917;
  --color-grey: #f0f2ef;
  --color-border: #e6ece9;
  --shadow-md: 0 4px 16px rgba(36,58,55,0.10);
  --shadow-lg: 0 8px 24px rgba(36,58,55,0.13);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 6px;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* NAVIGATION */
header {
  background: var(--color-white);
  box-shadow: 0 2px 18px rgba(36,58,55,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 102;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  padding: 18px 0;
  font-size: 1rem;
}
.main-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.18s, background 0.18s;
  border-radius: 8px;
  padding: 6px 12px;
}
.main-nav a.button.primary, .main-nav a.button.primary:visited {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 48px;
  padding: 10px 28px;
  font-weight: 800;
  font-size: 1rem;
  margin-left: 15px;
  text-shadow: none;
  border: none;
  transition: background 0.22s, box-shadow 0.22s;
  box-shadow: var(--shadow-md);
}
.main-nav a.button.primary:hover, .main-nav a.button.primary:focus {
  background: #8cb96a;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-grey);
}
.main-nav img {
  height: 38px;
  margin-right: 24px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 210;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: var(--shadow-md);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #90BB6E;
}
@media (max-width: 1020px) {
  .main-nav a.button.primary { 
    padding: 10px 14px;
  }
  .main-nav {
    gap: 10px;
    padding: 13px 0 13px 0;
  }
  .main-nav img {
    margin-right: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--color-white);
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.87,.03,.03,.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 40px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #243A37;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 3021;
  justify-content: center;
  align-items: center;
  display: flex;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
  gap: 18px;
  padding: 0 38px;
  font-size: 1.25rem;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0 14px 3px;
  margin-bottom: 0px;
  border-radius: 12px;
  background: none;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-grey);
  color: var(--color-secondary);
}
@media (max-width: 450px) {
  .mobile-nav {
    padding: 0 10px;
    font-size: 1.08rem;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-top: 32px;
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 620px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
}
.hero .subheadline {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #224c3a;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .hero .container {
    padding-top: 36px; padding-bottom: 38px;
  }
  .hero h1 { font-size: 1.75rem; }
}

/* SECTIONS, LAYOUTS, GAPS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  padding-top: 32px;
  padding-bottom: 32px;
}
.text-section .content-wrapper {
  gap: 16px;
  max-width: 740px;
}

/* FLEXBOX STRUCTURE CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--color-white);
  padding: 24px 18px;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 95vw;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID (used as 'card-grid' / 'feature-grid') */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}
.feature {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 315px;
  padding: 24px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
}
.feature img {
  width: 44px; height: 44px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.025);
  z-index: 3;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* CASE STUDY */
.case-study {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 20px 18px;
  min-width: 210px;
  flex: 1 1 290px;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* TESTIMONIAL SLIDER / LIST */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 1.14rem;
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 12px;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: #44656d;
  letter-spacing: 0.01em;
}
.testimonial-snippet {
  background: #FBFFF9;
  border-left: 6px solid var(--color-secondary);
  padding: 15px 20px;
  margin-top: 18px;
  border-radius: 0 16px 16px 0;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 850px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}

/* VALUES & TEAM */
.values-icons,
.certifications {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin: 10px 0 18px 0;
}
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 15px 0 22px 0;
}
.team-bios > div {
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 14px 15px;
  flex: 1 1 210px;
  font-size: 1rem;
}
.team-highlight {
  margin-top: 18px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  max-width: 440px;
  font-size: 1.07rem;
}
.team-values {
  margin-top: 14px;
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 18px 20px;
}
.team-values h3 {
  margin-bottom: 10px;
}

/* ADDRESS BLOCK (Kontakt) */
.address-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  align-items: flex-start;
  flex-direction: column;
}
.address-info div {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.map-placeholder {
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-top: 10px;
  margin-bottom: 12px;
  color: #243A37;
  font-size: 1.04rem;
  font-weight: 600;
}

/* FAQ STYLE */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-list h3 {
  font-size: 1.15rem;
  color: #213b35;
  margin-bottom: 9px;
  font-weight: bold;
}

.faq-cta {
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
  padding-top: 44px;
  padding-bottom: 44px;
  text-align: left;
}

/* LISTS, UL/OL */
ul, ol { padding-left: 22px; }
ol { counter-reset: step; }
ol li {
  position: relative;
  margin-bottom: 8px;
}
ol li:before {
  content: counter(step);
  counter-increment: step;
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  width: 30px; height: 30px;
  text-align: center;
  margin-right: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  line-height: 28px;
}

@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding-left: 7px; padding-right: 7px;
  }
  .section { padding: 30px 4px; }
}
@media (max-width: 768px) {
  .section, .text-section { padding: 20px 0; }
  .card-container, .content-grid, .feature-grid, .testimonial-slider, .case-studies {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1.06rem; }
}

/* THANK YOU PAGE */
.thank-you {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 50px 24px;
  margin: 32px 0 50px 0;
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
  text-align: center;
}
.thank-you h1 {
  color: var(--color-primary);
  font-size: 2rem;
}
.thank-you .button.primary {
  margin: 18px auto 0 auto;
  display: inline-block;
}

/* BUTTONS */
.button {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 48px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  padding: 12px 34px;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: background 0.15s, color 0.15s, box-shadow 0.20s, transform 0.06s;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.button.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.button.primary:hover, .button.primary:focus {
  background: #90BB6E;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.01);
}
.button.secondary {
  background: none;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: none;
  font-weight: 700;
  transition: color 0.2s, border-color 0.18s, background 0.15s;
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: #90BB6E;
}
/* links styled as buttons */
a.button {
  text-decoration: none;
}

/* FOOTER */
footer {
  margin-top: 80px;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 40px 8px 8px 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 15px;
  font-size: 0.98rem;
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  opacity: 0.84;
  transition: color 0.13s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus { opacity: 1; color: var(--color-secondary); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 44px; height: auto; margin-bottom: 7px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
}
.footer-contact div img {
  width: 18px; height: auto;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 -3px 25px rgba(36,58,55,.13);
  padding: 24px 12px;
  z-index: 5050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1.03rem;
  animation: fadeInUp 0.6s cubic-bezier(.6,-0.01,.35,1.1);
}
.cookie-banner__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 1.06rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-banner__actions button {
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  font-weight: 700;
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-primary);
  margin: 0 4px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
.cookie-banner__actions button.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 800;
}
.cookie-banner__actions button.accept:hover {
  background: #90BB6E;
  color: #fff;
}
.cookie-banner__actions button.reject {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
}
.cookie-banner__actions button.reject:hover {
  background: #1a2e29;
  color: var(--color-secondary);
}
.cookie-banner__actions button.settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-banner__actions button.settings:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 15px 2px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions button { padding: 10px 20px; font-size: 0.95rem; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: none; }
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,58,55,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6060;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__dialog {
  background: #fff;
  color: #243A37;
  border-radius: 22px;
  max-width: 470px;
  width: 95vw;
  padding: 32px 20px 24px 20px;
  box-shadow: 0 14px 50px rgba(36,58,55,0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popInModal 0.4s cubic-bezier(.7,-0.01,.24,1.01);
}
@keyframes popInModal {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal__close {
  color: #243A37;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.35rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 18;
  display: flex; justify-content: center; align-items: center;
}
.cookie-modal__close:hover { background: #e6ece9; color: #adc488; }
.cookie-modal__heading {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 17px;
  color: #222;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-grey);
  border-radius: 12px;
  padding: 14px 10px;
  font-size: 1.05rem;
  font-weight: 600;
}
.cookie-category .toggle {
  margin-left: auto;
}
.cookie-category.essential .toggle {
  pointer-events: none;
  opacity: 0.8;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #cbdccd;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--color-white);
  border-radius: 50%;
  transition: left 0.19s;
  box-shadow: 0 2px 4px rgba(36,58,55,0.09);
}
.cookie-toggle:checked:before {
  left: 23px;
}
.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-left: 4px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cookie-modal__actions button.save {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal__actions button.save:hover {
  background: #90BB6E; color: #fff;
}
.cookie-modal__actions button.cancel {
  background: #cbdccd;
  color: var(--color-primary);
}

@media (max-width: 540px) {
  .cookie-modal__dialog { padding: 17px 6px 17px 6px; }
}

/* ANIMATIONS (micro-interactions) */
a, .button, button, .feature, .card, .testimonial-card, .cookie-banner__actions button, .cookie-modal__actions button {
  transition: color 0.18s, background 0.18s, box-shadow 0.19s, transform 0.13s;
}
.feature:hover, .feature:active, .card:hover, .card:active, .testimonial-card:hover, .testimonial-card:active {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px) scale(1.02);
  z-index: 4;
}

/* SCROLLBAR MODERN */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #cbdccd; border-radius: 6px; }
::-webkit-scrollbar-track { background: #f4f7f4; }

/* UTILITY */
.mt-32 { margin-top: 32px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.pb-60 { padding-bottom: 60px !important; }


/* HIGH CONTRAST FOR TESTIMONIAL TEXTS */
.testimonial-card, .testimonial-snippet, .testimonial-card p, .testimonial-snippet p {
  color: #243A37;
  background: #F7FAF4;
}
.testimonial-author {
  color: #456965;
}

/* ACCESSIBILITY OUTLINE */
a:focus, button:focus, .feature:focus, .card:focus, .button:focus, .team-bios > div:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1.5px;
  z-index: 11;
}

/* PREVENT ABSOLUTE POSITION FOR CONTENT CARDS - only allow for overlays/buttons as seen above */
