/* RESET & BASELINE ------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F5F2;
  color: #234D6E;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #234D6E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #68B86F;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

/* FONTS & TYPOGRAPHY ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1d3929;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  color: #234D6E;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  color: #3e5933;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #234D6E;
  margin-bottom: 12px;
  line-height: 1.65;
}
strong {
  color: #1d3929;
  font-weight: 700;
}

@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}
@media (min-width: 920px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
}

/* LAYOUT CONTAINERS ------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F6F5F2;
  border-radius: 32px;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 24px;
  }
  .section {
    padding: 64px 32px;
    margin-bottom: 80px;
    border-radius: 42px;
  }
}

/* FLEXBOX PATTERNS ------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  padding: 32px 20px;
  border-radius: 26px;
  box-shadow: 0 4px 24px rgba(104,184,111,0.09),0 1.5px 2px rgba(35,77,110,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 260px;
  flex: 1 1 260px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(104,184,111,0.18),0 3px 6px rgba(35,77,110,0.12);
  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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F2F7;
  border-left: 6px solid #68B86F;
  border-radius: 18px;
  margin-bottom: 20px;
  min-width: 230px;
  box-shadow: 0 2px 10px rgba(52,93,62,0.07);
  transition: background 0.2s, box-shadow 0.2s;
}
.testimonial-card p {
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
  .content-grid {
    flex-direction: row;
  }
  .testimonial-card {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 12px;
  }
}

/* SPACING FINE-TUNE ---------------------------------- */
section + section {
  margin-top: 18px;
}
.section > .container {
  padding: 0;
}

/* ORGANIC DECORATIVE EFFECTS ------------------------- */
.section {
  position: relative;
  background: #F6F5F2;
  border-radius: 32px 72px 54px 30px / 38px 62px 45px 40px;
  box-shadow: 0 0 0 3px rgba(104,184,111,0.05),
              0 8px 32px rgba(52,93,62,0.06);
}
@media (min-width: 900px) {
  .section {
    border-radius: 42px 110px 60px 38px / 38px 95px 64px 40px;
  }
}

/* HEADER --------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(35,77,110,0.04);
  z-index: 21;
  position: relative;
}
header .container {
  min-height: 62px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #234D6E;
  padding: 6px 16px;
  border-radius: 22px;
  background: transparent;
  transition: background 0.15s, color 0.18s;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EAFBF0;
  color: #68B86F;
}

/* Primary Button Styles ------------------- */
.btn-primary, a.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #68B86F;
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 12px 32px;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(35,77,110,0.06);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #234D6E;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px rgba(35,77,110,0.13);
}

/* Footer ----------------------------------------- */
footer {
  background: #F5F9F6;
  padding: 44px 0 16px 0;
  border-top: 2px solid #E6F3E6;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  font-size: 1rem;
  color: #234D6E;
  transition: color 0.15s;
  border-radius: 10px;
  padding: 4px 8px;
}
.footer-nav a:hover {
  color: #68B86F;
  background: #EAFBF0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 18px;
  width: auto;
  margin-right: 6px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EAFBF0;
  height: 36px;
  width: 36px;
  transition: background 0.17s;
}
.social-links a:hover {
  background: #68B86F;
}
.social-links img {
  height: 24px;
  width: 24px;
}

@media (max-width: 940px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* Shop/List/Feature Sections ------------------ */
.features, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.features li, .feature-list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1.3px 7px rgba(104,184,111,0.07);
  padding: 12px 18px;
  margin-right: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #234D6E;
  align-items: center;
  display: flex;
  gap: 8px;
}
.features li img, .feature-list li img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

/* ABOUT: text-section -------------------------- */
.text-section {
  background: #F2F7F4;
  border-radius: 20px;
  padding: 18px 18px 8px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px rgba(35,77,110,0.04);
  font-size: 1rem;
  color: #234D6E;
}
.text-section h3 {
  margin-bottom: 3px;
  color: #234D6E;
}

/* Tables (plans) -------------------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1.7px 10px rgba(35,77,110,0.04);
  font-size: 1rem;
}
table th, table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid #EAFBF0;
}
table th {
  background: #EAFBF0;
  font-weight: 700;
  color: #234D6E;
}
table tr:last-child td {
  border-bottom: none;
}

/* Responsive Table for Mobile */
@media (max-width: 690px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  table thead { 
    display: none; 
  }
  table tr {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1.2px 6px rgba(104,184,111,0.07);
    padding: 10px 0;
  }
  table td {
    padding: 10px 16px;
    border: none;
    position: relative;
  }
  table td:before {
    position: absolute;
    left: 14px;
    top: 10px;
    color: #68B86F;
    font-weight: 600;
    font-size: 0.9em;
    content: attr(data-label);
    display: block;
    min-width: 90px;
  }
}

/* HERO Section: organic curve decorations ------- */
section:first-child {
  background: #EAFBF0;
  border-radius: 0 0 110px 32px/0 0 85px 38px;
  box-shadow: 0 12px 44px rgba(52,93,62,0.05);
  padding-top: 36px;
  position: relative;
}
@media (min-width: 900px) {
  section:first-child {
    padding-top: 64px;
    border-radius: 0 0 180px 65px/0 0 130px 60px;
  }
}

/* Mobile Menu/Burger Styles ---------------------------- */
.mobile-menu-toggle {
  display: block;
  background: #EAFBF0;
  color: #234D6E;
  border: none;
  border-radius: 20px;
  font-size: 2.2rem;
  padding: 6px 26px;
  cursor: pointer;
  margin-left: auto;
  margin-right: 6px;
  transition: background 0.15s, color 0.2s, box-shadow 0.21s;
  box-shadow: 0 2px 8px rgba(52,93,62,0.08);
  z-index: 111;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #68B86F;
  color: #fff;
}
@media (min-width: 940px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hide main-nav on mobile, show on desktop */
@media (max-width: 939px) {
  .main-nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
}
@media (min-width: 940px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,77,110,0.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.83,0,0.17,1), opacity 0.3s;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  margin-top: 28px;
  margin-left: 22px;
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 22px;
  padding: 3px 16px;
  transition: background 0.15s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #68B86F;
  color: #EAFBF0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0 0 32px;
  width: 95vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0 10px 0;
  border-bottom: 1px solid rgba(104,184,111,0.23);
  letter-spacing: 0.01em;
  transition: color 0.22s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #68B86F;
  background: none;
}

/* Cookie Consent Banner and Modal ----------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 26px 18px 22px 18px;
  background: #F2F2F7;
  box-shadow: 0 -2px 18px rgba(35,77,110,0.08);
  border-radius: 18px 18px 0 0 / 34px 34px 0 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #234D6E;
  transition: transform 0.33s cubic-bezier(0.42,0,0.58,1), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
}
.cookie-banner p {
  text-align: center;
  margin-bottom: 6px;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 20px;
  border: none;
  padding: 8px 24px;
  font-size: 1rem;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.14s, color 0.16s, box-shadow 0.14s;
  box-shadow: 0 1.2px 8px rgba(104,184,111,0.08);
}
.cookie-accept {
  background: #68B86F;
  color: #fff;
  font-weight: 700;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #234D6E;
  color: #fff;
}
.cookie-reject {
  background: #EAFBF0;
  color: #234D6E;
  font-weight: 600;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F6F5F2;
}
.cookie-settings {
  background: #fff;
  color: #68B86F;
  font-weight: 500;
  border: 1px solid #68B86F;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #68B86F;
  color: #fff;
}

/* Cookie Modal Styles */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,77,110,0.36);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.20s;
}
.cookie-modal-backdrop.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #FFF;
  border-radius: 24px;
  padding: 32px 20px 22px 20px;
  max-width: 450px;
  width: 94vw;
  box-shadow: 0 8px 46px rgba(35,77,110,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #234D6E;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #234D6E;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-option label {
  font-weight: 500;
  color: #3e5933;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  cursor: pointer;
  background: #EAFBF0;
  border-radius: 18px;
  border: none;
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle.active {
  background: #68B86F;
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s;
}
.cookie-toggle.active:after {
  left: 24px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  border: none;
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal-buttons .cookie-accept {
  background: #68B86F;
  color: #fff;
  font-weight: bold;
}
.cookie-modal-buttons .cookie-reject {
  background: #F6F5F2;
  color: #234D6E;
}
.cookie-modal-buttons .cookie-modal-close {
  background: transparent;
  color: #68B86F;
  font-weight: 500;
}
.cookie-modal-buttons .cookie-modal-close:hover {
  text-decoration: underline;
}

/* ACCESSIBILITY & FOCUS STYLES */
a:focus,
button:focus,
.btn-primary:focus {
  outline: 2px dashed #234D6E;
  outline-offset: 2px;
}

/* Misc & Organic Elements  --------------------- */
ul > li {
  margin-bottom: 7px;
}
hr {
  border: 0;
  border-bottom: 1px solid #EAFBF0;
  margin: 30px 0 20px 0;
}

/* Responsive tweaks -------------------------------- */
@media (max-width: 768px) {
  h1 { font-size: 1.54rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1.05rem; }
  .footer-contact {
    font-size: 0.95rem;
  }
  .btn-primary,
  .cookie-accept, .cookie-reject, .cookie-settings {
    font-size: 0.98rem;
    padding: 8px 17px;
  }
}
/* Make sure no element overlaps */
.section, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* Code quality guarantee: no grid, only flexbox layouts, all spacing by margin/gap, never absolute except for decorative, readable testimonials, white backgrounds for cards on earth-tone hues for sections. */