/* CSS RESET & BASE STYLES -------------------------------------------------- */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #253243;
  background: #FFF8F3;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #253243;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.125rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 18px;
}
strong {
  font-weight: 700;
}
a {
  color: #3E7F52;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1D4727;
  outline: none;
}

/* BRAND COLOR VARIABLES w/FALLBACKS ------------------------------------------ */
:root {
  --color-primary: #253243;
  --color-secondary: #C6D2D9;
  --color-accent: #FFDF7F;
  --color-bg: #FFF8F3;
  --color-organic-green: #3E7F52;
  --color-brown: #8B6F43;
  --color-earth: #F6F2ED;
  --color-stone: #E7E0D6;
  --color-error: #DC2626;
  --color-success: #3E7F52;
}

/* LAYOUT & CONTAINER --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-earth);
  border-radius: 36px;
  box-shadow: 0 4px 18px 0 rgba(60, 55, 44, 0.06);
  position: relative;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 10px;
    border-radius: 22px;
  }
  .container {
    padding: 0 10px;
  }
}

/* FLEXBOX UTILITY PATTERNS --------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(60, 55, 44, 0.07);
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 260px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px 0 rgba(62, 127, 82, 0.10);
  border-left: 6px solid var(--color-organic-green);
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F4EA;
  border-radius: 16px 40px 22px 32px;
  padding: 32px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(62, 127, 82, 0.041);
  flex: 1 1 210px;
  min-width: 210px;
}
@media (max-width: 768px) {
  .feature-item, .card {
    padding: 18px 15px;
    border-radius: 16px;
  }
}

/* HERO SECTION --------------------------------------------------------------- */
.hero {
  background: url('../assets/organic-bg.svg') center/cover no-repeat, linear-gradient(110deg, #E7E0D6 50%, #FFF8F3 100%);
  min-height: 360px;
  margin-bottom: 60px;
  border-bottom-left-radius: 54px 40px;
  border-bottom-right-radius: 200px 90px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
  box-shadow: 0 8px 32px 0 rgba(36,40,34,0.11);
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-organic-green);
  text-shadow: 0 4px 10px #FFDF7F33;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.15rem;
  color: #253243;
  margin-bottom: 28px;
}
.hero .cta-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero {
    min-height: unset;
    border-radius: 0 0 30px 20px;
    margin-bottom: 38px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.4rem;
  }
}

/* FEATURES GRID -------------------------------------------------------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* BUTTONS & CTA -------------------------------------------------------------- */
.cta-btn {
  background-color: var(--color-organic-green);
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 14px 40px;
  margin: 8px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(62,127,82,0.09);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  outline: none;
  min-width: 150px;
  min-height: 48px;
  letter-spacing: 0.05em;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: #29543B;
  box-shadow: 0 4px 20px 0 rgba(62,127,82,0.24);
  transform: translateY(-2px) scale(1.03);
}

button, .button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.18s, color 0.19s;
}

/* HEADER & NAVIGATION -------------------------------------------------------- */
header {
  width: 100%;
  background: #FFF;
  z-index: 70;
  box-shadow: 0 2px 10px 0 rgba(62,127,82,0.035);
}
header .container {
  min-height: 74px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 0;
}
.logo {
  display: flex;
  align-items: center;
  height: 60px;
  width: auto;
  margin-right: 26px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 20px;
  color: #29543B;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7E0D6;
  color: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-organic-green);
  color: #FFF;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background 0.2s;
  z-index: 300;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #29543B;
}

/* MOBILE NAVIGATION (Slide-out) ---------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 88vw;
  max-width: 380px;
  background: #FFF;
  box-shadow: 8px 0 32px 0 rgba(62,127,82,0.12);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.4,0.28,0.29,1);
  padding: 32px 24px;
  gap: 24px;
  min-width: 210px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-organic-green);
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #29543B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: #253243;
  padding: 12px 4px;
  border-radius: 12px;
  transition: background 0.18s, color 0.16s;
  min-width: 172px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7E0D6;
  color: var(--color-organic-green);
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    display: none;
  }
}
@media (max-width: 700px) {
  .mobile-menu {
    width: 98vw;
    max-width: none;
    padding: 30px 12px;
  }
}

/* OVERLAY when mobile-menu is open (optional: if HTML supports) ------------- */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,50,67, 0.23);
  z-index: 2999;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
}

/* FOOTER --------------------------------------------------------------------- */
footer {
  background: #F5F7F3;
  color: var(--color-organic-green);
  border-top-left-radius: 100px 66px;
  box-shadow: 0 -3px 14px 0 rgba(62,127,82,.07);
}
footer section {
  width: 100%;
  padding: 40px 0 24px 0;
  border-radius: 0 0 30px 18px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-logo {
  height: 40px;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #3E7F52;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.14s, color 0.12s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background-color: #DFE9D6;
  color: #1D4727;
}
.contact-snippet {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 27px;
  align-items: flex-start;
  font-size: 1rem;
}
.contact-snippet span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-snippet img {
  height: 18px;
  width: 18px;
}
.social-media-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-media-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #E7E0D6;
  transition: background 0.19s, box-shadow 0.18s;
}
.social-media-links a:hover, .social-media-links a:focus {
  background: #B2CCA5;
}
.social-media-links img {
  height: 24px;
  width: 24px;
}
@media (max-width: 700px) {
  .footer-menu { gap: 8px; }
  .contact-snippet { flex-direction: column; gap: 10px 0; }
}

/* TESTIMONIALS --------------------------------------------------------------- */
.testimonials {
  background: #F0F7F3;
  margin-bottom: 60px;
  padding: 40px 16px 40px 16px; 
  border-radius: 30px;
}
.testimonials h2 {
  color: var(--color-organic-green);
  margin-bottom: 8px;
}
.testimonial-card {
  background: #FFF;
  border-left: 6px solid var(--color-organic-green);
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(62, 127, 82, 0.10);
  color: #253243;
  margin-bottom: 24px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #253243;
  margin-bottom: 0;
}
.testimonial-card span {
  margin-left: auto;
  color: #3E7F52;
  font-size: 0.99rem;
  font-weight: 600;
}
.star-rating-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0 0;
  color: #1D4727;
  font-size: 1.03rem;
}
.star-rating-summary img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* BLOG/ARTICLES LIST --------------------------------------------------------- */
.blog-articles {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
  list-style: none;
}
.blog-articles li {
  background: #F6F4EA;
  border-radius: 18px;
  box-shadow: 0 1px 5px 0 rgba(62, 127, 82, 0.06);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}
.blog-articles h3 {
  margin-bottom: 3px;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  margin-top: 10px;
}
.blog-categories a {
  color: #50634A;
  background: #E7E0D6;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 1rem;
  margin: 0 2px;
  transition: background 0.11s, color 0.12s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #3E7F52;
  color: #FFF;
}

/* VALUES/FEATURES/CARDS ------------------------------------------------------ */
.values, .benefits, .features {
  background: #F6F2ED;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.values h2, .benefits h2, .features h2 {
  color: var(--color-organic-green);
}

/* ABOUT US / TEAM ------------------------------------------------------------ */
.team .text-section, .about .text-section {
  margin-bottom: 28px;
}
.team h3 { margin-bottom: 6px; }

/* CONTACT SECTION ------------------------------------------------------------ */
.contact-details {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.operating-hours {
  background: #E7E0D6;
  border-radius: 12px;
  padding: 22px 14px;
  margin-bottom: 24px;
  color: #29543B;
  font-size: 1rem;
  max-width: 400px;
}
.contact-details ul {
  list-style: none;
  padding-left: 0;
}
.contact-details li {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details img {
  height: 20px;
  width: 20px;
}
.contact-details a {
  color: #3E7F52;
  word-break: break-all;
}
.contact-details a:hover, .contact-details a:focus {
  text-decoration: underline;
}

/* LEGAL PAGES ---------------------------------------------------------------- */
.legal-section {
  background: #F6F2ED;
  border-radius: 24px;
  padding: 36px 18px;
  margin-bottom: 60px;
  box-shadow: 0 1.6px 8px 0 rgba(62,127,82,0.04);
}
.legal-section h1, .legal-section h2 {
  color: var(--color-primary);
}
.legal-section ul {
  padding-left: 16px;
  margin-bottom: 16px;
}
.legal-section li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* THANK YOU PAGE ------------------------------------------------------------- */
.thanks-section {
  background: #DEEDD9;
  border-radius: 32px;
  padding: 60px 20px;
  margin: 40px 0 60px 0;
  box-shadow: 0 2px 14px 0 rgba(62, 127, 82, 0.10);
  text-align: center;
}
.thanks-section h1 {
  color: var(--color-organic-green);
  margin-bottom: 28px;
}
.thanks-section a.cta-btn {
  display: inline-block;
  margin-top: 18px;
}

/* ORGANIC / NATURAL DECORATIVE ELEMENTS -------------------------------------- */
 /* you may add SVG/clip-path for organic shapes in hero/section backgrounds if possible */

/* LISTS & TEXT --------------------------------------------------------------- */
ul, ol {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #253243;
}
li strong {
  color: #3E7F52;
  font-weight: 600;
}
.text-section {
  margin-bottom: 16px;
}
.text-section h3 {
  font-size: 1.18rem;
  color: var(--color-organic-green);
}

/* BLOG & TIPS LAYOUT --------------------------------------------------------- */
.posts-list, .tips-list {
  margin-bottom: 40px;
  background: #F6F4EA;
  border-radius: 26px;
  box-shadow: 0 1px 9px 0 rgba(62,127,82,0.05);
}
.tips-list ul, .tips-list .text-section {
  margin-bottom: 14px;
}
.tips-list li {
  margin-bottom: 8px;
}

/* CTA SECTION ---------------------------------------------------------------- */
.cta {
  background: #F0F7F3;
  border-radius: 36px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 8px 0 rgba(62,127,82,0.08);
  text-align: center;
}
.cta h2 {
  font-size: 1.8rem;
  color: var(--color-organic-green);
  margin-bottom: 12px;
}
.cta p {
  color: #253243;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta .cta-btn {
  margin-top: 10px;
}

/* CARDS + ORGANIC SHADOWS & SPACING ------------------------------------------ */
.card, .feature-item, .testimonial-card {
  box-shadow: 0 2px 10px 0 rgba(62,127,82,0.07);
  border-radius: 20px;
  background: #FFF;
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(36,40,34,0.10);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

/* SVG/ICON STYLING ----------------------------------------------------------- */
.feature-item img, .feature-item svg {
  width: 40px;
  height: 40px;
  background: #FFDF7F;
  border-radius: 14px 34px 16px 28px;
  padding: 7px;
  margin-bottom: 8px;
  box-shadow: 0 1.7px 6.4px 0 rgba(255,223,127,0.10);
}
@media (max-width: 450px) {
  .feature-item img { width: 32px; height: 32px; padding: 5px; }
}

/* FORM ELEMENTS -------------------------------------------------------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: #F5F7F3;
  border: 1.2px solid #B2CCA5;
  padding: 12px 10px;
  border-radius: 12px;
  margin-bottom: 16px;
  width: 100%;
  color: #253243;
  transition: border 0.14s;
  box-shadow: none;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid var(--color-organic-green);
}
label {
  font-size: 1rem;
  font-weight: 600;
  color: #253243;
  margin-bottom: 5px;
}

/* COOKIE CONSENT BANNER ------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 3200;
  background: #253243;
  color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px 0 rgba(36,40,34,0.15);
  padding: 24px 32px;
  gap: 24px;
  font-size: 1rem;
  border-radius: 38px 38px 0 0;
  transition: transform 0.28s cubic-bezier(0.4,0.28,0.29,1);
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  margin: 0 4px;
  background: #3E7F52;
  color: #FFF;
  cursor: pointer;
  transition: background 0.17s, color 0.16s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #FFDF7F;
  color: #253243;
}
.cookie-banner .cookie-btn.reject {
  background: #DC2626;
  color: #FFF;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #8B6F43;
}
.cookie-banner .cookie-btn.settings {
  background: #FFDF7F;
  color: #1D4727;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #3E7F52;
  color: #FFF;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8px;
    font-size: 0.98rem;
    border-radius: 22px 22px 0 0;
    gap: 14px;
  }
  .cookie-banner .cookie-actions { gap: 10px; }
}

/* COOKIE SETTINGS MODAL ------------------------------------------------------ */
.cookie-modal {
  position: fixed;
  z-index: 3400;
  top: 50%;
  left: 50%;
  width: 94vw;
  max-width: 420px;
  background: #F5F7F3;
  border-radius: 28px;
  box-shadow: 0 6px 36px 0 rgba(62, 127, 82, 0.13);
  padding: 35px 26px 24px 26px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: opacity 0.24s, transform 0.3s cubic-bezier(0.4,0.28,0.29,1);
  pointer-events: all;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.23rem;
  color: #253243;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 16px;
}
.cookie-modal .cookie-category span {
  font-size: 1rem;
  color: #3E7F52;
  font-weight: 600;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #3E7F52;
}
.cookie-modal .cookie-category.essential span {
  color: #FFDF7F;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 14px;
  right: 25px;
  background: none;
  border: none;
  color: #3E7F52;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: #253243;
}
.cookie-modal .modal-actions,
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 3333;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,50,67,0.28);
  pointer-events: all;
}

@media (max-width: 400px) {
  .cookie-modal {
    padding: 17px 2vw 14px 2vw;
    border-radius: 15px;
    width: 99vw;
    max-width: none;
  }
}

/* ANIMATIONS & INTERACTIONS -------------------------------------------------- */
.section, .features, .benefits, .cta, .thanks-section, .hero {
  animation: fade-in 750ms cubic-bezier(.72,.04,.31,.92) both;
}
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(30px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(36,40,34,0.10);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

.cta-btn, .button, button {
  transition: background 0.16s, box-shadow 0.14s, color 0.13s, transform 0.16s;
}
.cta-btn:active {
  transform: scale(0.97);
}

/* RESPONSIVE: FLEX LAYOUTS --------------------------------------------------- */
@media (max-width: 900px) {
  .card-container, .content-grid, .features-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-item, .card {
    min-width: 140px;
  }
  .card-container { gap: 18px; }
  .testimonial-card { flex-direction: column; gap: 14px; }
  .contact-details { flex-direction: column; gap: 16px; }
}

/* SCROLLBAR NATURE ----------------------------------------------------------- */
body, *::-webkit-scrollbar {
  background: #DEEDD9;
}
body, *::-webkit-scrollbar-thumb {
  background: var(--color-organic-green);
  border-radius: 17px;
}

/* Accessibility: VISUAL FOCUS ------------------------------------------------- */
a, button, .cta-btn, input, textarea, select {
  outline: none;
}
a:focus, button:focus, .cta-btn:focus, input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px #FFDF7F55;
  border-radius: 16px;
}

/* GENERAL SPACING & LAYOUT --------------------------------------------------- */
main {
  margin-top: 18px;
  margin-bottom: 40px;
  min-height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 700px) {
  main { gap: 18px; }
}

/* MISC ----------------------------------------------------------------------- */
::-webkit-input-placeholder { color: #AAA; }
::-moz-placeholder { color: #AAA; }
:-ms-input-placeholder { color: #AAA; }
::placeholder { color: #AAA; }

[hidden] { display: none !important; }

/* END ------------------------------------------------------------------------ */
