/* --- CSS RESET & NORMALIZE --- */
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font: inherit;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #295C3C;
  background: #F4F9F4;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  color: #295C3C;
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 2px 6px 16px rgba(166,206,57,0.07);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #295C3C;
  line-height: 1.2;
  text-shadow: 1px 2px 12px rgba(166,206,57,0.08);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #619856;
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
p, .content-wrapper ul li span {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  color: #295C3C;
  font-weight: 800;
}
em {
  color: #A6CE39;
  font-style: normal;
}
.text-section p, .content-wrapper p {
  margin-bottom: 12px;
}

/* --- ARTISTIC ACCENTS & COLORS --- */
:root {
  --brand-primary: #295C3C;
  --brand-secondary: #A6CE39;
  --brand-accent: #F4F9F4;
}

/* --- LAYOUT STRUCTURE --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: white;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(166, 206, 57, 0.08), 0 2px 6px 0 rgba(41, 92, 60, 0.03);
  padding: 32px 24px 22px 24px;
  transition: transform 0.18s, box-shadow 0.2s;
  border: 2px solid #f1f5ea;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-0.5deg);
  box-shadow: 0 8px 36px 0 rgba(41,92,60,0.12), 0 4px 12px 0 rgba(166,206,57,0.11);
  border-color: #A6CE39;
}
.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: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px 0 rgba(41,92,60,0.09), 0 2px 8px 0 rgba(166,206,57,0.07);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 530px;
  border: 1.5px solid #e7f4d5;
}
.testimonial-card .stars {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A6CE39;
  font-size: 1.2rem;
  letter-spacing: 0.13em;
  margin-bottom: 2px;
}
.testimonial-card p {
  color: #244833;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #295C3C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #F4F9F4 60%, #A6CE39 100%);
  padding: 54px 0 44px 0;
  min-height: 370px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #A6CE39;
  opacity: 0.14;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  max-width: 650px;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* --- FEATURES SECTION --- */
.features {
  background: #f7faf4;
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 500;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(166,206,57,0.05);
  transition: box-shadow 0.2s, background 0.2s;
}
.features ul li img {
  width: 36px;
  min-width: 28px;
  height: 36px;
  object-fit: contain;
  filter: saturate(1.2) drop-shadow(0 4px 8px rgba(166,206,57,0.12));
}
.features ul li:hover {
  box-shadow: 0 4px 18px rgba(41,92,60,0.11);
  background: #f3f7e7;
}
/* --- SECTION SPACING (MANDATORY PATTERNS) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CARDS & POST LISTS --- */
.featured-post {
  background: #f7faf4;
  border-left: 4px solid #A6CE39;
  padding: 22px 24px;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 2px 8px rgba(166,206,57,0.08);
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}
.client-logos img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F4F9F4;
  padding: 8px;
  border: 1px solid #e7f4d5;
  box-shadow: 0 2px 8px rgba(41,92,60,0.05);
}

/* --- CTA Button --- */
.cta-btn {
  background: #A6CE39;
  color: #295C3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 25px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px 0 rgba(41,92,60,0.11);
  margin-top: 10px;
  transition: background 0.18s, color 0.17s, transform 0.16s, box-shadow 0.16s;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-shadow: 0 1px 8px rgba(244,249,244, 0.1);
}
.cta-btn:hover, .cta-btn:focus {
  background: #295C3C;
  color: #fff;
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 20px 0 rgba(41,92,60,0.19);
}

/* --- MAIN NAVIGATION --- */
header {
  background: #ffffff;
  box-shadow: 0 3px 22px 0 rgba(41,92,60,0.07);
  position: sticky;
  top: 0;
  z-index: 200;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 74px;
}
.main-nav img {
  width: 162px;
  margin-right: 22px;
  filter: drop-shadow(0 4px 16px rgba(166,206,57,0.09));
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #295C3C;
  border-radius: 18px;
  padding: 8px 16px;
  margin-left: 6px;
  margin-right: 6px;
  transition: background 0.15s, color 0.15s;
  outline: none;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: #A6CE39;
  color: #fff;
}
.main-nav .cta-btn {
  margin-left: 12px;
  margin-right: 0;
  background: #295C3C;
  color: #fff;
  border-radius: 20px;
  padding: 9px 26px;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px 0 rgba(166,206,57,0.09);
  transition: background 0.14s, color 0.14s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #A6CE39;
  color: #295C3C;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #A6CE39;
  color: #295C3C;
  font-size: 2rem;
  border-radius: 8px;
  border: none;
  padding: 8px 15px 10px 15px;
  margin-left: auto;
  margin-right: 18px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
  z-index: 300;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #295C3C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F9F4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 36px;
  padding-left: 24px;
  padding-right: 24px;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 14px 36px 0 rgba(41,92,60,0.20);
  z-index: 9999;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #295C3C;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 8px;
  border: none;
  padding: 4px 16px 8px 16px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A6CE39;
  color: #295C3C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #295C3C;
  padding: 12px 0 12px 6px;
  margin-bottom: 2px;
  border-radius: 8px;
  transition: background 0.18s, color 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A6CE39;
  color: #fff;
}

/* --- CTA SECTION --- */
.cta {
  background: #295C3C;
  padding: 52px 0;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 54px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #A6CE39;
  color: #295C3C;
}

/* --- FOOTER --- */
footer {
  background: #295C3C;
  color: #F4F9F4;
  padding: 40px 0 28px 0;
  box-shadow: 0 -2px 18px 0 rgba(41,92,60,0.09);
}
footer .container {
  padding-left: 18px;
  padding-right: 18px;
  max-width: 1080px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #A6CE39;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.15s;
  border-bottom: 1.5px dotted transparent;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #e6f2c2;
  border-bottom: 1.5px dotted #A6CE39;
}
footer .contact-info {
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  color: #F4F9F4;
}
footer .contact-info a {
  color: #A6CE39;
  transition: color 0.14s;
}
footer .contact-info a:hover, footer .contact-info a:focus {
  color: #fff8c5;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-links a img {
  width: 34px;
  height: 34px;
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(166,206,57,0.12));
  transition: filter 0.18s;
}
.social-links a:hover img {
  filter: brightness(1.25) drop-shadow(0 4px 16px #A6CE39);
}

/* --- ADDRESS/MAP IN CONTACT --- */
.address-map {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7faf4;
  border-radius: 17px;
  padding: 10px 18px;
  margin-top: 10px;
  font-size: 1.07rem;
  box-shadow: 0 1px 7px 0 rgba(41,92,60,0.03);
  color: #619856;
}
.address-map img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 9px rgba(166,206,57,0.11));
}

/* --- THANK YOU PAGE --- */
.thank-you {
  background: #F4F9F4;
  padding: 44px 0 60px 0;
  border-radius: 22px;
  text-align: center;
  min-height: 220px;
}
.thank-you .cta-btn {
  margin-top: 24px;
}

/* --- LEGAL / POLICY SECTIONS --- */
.legal {
  background: #f7faf4;
  border-left: 6px solid #A6CE39;
  border-radius: 0 18px 18px 0;
  padding: 44px 20px;
  margin: 40px 0 48px 0;
}
.legal h1, .legal h2 {
  color: #295C3C;
}
.legal ul {
  margin-bottom: 20px;
}
.legal ul li {
  padding-left: 8px;
  margin-bottom: 7px;
  color: #4b724b;
  position: relative;
}
.legal ul li:before {
  content: '–';
  position: absolute;
  left: 0;
  color: #A6CE39;
}

/* ------------ COOKIE BANNER & MODAL ------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 11111;
  background: #295C3C;
  color: #f4f9f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 22px 28px 20px 28px;
  box-shadow: 0 -4px 20px rgba(41,92,60,0.17);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookiefadein 0.7s cubic-bezier(.63,.08,.22,1.01);
}
@keyframes cookiefadein {
  0% {transform: translateY(100px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  min-width: 130px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 8px 24px;
  margin-right: 3px;
  margin-left: 3px;
  background: #A6CE39;
  color: #295C3C;
  cursor: pointer;
  border: none;
  transition: background 0.12s, color 0.12s;
}
.cookie-banner button.reject {
  background: #fff;
  color: #B62222;
  border: 1px solid #c5cfdc;
}
.cookie-banner button.cookie-settings {
  background: #295C3C;
  color: #A6CE39;
  border: 1.3px solid #A6CE39;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #295C3C;
  color: #fff;
}
.cookie-banner button.reject:hover {
  color: #fff;
  background: #c1311f;
  border-color: #c1311f;
}
.cookie-banner button.cookie-settings:hover {
  background: #A6CE39;
  color: #295C3C;
  border-color: #295C3C;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,36,22,0.63);
  z-index: 11113;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.33s ease;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #295C3C;
  border-radius: 22px;
  box-shadow: 0 12px 42px rgba(41,92,60,0.18);
  padding: 36px 26px 30px 26px;
  max-width: 410px;
  min-width: 300px;
  animation: modalPop 0.38s cubic-bezier(.53,1,.6,1.2);
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
@keyframes modalPop { 0% { transform: scale(0.7) translateY(35px); opacity: 0; } 100% { transform: scale(1) translateY(0); opacity: 1; } }
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.33rem;
  margin-bottom: 18px;
  color: #295C3C;
}
.cookie-modal-content ul {
  margin-bottom: 12px;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #A6CE39;
  color: #295C3C;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 2px 12px;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal-close:hover {
  background: #295C3C;
  color: #fff;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 48px;
  height: 26px;
  margin-left: 10px;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0; right: 0;
  bottom: 0;
  background: #A6CE39;
  border-radius: 26px;
  transition: background .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #295C3C;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1.5px 6px rgba(41,92,60,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.essential-label {
  color: #B62222;
  font-weight: bold;
  font-size: 0.99rem;
  margin-left: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1089px) {
  .container, footer .container {
    max-width: 98vw;
  }
  .main-nav {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 16px;
  }
  h1 {
    font-size: 2.1rem;
  }
  .main-nav ul {
    gap: 10px;
  }
  .main-nav img {
    width: 115px;
  }
}
@media (max-width: 768px) {
  .hero, .section, .cta {
    padding: 30px 0 26px 0;
  }
  .content-wrapper {
    gap: 13px;
  }
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .main-nav {
    justify-content: flex-start;
  }
  .main-nav img {
    margin-right: 0;
    width: 106px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 25px;
  }
  .address-map {
    font-size: 1rem;
    padding: 7px 12px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  h3 {
    font-size: 1.11rem;
  }
  .hero {
    min-height: 180px;
  }
  .hero .container, .container, footer .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .cta, .features {
    padding: 17px 0 11px 0;
  }
}
@media (max-width: 576px) {
  .testimonial-card, .card {
    padding: 14px 7px 14px 7px;
    font-size: 0.99rem;
    min-width: 170px;
    max-width: 96vw;
  }
  .content-wrapper, .section {
    gap: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 7px 10px 7px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
  }
}

/* --- FLEX DIRECTION SWITCHES FOR MOBILE --- */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .features ul,
  .client-logos,
  .footer-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .testimonial-card {
    align-items: flex-start;
  }
}

/* --- MICRO-ANIMATIONS & HOVER EFFECTS --- */
.card, .testimonial-card, .cta-btn,
.features ul li, .footer-menu a, .mobile-nav a, .cookie-banner button {
  transition: box-shadow 0.2s, background 0.16s, color 0.13s, transform 0.13s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.97) rotate(1deg);
}
.cta-btn:active {
  transform: scale(0.97);
}
.features ul li:active {
  transform: scale(0.98) rotate(-1deg);
}

/* --- UTILITY / SIZING CLASSES (for unique elements)--- */
.team-highlight {
  background: #A6CE39;
  color: #295C3C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  border-radius: 17px;
  font-style: italic;
  padding: 15px 24px;
  margin-top: 15px;
  box-shadow: 0 2px 10px rgba(166,206,57,0.07);
}

/* --- Focus Styles --- */
:focus {
  outline: 2px dashed #A6CE39;
  outline-offset: 2px;
}

/* --- Misc --- */
::-webkit-scrollbar {
  width: 9px;
  background: #F4F9F4;
}
::-webkit-scrollbar-thumb {
  background: #A6CE39;
  border-radius: 6px;
}
