/* =============================================================
   VOLTBRIGHT Nature Organic CSS — style.css
   Modern, earthy, responsive, flexbox-only 
   ============================================================= */

/* ======================== CSS RESET / NORMALIZE ======================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  background: #b5bba7;
  color: #263137;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100%;
}
body {
  line-height: 1.7;
  background-color: #b5bba7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #263137;
  margin-top: 0;
  margin-bottom: 0.7em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.6em;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin: 0 0 1.25em 0;
  font-size: 1rem;
  color: #384742;
}
ul, ol {
  margin: 0 0 1.25em 1.5em;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
a {
  color: #2C943E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #226d2d;
  outline: none;
  text-decoration: underline;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}
strong {
  font-weight: bold;
  color: #2C943E;
}

/* ======================== ROOT VARIABLES ======================== */
:root {
  --color-primary: #2C943E;
  --color-primary-dark: #226d2d;
  --color-secondary: #263137;
  --color-accent: #b5bba7;
  --color-bg: #b5bba7;
  --color-brown: #a6814c;
  --color-taupe: #e7dac2;
  --color-leaf: #84a883;
  --color-earth: #eef3e5;
  --color-shadow: rgba(44, 148, 62, 0.08);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 24px var(--color-shadow);
  --shadow-btn: 0 2px 8px rgba(44, 148, 62, 0.13);
  --transition: 0.28s cubic-bezier(.37,1.01,.93,.99);
}

/* ======================== LAYOUT CONTAINERS ======================== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* ======================== HEADER & NAVIGATION ======================== */
header {
  background: #b5bba7;
  border-bottom: 2px solid #e7dac2;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 32px;
}
header img {
  height: 48px;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  color: #263137;
  background: none;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-leaf);
  color: var(--color-primary);
}
.cta.primary {
  background: linear-gradient(100deg,#2C943E 70%,#a6814c 120%);
  color: #fff;
  font-family: var(--font-display);
  padding: 0.8em 2em;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition), transform 0.12s;
  display: inline-block;
  margin-left: 1.5em;
  cursor: pointer;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(100deg,#226d2d 70%,#8c6d42 120%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px 0 rgba(44,148,62,.18);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 16px;
  box-shadow: var(--shadow-btn);
  z-index: 1003;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary-dark);
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #b5bba7;
  box-shadow: 0 4px 24px rgba(44,148,62,0.10);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin: 24px 16px 8px 0;
  transition: background var(--transition);
  z-index: 2004;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-primary-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  flex: 1;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #263137;
  padding: 16px 0;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: background 0.2s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-leaf);
  color: var(--color-primary);
  outline: none;
}

/* ======================== HERO SECTION ======================== */
.hero {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: linear-gradient(90deg,#b5bba7 65%,#84a883 100%);
  position: relative;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 4px 28px 0 rgba(44,148,62,0.07);
  overflow: hidden;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  gap: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 650px;
}
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* ======================== SECTIONS / SPACING ======================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #eef3e5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.features,
.services,
.about,
.cta,
.testimonials,
.contact-info,
.faq,
.cookie-policy,
.terms,
.gdpr-info,
.cookie-policy,
.about-history,
.thankyou,
.datenschutz {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ======================== FLEXBOX CONTENT GRIDS ======================== */
.feature-grid,
.icon-grid,
.category-grid,
.nutrition-facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.category-grid > div,
.feature-grid > div,
.icon-grid > div,
.nutrition-facts-grid > div {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  padding: 28px 24px 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.category-grid img,
.feature-grid img,
.icon-grid img,
.nutrition-facts-grid img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-earth);
  padding: 6px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}

/* Cards & Infographics */
.card,
.featured-post,
.infographic {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 340px;
}
.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;
}

/* ======================== TESTIMONIALS ======================== */
.testimonials {
  background: #fff0;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.testimonials .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #eef3e5;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  color: #263137;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: box-shadow 0.18s;
  max-width: 650px;
}
.testimonial-card img {
  width: 48px;
  height: 48px;
  background: var(--color-leaf);
  padding: 6px;
  border-radius: 50%;
  flex: none;
}
.testimonial-card strong {
  color: #2C943E;
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 20px 0 rgba(44,148,62,0.18);
  background: #e7dac2;
}

/* ======================== CTA SECTION ======================== */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px 0 rgba(44,148,62,0.16);
  color: #888888;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
  color: #fff;
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .cta.primary {
  margin-left: 0;
  margin-top: 18px;
}

/* ======================== FOOTER ======================== */
footer {
  background: #e7dac2;
  padding: 32px 0 16px 0;
  color: #263137;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 24px var(--color-shadow);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-top: 0;
}
footer img {
  height: 42px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #263137;
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.9;
  transition: color 0.18s;
}
footer nav a:hover,footer nav a:focus {
  color: #2C943E;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.98rem;
  color: #263137;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.footer-contact a {
  color: #2C943E;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover { color: #226d2d; }

/* ======================== ADDRESS / CONTACT ======================== */
.address-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.address-list img {
  width: 22px;
  height: 22px;
  border-radius: 0;
  background: none;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  padding: 22px 18px;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 28px; align-items: flex-start; }
}

/* ======================== INFOGRAPHIC STYLES ======================== */
.infographic {
  background: var(--color-leaf);
  border-radius: var(--radius-md);
  color: #2C943E;
  font-family: var(--font-display);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 14px 16px 14px 14px;
  font-size: 1.15rem;
}
.infographic img {
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 0;
}

/* ======================== TIMELINE (About) ======================== */
.timeline {
  background: #eef3e5;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  margin-bottom: 20px;
}
.timeline ul {
  margin: 0 0 0 20px;
}
.timeline li {
  margin-bottom: 10px;
  color: #263137;
  padding-left: 2px;
  position: relative;
}
.timeline li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2C943E;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ======================== FAQ ACCORDION (Kontakt) ======================== */
.faq-accordion h3 {
  font-size: 1.1rem;
}
.faq-accordion > div {
  cursor: pointer;
  transition: box-shadow .2s, background .2s;
}
.faq-accordion > div:hover,
.faq-accordion > div:focus {
  background: #84a883;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
}

/* ======================== TAG CLOUD, LISTS & BADGES (Blog) ======================== */
.category-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.category-tag-cloud span {
  background: var(--color-leaf);
  color: #2C943E;
  border-radius: 17px;
  padding: 7px 22px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.featured-post {
  background: var(--color-earth);
  font-family: var(--font-body);
  font-size: 1.06em;
  border-left: 6px solid var(--color-primary);
}
.author-spotlight {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin: 20px 0 0 0;
}
.author-spotlight img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-leaf);
  padding: 6px;
}

/* ======================== BUTTONS & INTERACTIVE ======================== */
button,
.cta.primary,
input[type="submit"] {
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform 0.15s;
}
.cta.primary:active,
button:active,
input[type="submit"]:active {
  transform: scale(0.98);
}

/* ======================== FORM FIELDS & INPUTS ======================== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: 1.4px solid #84a883;
  padding: 12px 14px;
  background: #fff;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  outline: 2px solid #84a883;
}

/* ======================== MOBILE RESPONSIVE STYLES ======================== */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .feature-grid > div,
  .icon-grid > div,
  .category-grid > div,
  .nutrition-facts-grid > div { max-width: 46%; }
  footer .container { flex-direction: column; gap: 28px; }
}
@media (max-width: 768px) {
  .container,
  .content-wrapper { padding: 0 8px; }
  header .container { flex-direction: row; gap: 12px; min-height: 64px; }
  nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .cta.primary {
    margin-left: 0;
  }
  .feature-grid, .icon-grid,
  .category-grid, .nutrition-facts-grid,
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .about-history h1 { font-size: 2rem; }
  .cta h2 { font-size: 1.4rem; }
  .section, .features, .services, .about, .cta, .testimonials,
  .contact-info, .faq, .cookie-policy, .terms, .gdpr-info, .thankyou, .datenschutz {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  .hero { padding: 28px 0 28px 0; }
}
@media (max-width:520px) {
  body { font-size: 15px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  header img, footer img { height: 32px; }
  .hero .content-wrapper { gap: 14px; }
}

/* =================== COOKIE CONSENT BANNER & MODAL =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #b5bba7;
  box-shadow: 0 -4px 24px 0 rgba(44,148,62,0.14);
  border-top: 2px solid #84a883;
  z-index: 2200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 20px 20px;
  gap: 32px;
  animation: cookieBannerIn 0.5s cubic-bezier(.62,.24,.23,1.04);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity:0; }
  60% { transform: translateY(-14px); }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  color: #263137;
  font-size: 1rem;
  flex: 1;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.99rem;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--color-leaf);
  color: #2C943E;
  padding: 9px 28px;
  box-shadow: 0 1px 4px var(--color-shadow);
  margin-left: 5px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner button[aria-selected="true"],
.cookie-banner button.accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2C943E;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 18px 10px;
    gap: 16px;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}
/* ---- Cookie modal popup ---- */
.cookie-modal {
  position: fixed;
  z-index: 2500;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(38, 49, 55, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.44s cubic-bezier(.62,.24,.23,1.04);
}
@keyframes cookieModalIn {
  0% { opacity:0; }
  100%{opacity:1;}
}
.cookie-modal__content {
  background: #fff;
  color: #263137;
  padding: 38px 24px 30px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 44px 0 rgba(44,148,62,0.13);
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__close {
  position: absolute;
  right: 28px;
  top: 18px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--color-shadow);
  z-index: 2502;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--color-primary-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #eef3e5;
  border-radius: var(--radius-sm);
  padding: 15px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 22px;
  height: 22px;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
}
.cookie-category .desc {
  font-size: 0.93em;
  color: #414f45;
  margin-left: 10px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-top: 14px;
}
.cookie-modal__actions button {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 10px 32px;
  border: none;
  font-size: 1rem;
  background: var(--color-leaf);
  color: #2C943E;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal__actions button[aria-selected="true"],
.cookie-modal__actions button.accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus {
  background: #2C943E;
  color: #fff;
}
@media (max-width: 540px) {
  .cookie-modal__content {
    min-width: unset;
    width: 98vw;
    padding: 26px 2vw 22px 2vw;
  }
}

/* =================== NATURAL ORGANIC MOTIFS =================== */
.section, .features, .services, .about, .cta, .testimonials, .about-history {
  background: #eef3e5;
}
.card,
.feature-grid > div,
.icon-grid > div,
.category-grid > div,
.nutrition-facts-grid > div,
.testimonial-card,
.timeline,
.faq-accordion > div,
.featured-post,
.infographic {
  box-shadow: 0 3px 24px 0 rgba(166,129,76,0.06), 0 1.5px 8px rgba(44,148,62,.04);
  border-radius: 25px 41px 18px 35px / 31px 16px 32px 18px;
  /* subtle organic curves */
}

/* Pseudo organic shape decoration example (use only for background visuals, not content)
.section::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -40px;
  width: 120px;
  height: 74px;
  background: var(--color-leaf);
  opacity: 0.27;
  border-radius: 50% 60% 80% 70%;
  z-index: 0;
  pointer-events: none;
}
*/

/* =================== UTILITIES =================== */
.hide-mobile { display: block; }
@media (max-width: 768px) {
  .hide-mobile { display: none; }
}

.text-center { text-align: center; }
.italic { font-style: italic; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 18px!important; }
.mb-1 { margin-bottom: 9px!important; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

::-webkit-input-placeholder { color: #8b846f; }
:-moz-placeholder { color: #8b846f; }
::-moz-placeholder { color: #8b846f; }
:-ms-input-placeholder { color: #8b846f; }
::placeholder { color: #8b846f; }

/* =================== FOCUS RING FOR ACCESSIBILITY =================== */
a:focus, button:focus, input:focus, .cta.primary:focus {
  outline: 2.5px solid #2C943E;
  outline-offset: 2.5px;
  box-shadow: 0 0 0 3px rgb(44 148 62 / 9%);
}

/* =================== TRANSITIONS / ANIMATIONS =================== */
[tabindex]:focus-visible {
  outline: 2.5px solid #2C943E;
}

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