/* --- CSS RESET & BASELINE --- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  font: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #21312A;
  background: #F4F7FB;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background-image: url('../assets/bg-texture.svg');  */
  background-repeat: repeat;
  background-size: 360px;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #164C81;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4BA151;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #164C81;
  font-weight: 700;
}
h1 {font-size: 2.5rem; margin-bottom: 20px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.5rem; margin-bottom: 12px;}
h4 {font-size: 1.25rem;}
@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.5rem;}
  h3 {font-size: 1.15rem;}
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li { margin-bottom: 6px; }
p {
  margin-bottom: 16px;
}
strong { font-weight: 700; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(65,79,43,0.07);
  overflow: hidden;
}
thead {
  background-color: #E9EDD9;
}
th, td {
  padding: 14px 18px;
  text-align: left;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #164C81;
  border-bottom: 2px solid #93B590;
}
tbody tr:nth-child(even) { background: #F5F4ED; }
tbody td {
  border-bottom: 1px solid #e2eae0;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 16px;
  color: #21312A;
}
dd {
  margin-left: 16px;
  margin-bottom: 10px;
  color: #4B5F4A;
}

/* --- FLEXBOX LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 20px rgba(65,79,43,0.06);
  /* Subtle shadow for organic/layered look */
}
@media (max-width: 900px) {
  .section { padding: 34px 6px; }
  .container { padding: 0 7px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F6FAF6;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(86,110,84,0.07);
  padding: 30px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 1 1 300px;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(43,94,61,0.13);
  transform: translateY(-4px) scale(1.02);
}
.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: 24px; }
  .content-grid { flex-direction: column; gap: 24px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #f4f7fb;
  border: 1.5px solid #E9EDD9;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(65,79,43,0.045);
  transition: box-shadow 0.2s, background 0.25s;
}
.testimonial-card p {
  color: #21401B;
  font-size: 1.12rem;
  flex: 1 1 65%;
  margin: 0 0 0 0;
}
.testimonial-details {
  font-size: 0.98rem;
  color: #36633a;
  font-family: 'Montserrat', Arial, sans-serif;
  flex: 0 0 auto;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px rgba(75,161,81,0.08);
  background: #eaf6e2;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  background: #f7f9f6;
  box-shadow: 0 2px 10px rgba(64,95,61,0.04);
  padding: 20px 22px;
  margin-bottom: 20px;
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 20px 0 0 0;
}
.feature-grid > div {
  background: #f7f9f6;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(120,142,113,0.07);
  padding: 22px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 28px rgba(75,161,81,0.12);
  background: #eaf3e6;
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 160px;
    width: 100%;
    padding: 16px 10px;
    margin-bottom: 10px;
  }
}

/* --- BUTTONS & CTA --- */
.cta, button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4BA151; /* organic accent green */
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 34px;
  border: none;
  border-radius: 28px 28px 24px 32px/32px 26px 42px 24px; /* organic mixed curves */
  box-shadow: 0 4px 18px rgba(75,161,81,0.12);
  transition: background 0.14s, transform 0.17s, box-shadow 0.18s;
  text-decoration: none;
  cursor: pointer;
  margin-top: 14px;
  margin-bottom: 12px;
}
.cta:hover, .cta:focus, button.cta:focus {
  background: #387A3D;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(75,161,81,0.15);
  color: #fff;
}
.cta:active, button.cta:active {
  background: #246E24;
}

button, .button {
  background: #E9EDD9;
  color: #194623;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 19px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.19s, color 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #C2D8B9;
  color: #21312A;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #f8fbf7;
  border-bottom: 1px solid #E9EDD9;
  position: sticky;
  top: 0;
  z-index: 1010;
  box-shadow: 0 3px 12px rgba(65,79,43,0.02);
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 26px;
  padding: 0;
  margin: 0 auto;
  justify-content: flex-start;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #164C81;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  transition: background 0.13s, color 0.17s;
  display: inline-flex;
  align-items: center;
}
header nav a:hover, header nav a:focus {
  background: #eaf6e2;
  color: #4BA151;
}
header nav a.cta {
  background: #F4903B;
  color: #fff;
  border-radius: 23px 23px 16px 28px/24px 26px 32px 22px;
  font-weight: 700;
  margin-left: 24px;
  padding: 12px 28px;
  box-shadow: 0 4px 13px rgba(237,156,63,0.10);
  transition: background 0.18s, color 0.16s, box-shadow 0.21s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #CB5B1F;
  color: #fff;
  box-shadow: 0 8px 28px rgba(237,156,63,0.19);
}
header nav img {
  height: 44px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

/* --- BURGER MENU (MOBILE) --- */
.mobile-menu-toggle {
  display: none;
  background: #4BA151;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  margin-right: 8px;
  transition: background 0.14s, box-shadow 0.16s, color 0.14s;
  z-index: 1302;
  border: none;
  box-shadow: 0 2px 7px rgba(65,79,43,0.11);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #387a3d;
  color: #fafafa;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,71,55,0.98);
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 0 0;
  background: #E9EDD9;
  color: #21401B;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #C2D8B9;
}
.mobile-nav {
  width: 100%;
  padding: 34px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px 0;
  align-items: flex-start;
}
.mobile-nav a {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 19px 38px;
  text-decoration: none;
  border-bottom: 1px solid rgba(222,247,220,0.10);
  background: transparent;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4903B;
  color: #fff !important;
}

@media (max-width: 1080px) {
  header nav {
    gap: 2px 12px;
  }
  header nav a.cta {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  header nav {
    flex-wrap: wrap;
    gap: 8px 8px;
  }
}
@media (max-width: 770px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --- MAIN & TEXT SECTIONS --- */
main {
  padding-bottom: 70px;
}
.text-section {
  max-width: 780px;
  margin: 0 auto 0 auto;
  width: 100%;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #21312A;
  margin-bottom: 16px;
}
.text-section p {
  color: #4B5F4A;
  margin-bottom: 18px;
  font-size: 1.14rem;
}

/* --- ORGANIC SHAPES - UTILITY --- */
.organic-bg {
  background: #eaf6e2;
  border-radius: 70px 21px 108px 38px/44px 108px 41px 87px;
}

/* --- FOOTER --- */
footer {
  background: #193d63;
  color: #fff;
  padding: 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 18px 24px 18px;
}
.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.footer-info img {
  width: 60px;
  height: auto;
  margin-right: 16px;
  border-radius: 13px;
  background: #eaf6e2;
  box-shadow: 0 2px 8px rgba(43,74,28,0.11);
  padding: 9px;
}
.footer-info > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-info p, footer nav a {
  color: #f4f7fb;
  font-size: 1.05rem;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
}
footer nav a {
  text-decoration: underline;
  color: #f4f7fb;
  opacity: 0.83;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, opacity 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #F4903B;
  opacity: 1;
}
@media (max-width: 700px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer .container {
    gap: 14px;
    padding-bottom: 16px;
  }
  footer nav {
    gap: 10px;
    flex-direction: column;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #21401B;
  color: #f4f7fb;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 24px 28px 20px 28px;
  box-shadow: 0 -6px 24px rgba(65,79,43,0.10);
  z-index: 2000;
  flex-direction: row;
  justify-content: center;
  transition: transform 0.27s cubic-bezier(0.7,0,0.4,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 auto;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .button {
  background: #F4903B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  border-radius: 18px;
  padding: 10px 22px;
  cursor: pointer;
  border: none;
  margin-left: 0;
  margin-right: 0;
  font-weight: 600;
  transition: background 0.14s, color 0.18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #4BA151;
}
.cookie-banner .button.alt {
  background: #C2D8B9;
  color: #21401B;
}
.cookie-banner .button.alt:hover {
  background: #eaf6e2;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 19px 9px 16px 9px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,71,55,0.84);
  z-index: 2050;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeInBG 0.27s;
}
@keyframes fadeInBG {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #f6f9f6;
  color: #164C81;
  border-radius: 30px 22px 36px 19px/36px 28px 32px 24px;
  max-width: 430px;
  width: 94vw;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 17px 50px rgba(43,74,28, 0.18);
  animation: popIn 0.32s cubic-bezier(0.78,-0.2,0.25,1.07);
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
@keyframes popIn {
  0%   { transform: scale(0.93) translateY(38px); opacity: 0.3; }
  70%  { transform: scale(1.02) translateY(-7px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: #C2D8B9;
  color: #246E24;
  border-radius: 50%;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.11s;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #4ba151; color: #fff; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 14px 0;
}
.cookie-category {
  background: #E9EDD9;
  border-radius: 17px 13px 20px 11px/22px 20px 12px 14px;
  padding: 15px 16px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.01rem;
}
.cookie-category span {
  flex: 1 1 80%;
}
.cookie-category input[type="checkbox"] {
  accent-color: #4BA151;
  width: 18px; height: 18px;
  border-radius: 3px;
  margin-top: 3px;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #93B590;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-actions button, .cookie-modal-actions .button {
  background: #4BA151;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 13px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  transition: background 0.12s, color 0.13s;
}
.cookie-modal-actions .button.alt {
  background: #C2D8B9;
  color: #21401B;
}
.cookie-modal-actions .button.alt:hover {
  background: #eaf6e2;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #387A3D;
}

@media (max-width: 500px) {
  .cookie-modal .cookie-modal-content { padding: 15px 6vw 13px 6vw; }
  .cookie-modal-actions { flex-direction: column; gap: 10px; }
}

/* --- LISTS & UTILITY --- */
.feature-list {
  list-style: disc inside;
  margin-bottom: 22px;
}
.feature-list li {
  color: #4B5F4A;
}

/* --- MICRO-ANIMATIONS --- */
a, .cta, button, .button, .card, .feature-grid > div, .testimonial-card, .mobile-menu, .mobile-menu-close { transition: all 0.15s cubic-bezier(0.44,0.09,0.58,0.71); }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid #4BA151;
  outline-offset: 2px;
  border-radius: 4px;
  z-index: 9999;
}

/* --- RESPONSIVE --- */
@media (max-width: 550px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .section { padding: 17px 3px; }
  .container { padding: 0 2px; }
  .feature-grid { gap: 12px; }
  .testimonial-card { gap: 10px; padding: 11px; }
}

/* --- ORGANIC/NATURE STYLE ACCENTS --- */
.section, .feature-grid > div, .card, .testimonial-card, .feature-item {
  border-radius: 36px 16px 32px 20px/20px 26px 38px 22px;
}

/* --- CUSTOM COLORS (Nature Organic Styled) --- */
:root {
  --brand-primary: #164C81;
  --brand-secondary: #4BA151;
  --brand-accent: #F4903B;
  --earth-bg: #f4f7fb;
  --earth-green: #eaf6e2;
  --earth-dark: #21401B;
  --earth-light: #f7f9f6;
}

/* --- TYPOGRAPHY SCALE --- */
.display { font-size: 2.5rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #164C81; }
.h2 { font-size: 2rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: #4BA151; }

/* --- CARD LAYOUTS, FORMS ETC. --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Hide default scrollbars for modal */
.cookie-modal::-webkit-scrollbar { display: none; }
.cookie-modal { -ms-overflow-style: none; scrollbar-width: none; }

/* --- Z-INDEX MANAGEMENT --- */
.mobile-menu, .cookie-banner, .cookie-modal { z-index: 2000; }
.mobile-menu-toggle { z-index: 2001; }

/* --- PREVENT CONTENT OVERLAP --- */
.section:not(:last-child), .feature-grid > div, .card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* --- OVERRIDES FOR SPECIFIC CONTENT --- */
.content-wrapper > ul,
.content-wrapper > ol {
  margin-bottom: 18px;
}
.content-wrapper > ul > li, .content-wrapper > ol > li {
  font-size: 1.09rem;
  color: #3b4739;
}

/* --- END OF NATURE ORGANIC MAIN CSS --- */
