/* --------------------------------- RESET & BASE -------------------------------- */
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, 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 {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #EDF3F0;
  color: #174C37;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #179167;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #10613F; 
  text-decoration: underline;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
strong {
  font-weight: 700;
  color: #10613F;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  color: #10613F;
  word-break: break-word;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  color: #174C37;
}
h3 {
  font-size: 1.4rem;
  color: #179167;
}
.text-section h2 {
  color: #179167;
}
.text-section h3 {
  color: #10613F;
  font-size: 1.15rem;
}
p, li, .text-section, .footer-contact, .testimonial-meta {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 14px;
}
.text-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.text-section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #179167;
  font-size: 1.1em;
}
/* --------------------------------- HEADER -------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(23,100,55, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0;
}
.header-wrapper img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #174C37;
  font-size: 1rem;
  text-transform: none;
  padding: 8px 0;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EDF3F0;
  color: #179167;
}
.cta-btn {
  background: linear-gradient(90deg,#179167 60%,#26e8a4 100%);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(16,97,63, 0.11);
  transition: background .25s, box-shadow .2s, transform .13s;
  display: inline-block;
  margin-left: 12px;
  position: relative;
  overflow: hidden;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#10613F 60%,#179167 100%);
  box-shadow: 0 6px 20px 0 rgba(23,145,103,0.18);
  transform: translateY(-3px) scale(1.027);
}
.mobile-menu-toggle {
  display: none;
  background: #179167;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px 0 rgba(23,145,103,0.11);
  cursor: pointer;
  margin-left: 12px;
  transition: background .2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #10613F;
}
/* --------------------------------- MOBILE NAV ---------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.83,0,.17,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  box-shadow: 0 14px 34px 0 rgba(23,76,55,0.13);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #10613F;
  margin: 32px 0 20px 0;
  align-self: flex-end;
  padding: 8px 20px 8px 8px;
  cursor: pointer;
  transition: color .2s, transform .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #179167;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #179167;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 10px;
  transition: background .19s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EDF3F0;
  color: #10613F;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
  }
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* --------------------------------- HERO ---------------------------------------- */
.hero {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #179167;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px 0 rgba(23,76,55,0.10);
  border-radius: 0 0 32px 32px;
  min-height: 340px;
  position: relative;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
  animation: popin 0.9s cubic-bezier(.24,.83,.35,1.12);
}
.hero p {
  color: #E5FEF2;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 12px;
  max-width: 680px;
}
@keyframes popin {
  0% { transform:translateY(40px) scale(.8); opacity:0; }
  70% { transform:translateY(-6px) scale(1.04); opacity:.85; }
  100% { transform:none; opacity: 1; }
}
.hero .cta-btn {
  background: linear-gradient(90deg,#fff 60%,#26e8a4 100%);
  color: #10613F;
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 3px 14px 0 rgba(255,255,255,0.10);
  margin-top: 8px;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: linear-gradient(90deg,#179167 60%,#10613F 100%);
  color: #fff;
}

@media (max-width: 650px) {
  .hero h1 {
    font-size: 2.02rem;
  }
  .hero p {
    font-size: 1.02rem;
  }
}
/* ----------------------------- FLEX CONTAINER DEFAULTS ------------------------ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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: 18px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(16,97,63,0.095);
  transition: box-shadow .18s, transform .13s;
  min-width: 240px;
  flex: 1 1 260px;
  overflow: hidden;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px rgba(23,145,103,0.14);
  transform: translateY(-4px) scale(1.021);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px 20px 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* --------------------------------- FEATURES ------------------------------------ */
.features .content-wrapper,.features .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 2px 18px 0 rgba(23,76,55,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .2s, transform .14s;
  margin-bottom: 20px;
  min-width: 216px;
  position: relative;
  border-top: 6px solid #179167;
  cursor: pointer;
  z-index: 0;
  overflow: hidden;
  animation: bounce-in .75s cubic-bezier(.24,.83,.35,1.05);
}
@keyframes bounce-in {
  0% {transform:scale(.7) translateY(30px); opacity:0;}
  60% {transform:scale(1.08) translateY(-8px); opacity:.95;}
  100% {transform:none; opacity: 1;}
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 28px 0 rgba(23,145,103,.16);
  transform: translateY(-4px) scale(1.045) rotate(-1.6deg);
  z-index: 2;
}
.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #EDF3F0;
  padding: 8px;
  box-shadow: 0 1px 6px 0 rgba(16,97,63,0.06);
  transition: background .15s;
}
.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #179167;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature p {
  font-size: 1.01rem;
  color: #174C37;
}
/* ---------------------------------- BENEFITS ----------------------------------- */
.benefits .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefits .content-wrapper ul li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(23,76,55,0.06);
  padding: 20px 28px 20px 54px;
  display: flex;
  align-items: center;
  min-height: 56px;
  position: relative;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.4;
  color: #174C37;
  transition: box-shadow .20s, transform .15s;
  margin-bottom: 16px;
}
.benefits .content-wrapper ul li img {
  width: 36px;
  height: 36px;
  margin-right: 16px;
  margin-left: -38px;
  background: #EDF3F0;
  border-radius: 10px;
  box-shadow: 0 0px 8px 0 rgba(16,97,63,0.07);
}
.benefits .content-wrapper ul li:hover {
  box-shadow: 0 8px 28px 0 rgba(23,145,103,0.13);
  transform: scale(1.016) translateX(3px);
}
/* --------------------------------- TESTIMONIALS -------------------------------- */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 12px 0 rgba(16,97,63,0.13);
  font-size: 1.14rem;
  color: #174C37;
  margin-bottom: 20px;
  flex: 1 1 310px;
  max-width: 400px;
  min-width: 210px;
  transition: box-shadow .2s, transform .14s;
  border-left: 10px solid #179167;
  position: relative;
}
.testimonial-card:before {
  content: "\201C";
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 4.8rem;
  color: #1791672e;
  position: absolute;
  top: -24px; left: 18px;
  line-height: 0.8;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card p {
  position: relative;
  z-index: 2;
  color: #174C37;
  font-size: 1.07rem;
  margin-bottom: 8px;
  text-shadow: 0 1px 0 #fff7;
}
.testimonial-meta {
  color: #10613F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-style: italic;
  font-weight: 600;
  z-index: 3;
  letter-spacing: 0.01em;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 11px 38px 0 rgba(23,145,103,0.15);
  transform: translateY(-3px) scale(1.018);
  border-left-color: #10613F;
}
/* --------------------------------- CTA SECTION --------------------------------- */
.cta-section {
  background: #179167;
  padding: 42px 14px;
  border-radius: 30px;
  margin-bottom: 44px;
  box-shadow: 0 2px 12px 0 rgba(23,145,103,0.12);
  position: relative;
  animation: cta-pop 1s cubic-bezier(.54,0,.37,1.13);
}
@keyframes cta-pop {
  0% {transform:scale(.9) translateY(24px) skewY(3deg); opacity:.13;}
  60% {transform:scale(1.05) translateY(-10px); opacity:1;}
  100% {transform:none; opacity:1;}
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cta-section .cta-btn {
  margin-top: 8px;
  background: #fff;
  color: #179167;
  box-shadow: 0 3px 18px 0 rgba(23,76,55,0.13);
  transition: box-shadow .19s, color .18s, background .19s;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: #174C37;
  color: #fff;
}
/* --------------------------------- FOOTER -------------------------------------- */
footer {
  background: #174C37;
  color: #fff;
  padding: 38px 0 18px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -6px 26px 0 rgba(23,76,55,0.18);
  font-size: 1rem;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
footer img {
  height: 54px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #B4E6CE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #26e8a4;
}
.footer-contact p, .footer-contact img {
  display: inline-block;
  vertical-align: middle;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
/* --------------------------------- FAQ & LISTS --------------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.faq-item {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(23,76,55,0.07);
  padding: 20px 24px 18px 24px;
  min-width: 210px;
  transition: box-shadow .17s, transform .13s;
}
.faq-item:hover, .faq-item:focus {
  box-shadow: 0 8px 26px 0 rgba(23,145,103,0.14);
  transform: translateY(-2px) scale(1.012);
}
.faq-item h3 {
  color: #179167; font-size: 1.1rem; margin-bottom: 9px;
}
.faq-item p {
  color: #174C37;
}
ol {
  counter-reset: step;
  margin-left: 0;
  padding-left: 0;
}
ol > li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
ol > li img {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 2px; top: 6px;
  background: #E1FDEC;
  border-radius: 50%;
  padding: 3px;
}
ol > li span {
  display: inline-block;
  vertical-align: middle;
}
ol > li:before {
  counter-increment: step;
  content: counter(step) ". ";
  color: #179167;
  font-weight: 800;
  font-size: 1.08em;
  position: absolute;
  left: 32px;
  top: 7px;
}
@media (max-width: 740px) {
  .faq-list, .content-grid, .card-container, .testimonials .content-wrapper, .features .grid, .footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
/* ------------------------- OTHER LAYOUTS/RESPONSIVE ADJUSTMENTS --------------- */
@media (max-width: 1020px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 875px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer {
    padding-top: 24px;
  }
  .main-nav {
    gap: 6px;
    font-size: 0.91em;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.34rem;
  }
  section {
    padding: 26px 5px;
  }
  .testimonial-card {
    padding: 18px 16px;
    min-width: 160px;
  }
  .feature, .faq-item, .card {
    padding: 16px 10px;
    min-width: 130px;
  }
}
@media (max-width: 540px) {
  .header-wrapper img, footer img {
    height: 38px !important;
  }
  .main-nav {
    font-size: 0.99em;
  }
}
/* ---------------------------- COOKIE BANNER & MODAL --------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 14px 0 rgba(23,76,55,0.09);
  border-top: 5px solid #179167;
  z-index: 101;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 100vw;
  gap: 20px;
  animation: cookieSlideUp .7s cubic-bezier(.13,.9,.36,1.15);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-banner p {
  color: #174C37;
  max-width: 480px;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .12s;
  margin: 0 4px;
  outline: none;
}
.cookie-accept {
  background: #179167;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #10613F;
}
.cookie-reject {
  background: #EDF3F0;
  color: #179167;
  border: 2px solid #179167;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fff;
  color: #10613F;
  border-color: #10613F;
}
.cookie-settings {
  background: #fff;
  color: #10613F;
  box-shadow: 0 1px 4px #17916722;
  border: 1.5px solid #10613F;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #EDF3F0;
  color: #179167;
  border-color: #179167;
}
@media (max-width: 600px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    gap: 12px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #174C3799;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFade .3s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes modalFade {
  0% { opacity:0; }
  100% { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 46px 0 #17916721;
  padding: 38px 32px 28px 32px;
  min-width: 300px;
  max-width: 96vw;
  max-height: 85vh;
  overflow-y: auto;
  color: #174C37;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  color: #10613F;
  font-size: 1.36rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #EDF3F0;
  outline: none;
  transition: background .16s;
  position: relative;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #179167;
}
.cookie-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .17s;
  box-shadow: 0 1px 4px #174C372c;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.68rem;
  color: #179167;
  position: absolute;
  top: 12px; right: 16px;
  cursor: pointer;
  transition: color .15s, transform .11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #10613F;
  transform: scale(1.14);
}
.cookie-modal .cookie-actions {
  margin-top: 8px;
}
/* ------------------------------ BUTTONS, INTERACTION ---------------------------- */
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .19s, color .13s, box-shadow .13s, border-color .13s;
}
button:focus-visible { outline: 2px dashed #10613F; outline-offset: 2px; }
button:active { transform: scale(.98); }
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  border: 1.3px solid #A7D8BD;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1em;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #179167;
  outline: none;
}
/* ----------------------- PLAYFUL DYNAMIC EXTRAS: MICRO-ANIMATIONS --------------- */
a, button, .cta-btn, .feature, .card, .testimonial-card, .faq-item, .cookie-btn, .cookie-toggle, .footer-nav a, .main-nav a {
  transition-property: color, background, box-shadow, border, transform, opacity;
  transition-duration: .19s, .22s, .17s, .14s, .17s, .16s, .21s;
  transition-timing-function: cubic-bezier(.65, .05, .36, 1);
}
.cta-btn:active { transform: scale(.97); }
.feature img {
  animation: iconSpin .95s cubic-bezier(.42,.0,.27,1) both;
}
@keyframes iconSpin {
  0% { transform: rotate(-29deg) scale(.3); opacity:0; }
  85% { transform: rotate(6deg) scale(1.1); opacity:.95; }
  100% { transform: none; opacity: 1; }
}
/* -------------------------- Confirmation & Success Section ---------------------- */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  color: #10613F;
}
.confirmation .text-section p {
  font-size: 1.08rem;
}
/***********************************************************************************/
/* ----------------------------------- THE END ----------------------------------- */
/***********************************************************************************/
