/* =======================================================
   LebensBalance Kompass - NATURE ORGANIC STYLE CSS
   Responsive, Flexbox layouts ONLY, No CSS Grid/Columns
======================================================== */
/*---------------- RESET & BASE ------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #213233;
  background-color: #F2E9D5;
  min-height: 100vh;
  line-height: 1.6;
}
img, video {
  max-width: 100%;
  height: auto;
}
a {
  color: #3A6F8F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1E445A;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, .btn-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
}
hr {
  border: none;
  border-top: 1px solid #dbd3c3;
  margin: 32px 0;
}

/*-------------------- TYPOGRAPHY ------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1E445A;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, .subheadline, .legal-links, .brand-info p, .testimonial-card > span {
  font-size: 1rem;
  margin-bottom: 14px;
}
.subheadline {
  font-size: 1.1rem;
  color: #3A6F8F;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
strong {
  color: #236185;
  font-weight: 700;
}
.text-section ul {
  margin-left: 0;
  padding-left: 24px;
  list-style: disc;
}
.text-section ul li,
.feature-grid li,
.service-list li,
.tips ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
}

/*----------------- CONTAINER & LAYOUTS ------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: #FFFFFF;
  box-shadow: 0 4px 24px 0 rgba(44,64,44,0.04);
}
@media (max-width: 1024px) {
  .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/*----------------- HEADER & NAV ------------------*/
header {
  background: #e7dbc4 url('../assets/bg-texture-leaf.svg') top right no-repeat;
  box-shadow: 0 1.5px 14px 0 rgba(34,50,41,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1E445A;
  padding: 10px 12px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #C7E4C1;
  color: #236185;
}
header nav a.btn-primary {
  margin-left: auto;
  margin-right: 0;
  background: #3A6F8F;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 28px;
  padding: 10px 26px;
  box-shadow: 0 2px 8px 0 rgba(83,104,72,0.09);
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
}
header nav a.btn-primary:hover, header nav a.btn-primary:focus {
  background: #1E445A;
  color: #fff;
}
header nav img {
  height: 44px;
  width: auto;
  margin-right: 10px;
}
.mobile-menu-toggle {
  display: none;
  background: #236185;
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 0 16px;
  height: 48px;
  width: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute; right: 24px; top: 12px;
    z-index: 170;
    justify-content: center;
    align-items: center;
    background: #236185;
    color: #fff;
    box-shadow: 0 2px 14px rgba(35,97,133,0.06);
    transition: background 0.2s;
  }
}

/*------------- MOBILE NAVIGATION ---------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  max-width: 420px;
  background: #F8F4EB;
  box-shadow: 4px 0 24px 0 rgba(72,104,83,0.13);
  transform: translateX(-100%);
  z-index: 200;
  transition: transform 0.32s cubic-bezier(0.66,0.02,0.22,1);
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 6px 0 32px 0 rgba(44,64,44,0.12);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 20px 10px 0;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #236185;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 201;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #3A6F8F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 40px 32px 40px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #1E445A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  background: none;
  border-radius: 15px;
  padding: 12px 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #236185;
  background: #dfefdf;
}
@media (max-width: 420px) {
  .mobile-menu {
    max-width: 100vw;
  }
  .mobile-nav {
    padding: 28px 18px 32px 18px;
  }
}

/*-------------------- HERO -----------------------*/
.hero {
  background: #E8F3EA url('../assets/bg-texture-organic.svg') right 10% top -50px no-repeat;
  border-radius: 0 0 48px 48px/0 0 36px 36px;
  box-shadow: 0 2px 16px 0 rgba(94,132,107,.07);
  min-height: 310px;
  display: flex;
  align-items: stretch;
  margin-bottom: 60px;
  padding: 38px 0 32px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 200px;
}
.hero .content-wrapper {
  padding-top: 10px;
    padding-bottom: 12px;
  gap: 0;
}
.hero h1 {
  color: #236185;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.hero .subheadline {
  color: #317148;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .hero {
    padding: 18px 0 10px 0;
    min-height: 140px;
    border-radius: 0 0 18px 18px/0 0 12px 12px;
    box-shadow: none;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 1.28rem;
    margin-bottom: 10px;
  }
  .hero .container {
    padding: 0 6px;
  }
}

/*------------------- FEATURES SECTION --------------------*/
.features {
  margin-bottom: 60px;
  background: #eaf6ef;
  border-radius: 42px;
  padding: 44px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.feature-grid li {
  background: #FCF7F1;
  padding: 28px 22px 20px 22px;
  border-radius: 25px 40px 30px 20px / 25px 60px 32px 30px;
  box-shadow: 0 2px 18px rgba(72,104,83,0.07);
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.18s;
}
.feature-grid li img {
  background: #dfefdf;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 4px 24px rgba(44,94,64,0.12);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid h3 {
  color: #236185;
  font-size: 1.14rem;
  margin-bottom: 8px;
  margin-top: 0;
}

/*------------------ SERVICES/PRODUCT CARDS ---------------------*/
.services {
  margin-bottom: 60px;
  padding: 44px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 22px 0 0 0;
  justify-content: flex-start;
}
.service-list li {
  background: #F0F6F2;
  border-radius: 25px;
  padding: 32px 20px 18px 26px;
  box-shadow: 0 2px 15px rgba(81,107,80,0.07);
  min-width: 220px;
  max-width: 315px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid #236185;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.17s;
}
.service-list li strong {
  font-size: 1.1rem;
  margin-top: 12px;
  color: #2f6b53;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 6px 28px rgba(49,113,72,0.15);
  border-left: 5px solid #3A6F8F;
  transform: scale(1.024) translateY(-3px);
}

/*----------------- TESTIMONIALS ------------------*/
.testimonials {
  background: #ede9df;
  border-radius: 42px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials h2 {
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 32px 18px 36px 29px / 24px 48px 30px 35px;
  box-shadow: 0 3px 32px 0 rgba(115, 145, 115, 0.14);
  padding: 30px 32px 24px 32px;
  margin-bottom: 24px;
  max-width: 520px;
  min-width: 215px;
  color: #263738;
  font-size: 1.09rem;
  position: relative;
  border-left: 5px solid #C5DDCF;
  transition: box-shadow 0.16s, border 0.17s;
}
.testimonial-card span {
  color: #697d6e;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 8px 48px 4px rgba(60,106,84,0.12);
  border-left: 5px solid #3A6F8F;
}

/*---------------- CALL TO ACTION (CTA) -----------------*/
.cta {
  background: #317148;
  border-radius: 36px;
  color: #fff;
  margin-bottom: 60px;
  padding: 44px 0;
  box-shadow: 0 4px 34px 0 rgba(49,113,72,.09);
}
.cta h2 {
  color: #fff;
  font-size: 1.3rem;
}
.cta .btn-primary {
  background: #F2E9D5;
  color: #236185;
  font-weight: 700;
  margin-top: 18px;
  font-size: 1.05rem;
}
.cta .btn-primary:hover { background: #fff5e0; color: #1E445A; }

/*------ INFORMATION/TIPS/ABOUT TEXT BLOCKS -----*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 0 0;
}
.text-section h3 {
  font-size: 1rem;
  color: #317148;
  margin-top: 9px;
  margin-bottom: 5px;
}
.tips ul {
  margin-left: 0;
  padding-left: 24px;
  margin-top: 10px;
}
.tips ul li {
  list-style: disc;
  margin-bottom: 9px;
  color: #3A6F8F;
}

/*----- ABOUT TEAM/NATURE SHAPES/CARDS -------*/
.about-team .text-section ul li {
  background: #F6EEDB;
  padding: 13px 17px;
  border-radius: 17px 28px 22px 25px / 18px 33px 21px 14px;
  box-shadow: 0 1.5px 7px rgba(245,215,183,0.06);
  margin-bottom: 12px;
  color: #24332A;
  font-size: 1rem;
}

/*----- CONTACT PAGE -----*/
.contact-details ul {
  padding-left: 0;
  margin-bottom: 18px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
  font-size: 1.04rem;
  color: #1E445A;
}
.contact-details ul li img {
  width: 22px; height: 22px;
}
.map {
  background: #f4f7f2;
  border: 1px dashed #C7E4C1;
  padding: 16px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/*------------ LEGAL/INFO PAGES ---------------*/
.legal {
  background: #f1eee5;
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 38px 0;
}
.legal .text-section ul li {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 9px;
  color: #2a423b;
  padding-left: 4px;
}
.legal a { color: #236185; text-decoration: underline; }
.legal a:hover { color: #3A6F8F; }

/*---------------- BUTTONS -------------------*/
.btn-primary, .btn-primary:visited {
  display: inline-block;
  background: #236185;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  outline: none;
  border-radius: 28px;
  padding: 12px 34px;
  margin: 0;
  box-shadow: 0px 2px 12px 0 rgba(60,80,66,0.10);
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.23s, transform 0.14s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1E445A;
  color: #fff;
  box-shadow: 0px 7px 22px rgba(49,113,72,0.13);
  transform: translateY(-2.5px) scale(1.035);
}

/*------------- FOOTER ----------------------*/
footer {
  background: #284f36;
  color: #f2f2ef;
  width: 100%;
  padding: 42px 0 28px 0;
  border-radius: 32px 32px 0 0 / 22px 18px 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 22px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation, .brand-info, .contact-snippet, .legal-links {
  flex: 1 0 165px;
  margin-bottom: 20px;
}
.footer-navigation nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px;
}
.footer-navigation nav a {
  color: #C7E4C1;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 5px;
}
.footer-navigation nav a:hover {
  text-decoration: underline;
  color: #fff;
}
.brand-info img {
  margin-bottom: 10px;
  width: 48px; height: 48px;
}
.brand-info p {
  color: #F3F9F2;
  font-size: .98rem;
}
.contact-snippet ul {
  padding-left: 0;
}
.contact-snippet ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eaf6ef;
  font-size: 1.02rem;
  margin-bottom: 10px;
}
.contact-snippet ul li img {
  width: 20px;
  height: 20px;
}
.legal-links {
  font-size: 0.97rem;
  color: #C7E4C1;
}
.legal-links a {
  color: #C7E4C1;
  text-decoration: underline;
}
.legal-links a:hover { color: #fff; }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .brand-info,
  .contact-snippet,
  .legal-links,
  .footer-navigation {
    margin-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .section, .services, .features, .testimonials, .cta, .legal {
    padding: 19px 4px;
    border-radius: 17px;
    margin-bottom: 34px;
  }
  .testimonial-card {
    padding: 20px 10px 16px 12px;
  }
}

/*------ RESPONSIVE FLEXBOX FOR KEY SECTIONS --------*/
.card-container {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 23px 28px 19px 36px;
  box-shadow: 0 1px 10px rgba(44,53,41,.08);
  padding: 26px 18px;
}
.content-grid {
  display: flex !important;
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

/*-------------- MICRO-ANIMATIONS --------------*/
.btn-primary, .service-list li, .feature-grid li, .testimonial-card, .cta .btn-primary {
  transition: box-shadow 0.2s, background 0.18s, border-color 0.18s, color 0.18s, transform 0.14s;
}

/*------------------ COOKIE CONSENT BANNER & POPUP ----------------*/
#cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffce8;
  border-top: 2.5px solid #C7E4C1;
  box-shadow: 0 -4px 32px rgba(74, 111, 69, 0.12);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 23px 10px 21px 18px;
  font-size: 1rem;
  transition: transform 0.29s cubic-bezier(.69,.01,.32,1.02), opacity 0.22s;
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
#cookie-banner .cookie-text {
  color: #234a2e;
  max-width: 610px;
  font-size: 1rem;
  line-height: 1.55;
}
#cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
#cookie-banner button {
  background: #3A6F8F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.17s;
}
#cookie-banner button.reject {
  background: #eee;
  color: #317148;
  border: 1.5px solid #C7E4C1;
}
#cookie-banner button.settings {
  background: #fff9eb;
  color: #236185;
  border: 1.5px solid #236185;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: #236185;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(60,80,66,0.13);
}
#cookie-banner button.reject:hover { background: #E7DBC4; color: #236185; }
#cookie-banner button.settings:hover {
  background: #3A6F8F;
  color: #fff;
}
@media (max-width: 650px) {
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px 3vw 17px 3vw;
    font-size: .95rem;
  }
  #cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}

/*------ COOKIE CONSENT POPUP/MODAL ----------*/
#cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #F8F4EB;
  padding: 40px 28px 32px 28px;
  border-radius: 26px;
  box-shadow: 0 7px 38px 7px rgba(70,120,85,0.13);
  z-index: 4000;
  min-width: 320px;
  max-width: 95vw;
  width: 450px;
  display: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.21s;
}
#cookie-modal.open {
  display: block;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
#cookie-modal h2 {
  color: #2d5737;
  font-size: 1.13rem;
  margin-bottom: 14px;
  font-weight: 600;
}
#cookie-modal .cookie-categories {
  margin: 20px 0 17px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 0 0;
  border-bottom: 1px solid #e3e3c9;
}
#cookie-modal .cookie-category label {
  color: #317148;
  font-weight: 500;
  font-size: 1.02rem;
}
#cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #236185;
}
#cookie-modal .cookie-category.essential label {
  color: #bdb068;
}
#cookie-modal .cookie-category.essential input[type="checkbox"] {
  display: none;
}
#cookie-modal .cookie-modal-actions {
  margin-top: 17px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
#cookie-modal button {
  background: #3A6F8F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  padding: 9px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s;
}
#cookie-modal button.cancel {
  background: #eee;
  color: #317148;
  border: 1.5px solid #C7E4C1;
}
#cookie-modal button.cancel:hover { background: #C7E4C1; color: #236185; }
#cookie-modal button:hover, #cookie-modal button:focus { background: #236185; }
#cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #236185;
  cursor: pointer;
  z-index: 4010;
}
#cookie-modal .cookie-modal-close:hover, #cookie-modal .cookie-modal-close:focus { color: #236185; background: #eaf6ef; }
@media (max-width: 500px) {
  #cookie-modal {
    padding: 15px 7px 19px 7px;
    min-width: 0;
    width: 98vw;
  }
}

/*------ CUSTOM SCROLLBAR for ORGANIC FEEL ------*/
body::-webkit-scrollbar {
  width: 12px;
  background: #eaf6ef;
}
body::-webkit-scrollbar-thumb {
  background: #bed7cd;
  border-radius: 16px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #a5bfa3;
}

/*---- FORM ELEMENTS ---*/
input[type="text"], input[type="email"], textarea, select {
  background: #F2E9D5;
  color: #1E445A;
  border-radius: 14px;
  border: 1.3px solid #C7E4C1;
  padding: 9px 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  transition: border 0.18s, box-shadow 0.18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #3A6F8F;
  box-shadow: 0 0 0 2px #C7E4C1;
}
::placeholder {
  color: #A6B7B2;
  opacity: 1;
}

/*---- SUCCESS PAGE ----*/
.confirmation {
  background: #eaf6ef;
  border-radius: 34px;
  box-shadow: 0 4px 18px 0 rgba(149, 183, 112, 0.06);
  margin-bottom: 60px;
  padding: 40px 0;
  color: #213233;
}
.confirmation h1 {
  color: #236185;
  margin-bottom: 10px;
}
.confirmation .subheadline {
  color: #317148;
  margin-bottom: 18px;
}
.confirmation .btn-primary {
  margin-top: 22px;
}

/*--- HIGH CONTRAST FOR ACCESSIBILITY in REVIEWS/TESTIMONIALS ---*/
.testimonial-card,
.testimonial-card span,
.testimonial-card p {
  color: #213233 !important;
}

/*---- MISC ----*/
[hidden] { display: none !important; }

/* ORGANIC/OVAL DIVIDER DECORATION SAMPLE (optional):
.divider-organic {
  width: 90px; height: 18px;
  background: #bed7cd;
  border-radius: 24px 18px 18px 24px/17px 13px 15px 13px;
  margin: 24px 0 18px 0;
}
*/
