/* --------------------------
   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;
}
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #F4F0EC;
}
* { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #29423B;
  background: linear-gradient(135deg, #F4F0EC 0%, #D3E2B7 100%);
  line-height: 1.6;
  transition: background 0.4s;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  margin: 0;
  padding: 0;
  appearance: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* --------------
   BRAND COLORS
-------------- */
:root {
  --color-primary: #29423B;
  --color-secondary: #D3E2B7;
  --color-accent: #F4F0EC;
  --color-white: #fff;
  --color-black: #182421;
  --color-text: #29423B;
  --color-text-secondary: #3A614C;
  --color-btn: #29423B;
  --color-btn-hover: #3A614C;
  --color-btn-light: #D3E2B7;
  --color-shadow: rgba(41,66,59,0.08);
  --color-border: #E3E8DC;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), url(https://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm459WxRyS7j.woff2) format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxM.woff2) format('woff2');
}

/* ------------
  TYPOGRAPHY
------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.16;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
}
p, li {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}
blockquote {
  font-style: italic;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 20px;
}
cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-top: 8px;
  display: block;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* -------------
   LAYOUT & CONTAINER
------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}
.text-section {
  background: var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--color-shadow);
}

/* Feature/grid preview
   (/ & co.)
*/
.feature-grid, .recipe-list-preview, .recipe-cards-grid, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div,
.recipe-list-preview > div,
.recipe-cards-grid > div,
.tips-grid > div {
  background: var(--color-accent);
  box-shadow: 0 2px 14px var(--color-shadow);
  border-radius: 14px;
  padding: 24px 20px 20px 20px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid > div:hover,
.recipe-cards-grid > div:hover,
.tips-grid > div:hover {
  box-shadow: 0 4px 28px rgba(41,66,59,0.14);
  transform: translateY(-4px) scale(1.02);
}
.recipe-list-preview {
  gap: 24px;
  margin-bottom: 18px;
}
.recipe-list-preview > div {
  background: var(--color-white);
  border-radius: 14px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recipe-list-preview .recipe-category {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 0.95em;
  border-radius: 6px;
  padding: 2px 10px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}

/* -------------
   HEADER
------------- */
header {
  width: 100%;
  background: linear-gradient(90deg, #D3E2B7 0%, #F4F0EC 100%);
  box-shadow: 0 0 8px var(--color-shadow);
  position: relative;
  z-index: 20;
}
.header-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 75px;
  padding: 14px 0;
}
header .container {
  padding-top: 0;
  padding-bottom: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--color-primary);
  background: transparent;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
  position: relative;
}
.main-nav a.cta-nav {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: background 0.22s, color 0.14s, transform 0.16s;
}
.main-nav a.cta-nav:hover {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.main-nav a:hover:not(.cta-nav) {
  background: var(--color-secondary);
  color: var(--color-btn);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 7px;
  padding: 2px 10px 0 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-btn-hover);
}

/* -----------
   MOBILE MENU
----------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-accent);
  z-index: 400;
  padding: 0 0 0 0;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.77,.2,.21,.99), opacity 0.18s;
  box-shadow: 0 0 40px 5px var(--color-shadow);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  margin: 24px 0 0 20px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--color-btn-hover);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin: 40px 0 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-primary);
  border-radius: 9px;
  padding: 12px 20px 12px 6px;
  background: transparent;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--color-secondary);
  color: var(--color-btn);
}

/* FORCE MAIN NAV HIDE ON SMALLEST SIZES */
@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* ----------------------------------
   FEATURE/CARD CONTAINERS & FLEXBOX
---------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  box-shadow: 0 2px 14px var(--color-shadow);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-secondary);
  color: #1F2321;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(100,130,112,0.10);
  border: 1px solid #E2EDCC;
  max-width: 540px;
  width: 100%;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid var(--color-primary);
  color: var(--color-primary);
  font-style: italic;
  padding: 4px 0 4px 18px;
  border-radius: 0;
  margin-bottom: 6px;
}
.testimonial-card cite {
  color: var(--color-primary);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 18px 14px;
}

/* -----
 QUICK-TIPS, TABS, FILTERS
------ */
.quick-tips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.quick-tips li {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 1em;
  font-weight: 600;
  transition: background 0.18s;
}
.quick-inspiration-box, .seasonal-infoboxes, .info-banner {
  background: var(--color-accent);
  padding: 18px 24px;
  border-radius: 12px;
  color: var(--color-primary);
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 1.08em;
}
.info-banner a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.seasonal-filters, .category-filter, .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  align-items: center;
}

.seasonal-filters button, 
.category-filter button, 
.filter-options button {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 4px var(--color-shadow);
  transition: background 0.17s, color 0.13s, transform 0.12s;
}
.seasonal-filters button:hover,
.category-filter button:hover,
.filter-options button:hover {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.04);
}

/* Search bar (rezepte.html) */
.search-bar input[type="text"] {
  width: 100%;
  border-radius: 7px;
  padding: 11px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
  box-shadow: 0 1px 4px var(--color-shadow);
  font-size: 1em;
  color: var(--color-primary);
  transition: border 0.12s;
}
.search-bar input[type="text"]:focus {
  border: 1.5px solid var(--color-primary);
}

.pagination {
  margin: 22px 0 0 0;
  font-size: 1.05em;
  color: var(--color-primary);
  font-weight: 500;
}

/* ----------------------------------
   CTA BUTTONS, LINKS, & INTERACTIVES
---------------------------------- */
.cta-button {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 13px 34px;
  border-radius: 11px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-top: 8px;
  transition: background 0.27s, transform 0.19s, box-shadow 0.16s;
  border: none;
  outline: none;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-btn-hover);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 16px var(--color-shadow);
}
.cta-link {
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 8px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-family: 'Montserrat';
  transition: background 0.17s, color 0.14s;
}
.cta-link:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --------------------------
   FOOTER
-------------------------- */
footer {
  background: linear-gradient(90deg, #D3E2B7 0%, #F4F0EC 100%);
  padding-top: 36px;
  padding-bottom: 24px;
  border-top: 1.5px solid var(--color-border);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.05em;
  border-radius: 7px;
  padding: 7px 12px;
  transition: background 0.16s, color 0.12s;
}
.footer-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-btn-hover);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.97em;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-secondary);
  margin-bottom: 3px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 8px;
}
.footer-brand {
  font-size: 0.95em;
  color: var(--color-text-secondary);
  margin-top: 14px;
  flex-basis: 100%;
}

/* --------------------
   ADDRESS & CONTACT
---------------------- */
.address-details,
.contact-options ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-options ul li, .address-details p {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Philosophy/Team list (ueber-uns) */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 10px 0;
}

.philosophy-points p {
  margin-bottom: 11px;
}

/* Ingredient Tips */
.ingredient-tips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.ingredient-tips h3 {
  margin-bottom: 5px;
}
.ingredient-tips p {
  margin-bottom: 0;
}

/* ---------------
   RESPONSIVE DESIGN
----------------- */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  .feature-grid,
  .recipe-list-preview,
  .recipe-cards-grid,
  .tips-grid, .content-grid,
  .quick-tips,
  .ingredient-tips {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 650px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  h3 {
    font-size: 1.04rem;
  }
  .main-nav a, .footer-nav a, .mobile-nav a, .cta-button,
  .seasonal-filters button, .category-filter button, .filter-options button {
    font-size: 1em;
  }
  .feature-grid > div, .recipe-list-preview > div, .recipe-cards-grid > div {
    min-width: 0;
    padding: 15px 10px 11px 12px;
  }
}

/* ---------------
   ANIMATIONS
----------------- */
.cta-button, .cta-link, .main-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, color 0.14s, transform 0.13s;
}
input[type="text"],
.feature-grid > div, .recipe-cards-grid > div, .tips-grid > div {
  transition: box-shadow 0.17s, border 0.13s;
}

/* ---------------
   COOKIE CONSENT BANNER
----------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: var(--color-secondary);
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 -6px 16px -2px var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  font-size: 1.07rem;
  color: var(--color-primary);
  gap: 30px;
  transition: transform 0.4s cubic-bezier(.77,.2,.21,.99), opacity 0.2s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner-buttons button {
  border: none;
  outline: none;
  border-radius: 7px;
  font-size: 1em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 24px;
  transition: background 0.17s, color 0.13s;
}
.cookie-banner-buttons .cookie-accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner-buttons .cookie-accept:hover {
  background: var(--color-btn-hover);
}
.cookie-banner-buttons .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-banner-buttons .cookie-reject:hover {
  background: var(--color-secondary);
  color: var(--color-btn-hover);
}
.cookie-banner-buttons .cookie-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner-buttons .cookie-settings:hover {
  background: var(--color-primary);
  color: #fff;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41,66,59,0.50);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 32px 6px var(--color-shadow);
  padding: 24px 32px 22px 32px;
  width: 96vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalIn 0.38s cubic-bezier(.77,.2,.21,.99);
}
@keyframes cookieModalIn {
  from { opacity:0; transform: scale(0.85) translateY(80px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal-title {
  font-family: 'Montserrat';
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 9px;
  font-size: 1.8em;
  background: transparent;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background 0.17s;
}
.cookie-modal-close:hover {
  background: var(--color-secondary);
}

/* MODAL Responsive */
@media (max-width: 430px) {
  .cookie-modal {
    padding: 11px 4vw 17px 4vw;
    max-width: 98vw;
  }
  .cookie-modal-title {
    font-size: 1.04em;
  }
}

/* --- Helper classes --- */
.mt-20 {
  margin-top: 20px;
}
.gap-20 {
  gap: 20px !important;
}

@media (max-width: 540px) {
  .footer-brand {
    font-size: 0.91em;
    margin-top: 20px;
  }
  .footer-content {
    gap: 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
}


/* Hide cookie banner print & accessibility helpers */
@media print {
  .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
}

/* Accessibility: focus visuals for all btns/links */
button:focus, a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  box-shadow: 0 0 2px 1px var(--color-secondary);
}

/* -------------
   MISCELLANEOUS
------------- */
::-webkit-input-placeholder { color: #9EB994; opacity: 1; }
::-moz-placeholder { color: #9EB994; opacity: 1; }
:-ms-input-placeholder { color: #9EB994; opacity: 1; }
::placeholder { color: #9EB994; opacity: 1; }

hr {
  border: none;
  border-top: 1.5px solid var(--color-border);
  margin: 26px 0;
}

/* Ensure no overlap for all card/section containers */
.card-container > *, .section > *, .content-grid > *,
.card, .testimonial-card, .content-wrapper > * {
  margin-bottom: 20px;
}

/* Keep at least 20px between all key blocks */
.feature-grid > *,    .recipe-list-preview > *, 
.recipe-cards-grid > *, .tips-grid > * {
  margin-bottom: 20px;
}

/* Ensure background contrast for testimonials & review */
.testimonial-card, .testimonial-card blockquote {
  color: #1F2321;
  background: #F8FCF2;
}
