/* =================== CSS RESET + BASE =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F7F9F2;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #267054;
  text-decoration: none;
  transition: color .18s;
}
a:hover {
  color: #7AC259;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #222;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width:768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 6px;
  }
}

/* =========== HEADER/NAVIGATION & HERO =========== */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(38,112,84,0.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 76px;
  justify-content: space-between;
  gap: 12px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: #267054;
  background: none;
  padding: 2px 6px 2px 6px;
  border-radius: 4px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #7AC25914;
  color: #15673e;
}
.btn-primary {
  margin-left: 24px;
  background: #267054;
  color: #fff;
  padding: 13px 28px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.07rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(38,112,84,0.12);
  transition: background .17s, color .13s, transform .14s;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #7AC259;
  color: #193a2c;
  transform: translateY(-2px) scale(1.02);
}
.mobile-menu-toggle {
  display: none;
  background: #267054;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  cursor: pointer;
  margin-left: 10px;
  z-index: 1001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #7AC259;
  color: #193a2c;
}
@media (max-width:1024px) {
  .main-nav {
    gap: 18px;
  }
  .btn-primary {
    margin-left: 10px;
    padding: 11px 22px;
  }
}
@media (max-width:900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === Mobile Menu Overlay === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #222c;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.58,1.15,.36,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: #267054;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 24px 24px 12px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background .18s;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #7AC259;
  color: #193a2c;
}
.mobile-nav {
  background: #fff;
  min-width: 270px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 46px 34px 24px 34px;
  box-shadow: -4px 0 16px #2221;
  z-index: 2;
}
.mobile-nav a {
  color: #267054;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 9px 0;
  width: 100%;
  border-radius: 6px;
  transition: background .18s, color .20s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7AC25914;
  color: #193a2c;
}
@media (max-width:350px) {
  .mobile-nav { min-width: 95vw; padding-left: 10px; padding-right: 10px; }
  .mobile-menu-close { margin-right:8px; }
}

/* =========== FOOTER =========== */
footer {
  background: #193a2c;
  color: #fff;
  margin-top: 60px;
  padding: 34px 0;
}
footer .container {
  flex-direction: column;
  gap: 28px;
}
.footer-logo img {
  height: 54px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #F7F9F2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: 0.93;
  transition: color .15s, opacity .15s, font-weight .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7AC259;
  font-weight: 700;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap:10px;
  font-size: 0.98rem;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 8px;
  height: 20px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  opacity: 0.88;
  transition: opacity .16s, transform .16s;
}
.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.15);
}
@media (max-width:900px) {
  footer .container {
    gap:16px;
  }
  .footer-nav {
    gap:11px;
  }
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: #267054 url('../assets/hero-bg.svg') center/cover no-repeat;
  color: #fff;
  padding: 64px 0 70px 0;
  position: relative;
}
.hero .container {
  align-items: center;
  text-align: left;
}
.hero .content-wrapper {
  gap: 14px;
  align-items: flex-start;
}
.hero h1,
.hero .subheadline {
  color: #fff;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.hero .subheadline {
  font-size: 1.22rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.97;
}
.hero .btn-primary {
  margin-top: 24px;
  font-size: 1.12rem;
  box-shadow: 0 4px 20px #193a2c20;
}
@media (max-width:768px) {
  .hero {
    padding: 36px 0 38px 0;
  }
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  .hero .subheadline {
    font-size: 1.03rem;
    margin-bottom: 14px;
  }
  .hero .btn-primary {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .thank-you-message,.next-steps{font-size:1.04rem;}
}

/* =============== FEATURES / CARDS =============== */
.features {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px #2670540a;
  padding: 36px 0 8px 0;
}
.features .container {
  gap: 0;
}
.features .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F9F2;
  padding: 24px 24px 22px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 12px #7AC25913;
  width: 265px;
  min-width: 180px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .20s, transform .18s;
}
.feature-item:hover {
  box-shadow: 0 6px 32px #26705421;
  transform: translateY(-4px) scale(1.02);
  z-index: 3;
}
.feature-item img {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 1px 4px #7AC2591a;
}
.feature-item h3 {
  font-size: 1.17rem;
  margin-bottom: 6px;
  color: #267054;
}
.feature-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #333c;
}
.trust-badges {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 12px;
}
.trust-badges img {
  width: 48px; height: 48px;
  opacity: 0.87;
  transition: opacity .15s;
}
.trust-badges img:hover {opacity:1;}
@media (max-width:1100px) {
  .feature-item {
    width: 44vw;
    min-width: 180px;
    flex-basis: 180px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width:768px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 4px;
  }
  .feature-item {
    width: 96vw;
    padding: 16px 14px 18px 14px;
  }
  .features {
    border-radius: 14px;
    padding: 22px 0 0 0;
    margin-bottom:38px;
  }
}

.product-filters {
  margin-top: 26px;
  padding: 10px 0;
}
.product-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.product-filters li {
  list-style: none;
  background: #7AC25912;
  padding: 7px 18px;
  border-radius: 11px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #267054;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.product-filters li:hover, .product-filters li:focus {
  background: #7AC259;
  color: #fff;
}

.benefits-list {
  margin-top:18px;
}
.benefits-list ul{
  list-style: disc inside;
  color: #267054;
  font-weight: bold;
  font-size:1.02rem;
}

/* ============== LISTS IN CONTENT SECTIONS ============== */
.tips-list ul,
.usage_tips ul,
.eco_benefits_highlights ul {
  list-style: disc inside;
  color:#15673e;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 14px 0;
}
.step_by_step_guides ol {
  list-style: decimal inside;
  color:#193a2c;
  font-size:1.01rem;
  font-weight: 600;
  margin-bottom:12px;
}
.step_by_step_guides h3 {
  color:#267054;
}
.featured_tip,
.usage_tips {
  background:#7AC25916;
  border-radius:14px;
  padding: 14px 18px;
  margin-top: 10px;
}
.featured_tip h3 {
  color:#267054;
  margin-bottom:8px;
}

/* ================== BLOG =================== */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.blog-post {
  background: #F7F9F2;
  border-radius: 14px;
  box-shadow: 0 2px 8px #7AC25917;
  padding: 22px 24px 18px 24px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .15s;
}
.blog-post:hover {
  box-shadow: 0 4px 16px #26705421;
  transform: scale(1.016);
}
.blog-post h3 {
  color: #267054;
  margin-bottom: 7px;
}
.popular-posts ul,
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top:2px;
}
.popular-posts h3,
.categories h3 {
  color: #267054;
  margin-bottom: 4px;
  margin-top: 18px;
}
.popular-posts a {
  color: #267054;
  font-weight:700;
  border-bottom: 2px solid #7AC25944;
  padding-bottom: 1px;
  transition: color .13s;
}
.popular-posts a:hover {
  color: #7AC259;
}
.categories li {
  font-weight: bold;
  background: #7AC25912;
  color: #267054;
  border-radius:9px;
  padding:3px 10px;
  font-size:0.98rem;
}

/* =============== CARDS & CONTAINERS ============== */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px #26705413;
  padding: 26px 24px 20px 24px;
  transition: box-shadow .18s, transform .14s;
}
.card:hover {
  box-shadow: 0 6px 28px #7AC25929;
  transform: translateY(-3px) scale(1.03);
  z-index:2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============== TESTIMONIAL CARDS ============== */
.testimonial-slider,
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #2670541a;
  color: #193a2c;
  position: relative;
  flex: 1 1 270px;
  font-size: 1.03rem;
  transition: box-shadow .16s, transform .13s;
}
.testimonial-card p {
  color: #222;
  font-weight:600;
  font-size: 1.07rem;
  margin-bottom: 6px;
}
.testimonial-card .star-rating {
  color: #FFD700;
  font-size: 1.25rem;
}
.testimonial-card .customer-info {
  color: #7AC259;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #7AC25919;
  transform: translateY(-5px) scale(1.03);
  z-index:2;
}
@media (max-width:768px) {
  .testimonial-card {
    font-size: 0.97rem;
    padding: 13px;
    gap:12px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============== CTA BANNER & FORMS ============== */
.cta-banner {
  background: #267054;
  color: #fff;
  border-radius: 18px;
  margin-top: 36px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 22px #7AC2591d;
}
.cta-banner h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cta .content-wrapper{
  align-items: center;
  gap:12px;
}
.cta h3 {
  color: #267054;
  margin-bottom: 8px;
  font-size:1.2rem;
}
.subscribe-form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.subscribe-form input[type="email"] {
  padding: 13px 18px;
  border: 2px solid #7AC259;
  border-radius: 11px;
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  outline: none;
  transition: border .17s, box-shadow .15s;
}
.subscribe-form input[type="email"]:focus {
  border-color: #267054;
  box-shadow: 0 0 0 2px #26705434;
}
.subscribe-form .btn-primary {
  margin-left: 0;
  padding: 13px 28px;
  font-size: 1.08rem;
}
@media (max-width:768px) {
  .cta-banner {
    padding: 16px 11px 16px 11px;
    border-radius: 9px;
  }
  .cta-banner h3 { font-size:1.02rem; }
  .subscribe-form{
    flex-direction: column;
    align-items:stretch;
    gap:10px;
  }
  .subscribe-form input[type="email"]{
    font-size:1rem;
    padding:10px 5px;
  }
}

/* =========== CUSTOM LAYOUTS (FLEXBOX!) =========== */
.card-container, .card-grid, .feature-grid, .testimonial-slider,
.blog-list, .popular-posts ul, .categories ul, .tips-list ul, .step_by_step_guides ol, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.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;
}
@media (max-width:768px){
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap:16px;
  }
}

/* =========== CONTACT/ABOUT CARDS/INFO =========== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F7F9F2;
  padding: 20px 24px;
  border-radius: 11px;
  font-size: 1.03rem;
  box-shadow: 0 2px 12px #7AC25913;
}
.contact-details img {
  width: 23px;
  height: 23px;
  margin-right: 9px;
  vertical-align: middle;
}
.map-embed {
  margin: 22px auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed img {
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 2px 14px #26705423;
}
@media (max-width:768px) {
  .contact-details, .map-embed img { padding: 8px 6px; width:100%; }
}

/* =============== LEGAL / POLICY PAGES =============== */
.legal {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 56px;
  box-shadow: 0 2px 24px #2670540A;
  padding: 38px 0 14px 0;
}
.legal .container { gap:0; }
.legal .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.legal ul, .legal ol {
  margin-bottom: 18px;
  color:#267054;
  font-weight: 600;
  font-size:1.03rem;
}
.legal a {
  color: #7AC259;
  text-decoration: underline;
  font-weight: 700;
}
.legal a:hover { color:#267054; }
@media (max-width:768px) {
  .legal { border-radius: 10px; padding:17px 0 7px 0;}
}

/* ================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #193a2c;
  color: #fff;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 -4px 20px #193a2c33;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  z-index: 9999;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  animation: slideUpBanner .6s cubic-bezier(.54,.01,.36,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity:0; } to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-message {
  flex:2 1 300px;
  line-height:1.5;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  background: #7AC259;
  color: #193a2c;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.01rem;
  border: none;
  border-radius: 8px;
  padding: 10px 21px;
  cursor: pointer;
  transition: background .14s, color .14s, transform .16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #267054;
  transform: translateY(-1px) scale(1.03);
}
.cookie-settings-btn {
  background:transparent;
  color:#fff;
  border: 2px solid #7AC259;
  padding: 9px 19px;
  margin-left: 4px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background:#7AC259;
  color:#193a2c;
}
@media (max-width:650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding:13px 6px 12px 6px;
    font-size: 0.97rem;
  }
}
@media (max-width:450px) {
  .cookie-banner .cookie-actions { gap:6px; }
  .cookie-banner button { font-size:0.94rem; padding: 8px 13px; }
}

/* == COOKIE CONSENT PREFERENCES MODAL == */
.cookie-modal-overlay {
  display:none;
  position: fixed; left:0; top:0; width:100vw;height:100vh;
  background: rgba(24,38,33,0.70);
  z-index: 11000;
  align-items: center;
  justify-content: center;
  animation: fadein.33s cubic-bezier(.68,.2,.38,.97);
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #193a2c;
  border-radius: 18px;
  padding: 36px 38px 27px 38px;
  box-shadow: 0 10px 44px #2670543A;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popin .4s cubic-bezier(.7,-0.01,.3,1);
}
@keyframes fadein { from{opacity:0;} to{opacity:1;} }
@keyframes popin { 0%{transform:scale(0.88);opacity:0;} 100%{transform:scale(1);opacity:1;} }
.cookie-modal-title {
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
  font-size:1.25rem;
  font-weight: 900;
  color:#267054;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  background:#F7F9F2;
  border-radius:10px;
  padding:14px 16px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-size:1.04rem;
  color:#193a2c;
}
.cookie-category .cookie-toggle {
  width: 44px;
  height: 24px;
  background:#7AC25944;
  border-radius:12px;
  position: relative;
  transition: background .2s;
  border:none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.cookie-category .cookie-toggle:checked {
  background: #7AC259;
}
.cookie-category .cookie-toggle::before {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 2px 5px #26705422;
  position: absolute;
  left: 1px; top: 1px;
  transition: left .19s;
}
.cookie-category .cookie-toggle:checked::before {
  left: 21px;
}
.cookie-category .cookie-essential{ color:#aaa; font-size:0.99rem; font-style:italic;}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
  font-size:1.05rem;
  border-radius:7px;
  border:none;
  padding:10px 22px;
  background:#267054;
  color:#fff;
  font-weight: 800;
  transition: background .13s, color .13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #7AC259;
  color: #193a2c;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 19px;
  background: none;
  color: #7AC259;
  font-size: 1.67rem;
  border: none;
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #267054; }
@media (max-width:480px){
  .cookie-modal {padding:16px 8px 16px 8px; min-width:0; }
  .cookie-modal-title{font-size:1rem;}
  .cookie-modal-actions button{padding:7px 13px;font-size:0.97rem;}
}

/* =============== GENERAL UTILITIES ============== */
.text-center{text-align:center;}
.mb-0{margin-bottom:0!important;}
.bold{font-weight: bold;}

/* =============== TYPOGRAPHY SCALE ============== */
@media (max-width:768px){ h1{font-size:1.5rem;} h2{font-size:1.18rem;} h3{font-size:1.05rem;} }

/* ========== MISC: SPACING/WHITE SPACE PADDING ========= */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
}
@media (max-width:768px){
  main > section{margin-bottom:28px; padding:21px 0;}
}

/* ============== FOCUS STYLES (Accessibility) ============= */
a:focus, button:focus, input:focus, .btn-primary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #7AC259;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #7AC25934;
}

/* ======== HIGH CONTRAST, HIGH IMPACT (MODERN_BOLD) ======== */
h1, h2, h3, .footer-nav a, .btn-primary { letter-spacing: .5px; }
.feature-item, .card, .testimonial-card, .blog-post {
  border: 1.5px solid #26705410;
}

/* ================== END OF CSS ================== */
