/* === CSS RESET & NORMALIZE === */
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,
main, 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 {
  background: #F5F5F5;
  min-height: 100vh;
  color: #184D47;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
  border-radius: 8px;
}
a {
  color: #184D47;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #46B5B0;
  text-decoration: underline;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border-radius: 4px;
  outline: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 10px;
  text-align: left;
}
th {
  background-color: #E9E5D6;
  color: #184D47;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
td {
  background: #F9F9F5;
  color: #184D47;
}
ul, ol {
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 28px;
}
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 0;
  list-style-position: inside;
}
dl {
  margin: 12px 0 24px 0;
}
dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 14px;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
}

/* === ROOT STYLES & COLORS === */
:root {
  --primary: #184D47; /* deep forest green */
  --secondary: #46B5B0; /* turquoise-green accent */
  --accent: #F5F5F5; /* off-white background */
  --earth: #8D8741; /* organic earth brown */
  --sand: #E9E5D6; /* sand beige */
  --organic-green: #82B366; /* warm organic green */
  --leaf-green: #46B5B0; /* same as secondary, leaf accent */
  --text-dark: #184D47;
  --text-light: #ffffff;
  --shadow-low: 0 2px 8px 0 rgba(50,72,62,0.07);
  --shadow-med: 0 8px 30px rgba(34,64,48,0.13);
  --border-radius: 20px;
  --card-radius: 18px;
  --transition: 0.23s cubic-bezier(.44,1.43,.54,.99);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
h1 {
  font-size: 2.2rem;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.05rem;
}
p, .subhead {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.subhead {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--organic-green);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
strong {
  color: var(--primary);
}
.privacy-note {
  font-size: 0.95rem;
  color: var(--earth);
  margin-top: 8px;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-low);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section {
  background: var(--sand);
  padding: 34px 24px !important;
  border-radius: var(--border-radius);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--sand);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-low);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-med);
  transform: translateY(-6px) 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;
}

/* === SPECIFIC CARDS & ORGANIC BLOCKS === */
.tip-card {
  background: #F9FFF6;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-low);
  padding: 28px 22px;
  margin-bottom: 24px;
  margin-top: 8px;
  border-left: 7px solid var(--leaf-green);
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.tip-card:hover {
  box-shadow: var(--shadow-med);
  border-left: 7px solid var(--organic-green);
}
.category-label {
  display: inline-block;
  background: var(--leaf-green);
  color: #fff;
  font-size: 0.93rem;
  padding: 3px 12px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.seminar-card {
  background: #FFFBF7;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-low);
  padding: 22px 20px 20px 20px;
  margin-bottom: 20px;
  border-left: 7px solid var(--organic-green);
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.seminar-card:hover {
  box-shadow: var(--shadow-med);
  border-left: 7px solid var(--leaf-green);
}
.sample-issue {
  background: var(--sand);
  border-radius: var(--card-radius);
  padding: 18px 18px 16px 18px;
  margin: 18px 0 8px 0;
  box-shadow: var(--shadow-low);
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #E9FFE3;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-low);
  color: var(--primary);
  border-left: 6px solid var(--organic-green);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--primary);
}
.testimonial-card strong {
  color: var(--earth);
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-med);
  border-left: 6px solid var(--leaf-green);
}

/* === FEATURE / SERVICE LIST ITEM === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--sand);
  border-radius: var(--card-radius);
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-low);
}

/* ==== BUTTONS === */
.cta-btn,
button, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 16px rgba(24,77,71,0.06);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-btn:hover, .cta-btn:focus,
button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: var(--leaf-green);
  color: #FFF;
  box-shadow: 0 4px 18px rgba(24,77,71,0.13);
  transform: translateY(-2px) scale(1.04);
}
.cta-btn.secondary {
  background: var(--leaf-green);
  color: #fff;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--organic-green);
  color: #fff;
}

/* === NAVIGATION === */
header {
  background: #F9F7F4;
  padding: 0;
  box-shadow: 0 2px 12px 0 rgba(34,38,23,0.04);
  position: sticky;
  top: 0;
  z-index: 1003;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 18px 0 14px 0;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  color: var(--primary);
  border-radius: 8px;
  margin-right: 4px;
  padding: 8px 13px;
  transition: background var(--transition), color var(--transition);
}
nav a.cta-btn {
  padding: 10px 24px;
  font-size: 1rem;
  margin-left: 24px;
  background: var(--leaf-green);
  color: #FFF;
}
nav a.cta-btn:hover {
  background: var(--organic-green);
}
nav a:hover, nav a:focus {
  color: var(--leaf-green);
  background: #E9FFE3;
}
nav a img {
  height: 35px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* === FOOTER === */
footer {
  margin-top: 48px;
  padding: 38px 20px 30px 20px;
  background: var(--sand);
  color: var(--primary);
  font-size: 0.97rem;
  text-align: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -2px 10px 0 rgba(24,77,71,.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-contact {
  margin-top: 8px;
  color: var(--primary);
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
footer a {
  color: var(--leaf-green);
  font-weight: 500;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s;
}
footer a:hover, footer a:focus {
  color: var(--primary);
  text-decoration: underline;
}
footer img {
  height: 20px;
  width: 20px;
  margin-right: 6px;
  margin-bottom: -5px;
}

/* === MOBILE BURGER NAVIGATION === */
.mobile-menu-toggle {
  background: var(--leaf-green);
  color: #FFF;
  font-size: 2.2rem;
  line-height: 1;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1101;
  margin-left: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,77,71, 0.98);
  color: #FFF;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  overflow-y: auto;
  box-shadow: 4px 0 18px rgba(18,27,14,0.29);
}
.mobile-menu.open {
  display: flex !important;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 15px 26px 14px 0;
  border: none;
  padding: 0 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(70,181,176,0.2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 34px 28px 10px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  color: #E9FFE3;
  padding: 12px 0;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--leaf-green);
  color: #fff;
}

@media (max-width: 1023px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  nav {
    gap: 2px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  nav a {
    padding: 8px 8px !important;
    font-size: 0.99rem !important;
  }
}
@media (max-width: 800px) {
  footer {
    padding: 30px 8px 22px 8px;
    font-size: 0.96rem;
  }
  .footer-contact {
    font-size: 0.96rem;
    flex-direction: column;
    gap: 2px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .section {
    margin-bottom: 42px;
    padding: 28px 10px;
  }
  .content-wrapper, .text-section, .card-container, .content-grid, .text-image-section {
    padding: 0;
    gap: 14px;
  }
  .card, .tip-card, .feature-item, .seminar-card, .testimonial-card {
    min-width: 98%;
    padding: 18px 8px !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.37rem;
  }
  h2 {
    font-size: 1.11rem;
  }
  .cta-btn, button {
    font-size: 0.98rem;
    padding: 11px 18px;
  }
  .mobile-nav a {
    font-size: 1.07rem;
    padding: 10px 0;
  }
  .testimonial-card p, .testimonial-card strong {
    font-size: 1rem;
  }
}
@media (max-width: 420px) {
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav {
    padding: 24px 8px 10px 12px;
  }
}

/* === SPACING & ALIGNMENT PATTERNS (MANDATORY) === */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* === Additional ORGANIC STYLE ELEMENTS === */
.section, .card, .tip-card, .seminar-card, .testimonial-card, .feature-item, .sample-issue {
  /* subtle organic background ornament (SVG) as masked corner on desktop */
  position: relative;
}
.section:after, .card:after, .tip-card:after,
.seminar-card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; right: 0;
  width: 72px; height: 50px;
  background: url('data:image/svg+xml,%3Csvg width="72" height="50" viewBox="0 0 72 50" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cellipse cx="72" cy="50" rx="72" ry="50" fill="%2382B366" fill-opacity="0.14"/%3E%3C/svg%3E') right bottom no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media(max-width:900px){
  .section:after, .card:after, .tip-card:after, .seminar-card:after, .testimonial-card:after, .feature-item:after { display:none; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F9F7F4;
  color: var(--primary);
  box-shadow: 0 -2px 16px rgba(40,70,60,0.13);
  padding: 24px 4vw 20px 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1350;
  border-top: 2px solid #E9E5D6;
  transition: transform 0.37s cubic-bezier(.66,-0.38,.53,1);
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
}
.cookie-banner-content {
  font-size: 1.03rem;
  margin-bottom: 11px;
  text-align: center;
}
.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.cookie-btns .cookie-btn {
  border-radius: 23px;
  padding: 10px 26px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 2px 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btns .cookie-accept {
  background: var(--leaf-green);
  color: #fff;
  box-shadow: 0 1px 5px rgba(70,181,176,0.09);
}
.cookie-btns .cookie-accept:hover {
  background: var(--organic-green);
}
.cookie-btns .cookie-reject {
  background: #FFF;
  color: var(--leaf-green);
  border: 2px solid var(--leaf-green);
}
.cookie-btns .cookie-reject:hover {
  background: #F6FFFB;
}
.cookie-btns .cookie-settings {
  background: var(--sand);
  color: var(--primary);
  border: 2px solid var(--organic-green);
}
.cookie-btns .cookie-settings:hover {
  background: #E9FFE3;
  color: var(--organic-green);
}

/* === COOKIE PREFERENCE MODAL === */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(1);
  background: #fff;
  color: var(--primary);
  min-width: 310px;
  max-width: 96vw;
  padding: 36px 22px 28px 22px;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(34,64,48,0.20);
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity 0.30s cubic-bezier(.66,-0.38,.53,1), transform 0.28s cubic-bezier(.66,-0.38,.53,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -40%) scale(0.96);
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  margin-bottom: 12px;
  color: var(--leaf-green);
}
.cookie-prefs-list {
  width: 100%;
  margin: 14px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-pref-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: #F9F7F4;
  padding: 12px 10px 10px 10px;
  font-size: 0.97rem;
  color: var(--primary);
}
.cookie-pref-item.essential {
  opacity: 0.77;
}
.cookie-pref-label {
  font-weight: 600;
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.06rem;
}
.cookie-toggle {
  width: 42px;
  height: 26px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}

.cookie-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #DDD;
  border-radius: 13px;
  transition: background 0.17s;
}
.cookie-toggle input:checked + .cookie-switch {
  background: var(--leaf-green);
}
.cookie-switch::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 1px 4px rgba(24,77,71,.07);
}
.cookie-toggle input:checked + .cookie-switch::before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject {
  padding: 11px 28px;
  font-size: 1rem;
  border-radius: 22px;
}

/* === UTILITY CLASSES & SPACING === */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.w100 { width: 100%; }
.flex { display: flex !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-20 { gap: 20px !important; }
.gap-10 { gap: 10px !important; }

/* === ORGANIC / NATURE MOTIFS & SHAPES === */
@media (min-width:1025px) {
  .section, .card, .tip-card, .seminar-card, .feature-item, .testimonial-card {
    border-bottom-left-radius: 38px 27px;
    border-top-right-radius: 60px 40px;
  }
}

/* === MISC === */
::-webkit-input-placeholder { color: #7FAA93; opacity:1; }
::-moz-placeholder {color:#7FAA93;opacity:1;}
:-ms-input-placeholder{color:#7FAA93;opacity:1;}
::placeholder{color:#7FAA93;opacity:1;}

.hide, [hidden] { display: none !important; }

/* Remove arrows from number inputs */
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none; margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/**** END OF NATURE ORGANIC STYLE CSS ****/
