/* --- CSS RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background-color: #F5F5F3;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3824;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23647A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #70B252;
}
ul, ol {
  padding-left: 1.25em; /* for lists */
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}

/* --- TYPOGRAPHY (nature_organic style) --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #184B34;
  line-height: 1.15;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
}
p, .text-section {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #23647A;
  font-weight: 700;
}
.price {
  color: #70B252;
  font-weight: 700;
  margin-left: 8px;
  font-size: 1rem;
}

/* -- CONTAINER AND LAYOUT -- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  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;
  border-radius: 32px;
  background: #fffbe7;
  box-shadow: 0 4px 28px 0 rgba(40,87,24,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* --- HEADER --- */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 18px 16px;
  background: #E1E7DE;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 2px 6px rgba(85,110,61,0.05), 0 1.5px 0 #CED7CC inset;
  position: relative;
  z-index: 50;
}
header > a img {
  height: 44px;
  border-radius: 14px;
  background: #F5FFFA;
  padding: 3px 8px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
  color: #184B34;
  transition: background 0.18s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #C3E1C2;
  color: #23647A;
}
header .btn.primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
}

/* --- BUTTONS & CALLS TO ACTION --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 36px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #70B252;
  color: #fff;
  border: none;
  outline: none;
  box-shadow: 0 1.5px 10px rgba(111, 189, 96, 0.19);
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.2s;
  min-width: 180px;
  min-height: 44px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.btn.primary {
  background: #23647A;
  color: #fff;
  border: 2px solid #23647A;
}
.btn.primary:hover, .btn.primary:focus {
  background: #1c515e;
  color: #ABE4AA;
  box-shadow: 0 6px 24px rgba(35, 100, 122, 0.09);
}
.btn.secondary {
  background: #70B252;
  color: #fff;
  border: 2px solid #70B252;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #55833B;
  color: #fffbe7;
}
.btn.outline {
  background: transparent;
  color: #23647A;
  border: 2px solid #23647A;
}
.btn.outline:hover, .btn.outline:focus {
  background: #F5FFFA;
}

/* --- CARD LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(136,179,81,0.075);
  padding: 28px 20px 24px 20px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 7px 24px rgba(110,150,81,0.12);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F6FDE7;
  border-radius: 18px;
  box-shadow: 0 2px 19px rgba(35,100,122,0.09);
  padding: 20px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #194B2B;
  border-left: 6px solid #70B252;
  position: relative;
}
.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #194B2B;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #468B38;
  margin-left: 12px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- FOOTER --- */
footer {
  background: #E1E7DE;
  padding: 36px 0 18px 0;
  margin-top: 64px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
footer nav a {
  font-size: 1rem;
  color: #23647A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.15s;
}
footer nav a:hover {
  color: #70B252;
}
footer .contact-info {
  text-align: center;
  font-size: 0.99rem;
  color: #34583B;
  line-height: 1.7;
}
footer .contact-info a {
  color: #70B252;
}

/* --- LISTS WITH ICONS (features & values) --- */
ul li img, ol li img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: -5px;
}

/* --- FAQ SECTION --- */
.faq-group {
  background: #F3F9EA;
  border-radius: 14px;
  border-left: 5px solid #70B252;
  padding: 20px 22px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-group h2 {
  font-size: 1.13rem;
  margin-bottom: 0;
  color: #23647A;
}
.faq-group .text-section {
  margin-bottom: 0;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 500;
  background: #23647A;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 14px rgba(35, 100, 122, 0.09);
  padding: 24px 14px 22px 14px;
  gap: 18px;
  animation: slideBannerUp 0.52s cubic-bezier(.21,.91,.63,1.05);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn {
  min-width: 140px;
  min-height: 40px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-banner .btn.primary {
  background: #70B252;
  border-color: #70B252;
  color: #fff;
}
.cookie-banner .btn.secondary {
  background: #F5F5F3;
  color: #23647A;
  border-color: #70B252;
}
.cookie-banner .btn.outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.cookie-banner .btn.primary:hover, 
.cookie-banner .btn.secondary:hover, 
.cookie-banner .btn.outline:hover {
  filter: brightness(0.95);
  background: #468B38;
}
@keyframes slideBannerUp {
  0% { transform: translateY(120%); opacity: 0; }
  96% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,74,38,0.20);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #FCFFF6;
  color: #183B23;
  border-radius: 20px;
  padding: 38px 24px 28px 24px;
  width: 98vw;
  max-width: 420px;
  box-shadow: 0 12px 48px rgba(34,78,31,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: slideInModal 0.34s cubic-bezier(.4,1.25,.58,1.1);
}
@keyframes slideInModal {
  from { transform: translateY(50px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: #23647A;
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.04rem;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal input[type=checkbox] {
  accent-color: #70B252;
  width: 18px;
  height: 18px;
  border-radius: 6px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal .btn {
  font-size: 0.98rem;
  padding: 9px 15px;
  min-width: 115px;
  min-height: 36px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 12px;
  top: 9px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #23647A;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
}
.cookie-modal .close-modal:hover {
  color: #70B252;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #EDF9EF;
  z-index: 800;
  transform: translateX(-102vw);
  transition: transform 0.34s cubic-bezier(.28,1.07,.41,1.08);
  box-shadow: 3px 0 44px rgba(62,102,81,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #23647A;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  z-index: 20;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #C3E1C2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 42px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #1d4b2a;
  font-weight: 600;
  padding: 11px 6px 11px 7px;
  border-radius: 10px;
  transition: background 0.14s, color 0.13s;
  min-width: 210px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #70B25233;
  color: #23647A;
}

/* --- SPACING CLASSES (for custom layouts) --- */
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }

/* --- ORGANIC/NATURE STYLE DECORATIVE EFFECTS --- */
.section {
  /* organic shape with shadow */
  box-shadow: 0 7px 38px 0 rgba(134,150,89,0.09), 0 2px 8px #d3edcb1a;
  border: 2.5px solid #e6f5e5;
  background: #fffbe7 url('../assets/organic-bg.svg') repeat left bottom;
  background-size: contain;
}

.text-section {
  background: #F3F9EA;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 990px) {
  .container {
    max-width: 94vw;
  }
  header nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 6px;
  }
  header {
    flex-direction: row;
    padding: 12px 6px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }
  header nav, header .btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: #23647A;
    margin-left: auto;
    cursor: pointer;
    border-radius: 10px;
    padding: 4px 8px;
    transition: background 0.16s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #C3E1C2;
  }
  main .section, .section {
    padding: 25px 5vw;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 17px 10px;
    border-radius: 13px;
    gap: 8px;
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item {
    gap: 7px;
  }
  footer {
    padding: 28px 0 10px 0;
    border-radius: 0;
    gap: 16px;
  }
  footer nav {
    gap: 10px;
    font-size: 0.92rem;
  }
  .cookie-banner {
    padding: 16px 6px 13px 6px;
    border-radius: 0;
  }
  .cookie-modal {
    padding: 22px 7px 21px 7px;
    border-radius: 10px;
    min-width: 0;
    max-width: 99vw;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.68rem;
  }
  h2 {
    font-size: 1.27rem;
  }
  .btn {
    font-size: 1rem;
    min-width: 140px;
    padding: 9px 18px;
  }
  .section {
    padding: 13px 4vw;
    margin-bottom: 23px;
  }
  .testimonial-card, .faq-group {
    font-size: 0.98rem;
  }
}

/* --- VISUAL HIERARCHY SHADOWS & EFFECTS (all cards/sections) --- */
.section, .card, .testimonial-card, .faq-group, .text-section {
  transition: box-shadow 0.18s, background 0.18s;
}
.section:hover, .card:hover, .faq-group:hover, .testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(113,177,104,0.13), 0 2px 8px #c3e1c20d;
}

/* -- FORM ELEMENTS (if any are added in modal/cookie) --- */
input, select, textarea {
  border: 1.5px solid #CED7CC;
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #34583B;
  background: #f8fbf3;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #70B252;
}

/* --- ACCESSIBILITY (LINK FOCUS) --- */
a:focus {
  outline: 2px solid #70B252;
  background: #f3f9ea;
}

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

/* --- MINIMUM COLOR CONTRAST (testimonials) --- */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #194B2B !important;
  background: #F6FDE7 !important;
}

/* --- NATURE-ORGANIC STYLING (extra details) --- */
.section {
  border-radius: 32px 28px 36px 30px / 30px 40px 30px 40px;
}
.card {
  border-radius: 22px 16px 32px 18px / 18px 28px 12px 28px;
}
.testimonial-card {
  border-radius: 19px 13px 23px 16px / 18px 17px 19px 15px;
}
.text-section {
  border-radius: 12px 9px 16px 11px / 11px 13px 13px 12px;
}

/* --- ORGANIC ACCENT --- */
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -26px;
  top: -26px;
  width: 90px;
  height: 55px;
  background: url('../assets/leaf-decor.svg') no-repeat center/contain;
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
}
.section:last-child:after {
  content: '';
  display: block;
  position: absolute;
  right: -24px;
  bottom: -30px;
  width: 75px;
  height: 36px;
  background: url('../assets/leaf-decor.svg') no-repeat center/contain;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}

/* --- END --- */
