/* RESET & BASELINE TYPOGRAPHY (Normalize + Reset) */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F9F6;
  color: #2F4639;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2E8B57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #174A7C;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
:root {
  --color-primary: #174A7C;
  --color-secondary: #2E8B57;
  --color-accent: #F0F6FB;
  --color-earth: #B2A385;
  --color-background: #F6F9F6;
  --color-card: #FEFEFB;
  --color-text: #2F4639;
  --color-muted: #8B8B7A;
  --color-success: #65B672;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
  max-width: 1140px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card);
  border-radius: 28px 44px 32px 36px / 32px 32px 44px 28px;
  box-shadow: 0 2px 24px 0 rgba(60,85,59,0.06);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
    border-radius: 18px 24px 22px 20px / 18px 18px 24px 18px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--color-text);
}

/* HEADINGS & TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #194837;
  letter-spacing: -1px;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4 { font-size: 1.1rem; }

p, ul, ol {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text);
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p, ul, ol { font-size: 0.95rem; }
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--color-card);
  border-radius: 28px;
  box-shadow: 0 1px 10px 0 rgba(60,85,59,0.08);
  margin-bottom: 20px;
  padding: 24px 20px;
  flex: 1 1 330px;
  position: relative;
  transition: box-shadow 0.22s;
  min-width: 260px;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(46,139,87,.18);
}
.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;
    gap: 20px;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 24px 40px 20px 36px / 28px 28px 36px 24px;
  background: #FAFDF6;
  box-shadow: 0 2px 10px 0 rgba(44,84,59,0.11);
  border-left: 6px solid var(--color-secondary);
}
.testimonial-card p {
  color: #2C2F2B;
  font-size: 1.13rem;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.97rem;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px;
    gap: 10px;
    border-radius: 16px 18px 16px 18px / 16px 16px 18px 14px;
  }
  .testimonial-card p {
    font-size: 1rem;
  }
}

/* NAVIGATION & HEADER */
header {
  background: #F7F5F2;
  position: relative;
  box-shadow: 0 2px 14px 0 rgba(44,84,59,0.04);
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 18px 0;
}
.main-nav img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1.04rem;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E0EFE6;
  color: var(--color-secondary);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .main-nav a { padding: 7px 6px; font-size: 0.97rem; }
  .main-nav img { height: 36px; margin-right: 10px; }
}
@media (max-width: 820px) {
  .main-nav { gap: 4px; padding-left: 4px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 14px;
  z-index: 1100;
  background: #FFFFFF;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  color: var(--color-secondary);
  width: 46px;
  height: 46px;
  box-shadow: 0 1px 8px 0 rgba(44,84,59,0.11);
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E0EFE6;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #EAFAF0;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.64,0,0.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: -5px 0 25px 0 rgba(30,64,36,0.07);
  padding: 36px 32px 24px 38px;
  gap: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover { color: var(--color-primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: #206945;
  padding: 11px 6px;
  margin: 0 0 6px 0;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C4E4CC;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu.open { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: .02em;
  border: none;
  border-radius: 34px 12px 34px 12px / 18px 18px 36px 24px;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 rgba(46,139,87,0.09);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  margin-top: 12px;
  text-align: center;
  min-width: 170px;
}
.cta-button.primary {
  background: var(--color-secondary);
}
.cta-button.secondary {
  background: var(--color-primary);
}
.cta-button:hover, .cta-button:focus {
  background: #194837;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(46,139,87,0.13);
  color: #fff !important;
  text-decoration: none;
}
@media (max-width: 768px) {
  .cta-button {
    font-size: 1rem;
    padding: 10px 21px;
  }
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #FEFEFB;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 rgba(60,85,59,0.06);
}
th, td {
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #E9E7DD;
  color: #1d412d;
  font-weight: 700;
}
td {
  color: #34432d;
}
tr:not(:last-child) td {
  border-bottom: 1px solid #E7EFE4;
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  th, td { font-size: 0.99rem; }
  tr { margin-bottom: 20px; }
}

/* FOOTER & ADDRESS */
footer {
  background: #E3EAD6;
  padding: 35px 0 20px 0;
  border-radius: 36px 36px 0 0 / 60px 44px 0 0;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 3px 12px;
  border-radius: 14px;
  transition: background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E0EFE6;
  color: var(--color-secondary);
}
footer address {
  font-style: normal;
  color: #4a593f;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
footer span {
  display: block;
  color: #86967d;
  font-size: 0.95rem;
  margin-top: 3px;
}
@media (max-width: 768px) {
  footer { padding: 18px 0 8px 0; border-radius: 18px 18px 0 0 / 26px 10px 0 0; }
  .footer-nav { gap: 13px; font-size: 0.91rem; }
}

/* ICONS IN TEXT-LISTS */
ul li img {
  width: 28px; height: 28px; vertical-align: middle;
  margin-right: 9px;
  margin-top: -2px;
  filter: grayscale(15%);
}
@media (max-width: 768px) {
  ul li img { width: 22px; height: 22px; margin-right: 6px; }
}

/* GENERAL RESPONSIVE ADJUSTMENTS */
@media (max-width: 480px) {
  .container { padding-left: 2px; padding-right: 2px; }
  .section { padding: 11px 2px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #ecf6ea;
  box-shadow: 0 -1px 14px 0 rgba(44,84,59,0.13);
  color: #245634;
  z-index: 3000;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 24px 24px 0 0 / 40px 10px 0 0;
  font-size: 1.04rem;
  animation: banner-in 0.6s cubic-bezier(.22,.61,.36,1) 1;
}
@keyframes banner-in {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 22px 8px 24px 10px;
  font-size: 1rem;
  margin-right: 6px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, transform 0.13s;
}
.cookie-btn.accept {
  background: var(--color-secondary);
}
.cookie-btn.reject {
  background: #B2A385;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid #BCD1A6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px) scale(1.01);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #eafceb;
  color: var(--color-primary);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  background: #fff;
  color: #205c3d;
  border-radius: 30px 12px 26px 12px;
  box-shadow: 0 8px 36px 0 rgba(44,84,59,0.19);
  z-index: 4000;
  padding: 38px 28px 26px 28px;
  width: 95vw;
  max-width: 410px;
  min-width: 208px;
  animation: modal-in 0.33s cubic-bezier(.33,.7,.46,1) 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes modal-in {
  0% { transform: translate(-50%,-120%) scale(0.9); opacity: 0; }
  100% { transform: translate(-50%,-60%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.17rem;
  color: var(--color-secondary);
  margin-bottom: 9px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 9px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-secondary);
}
.cookie-categories {
  margin-bottom: 18px;
}
.cookie-modal .cookie-btn {
  margin-right: 8px;
}
.cookie-modal .cookie-btn.settings-close {
  background: #B2A385;
  color: #fff;
}

.cookie-modal .category-label[disabled] {
  color: #bbb;
  font-style: italic;
}

/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(48,64,59,0.19);
  z-index: 3900;
  animation: fade-in .2s;
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ORGANIC NATURE EFFECTS */
.section, .card, .testimonial-card {
  background-clip: padding-box;
  background-image: none;
  box-shadow: 0 2px 24px 0 rgba(46,139,87,0.06);
}
.card, .testimonial-card {
  border: 1.5px solid #eeefec;
}

/* Organic subtle textures - use svg as background (if desired, else soft color) */
.section {
  /* background-image: url("../assets/natural-texture-light.svg"); */
  background-repeat: repeat;
}

/* ORGANIC SHAPES FOR IMAGES */
img, .card img, .testimonial-card img {
  border-radius: 19px 35px 18px 27px / 27px 15px 34px 19px;
}

/* SHADOWS & HIERARCHY */
.card, .cta-button, .testimonial-card {
  box-shadow: 0 1px 10px 0 rgba(60,85,59,0.10), 0 6px 20px 0 rgba(47,70,57,0.10);
}
.card:hover, .cta-button:hover, .testimonial-card:hover {
  box-shadow: 0 6px 30px 0 rgba(46,139,87,0.11),0 2px 10px 0 rgba(22,74,124,.07);
}

/* ORGANIC ACCENT BORDERS */
.card {
  border-left: 6px solid var(--color-primary);
}
.card:nth-child(2n) {
  border-left: 6px solid var(--color-secondary);
}

/* SPECIAL CONTRAST FOR TESTIMONIALS */
.testimonial-card {
  background: #FAFDF6;
  color: #153431;
  border-left: 6px solid var(--color-secondary);
}
.testimonial-card strong {
  color: var(--color-primary);
}

/* FORMS (Generic - in case of future forms) */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 9px 15px;
  border: 1.5px solid #BCD1A6;
  border-radius: 18px;
  outline: none;
  background: #FAFDF6;
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  background: #fff;
}

/* MISC */
.hr {
  border: none;
  border-top: 1.5px dashed var(--color-earth);
  margin: 28px 0;
}

/* Hide scroll on mobile menu body open */
body.mobile-menu-open {
  overflow: hidden;
}

/* OVERLAY SMOOTH TRANSITIONS */
.mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
  will-change: transform,opacity;
}

/* Remove tap highlight on buttons */
button, .cta-button, .cookie-btn { -webkit-tap-highlight-color: transparent; }

/* ACCESSIBILITY: Visible focus for all interactive elements */
a:focus, button:focus, .cta-button:focus, .cookie-btn:focus {
  outline: 2.5px dashed var(--color-primary);
  outline-offset: 3px;
}

/* VISUAL FEEDBACK: Micro-interactions for hover/focus */
a, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.13s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}

/* Spacing helpers */
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-24 { gap: 24px !important; }

/* Hide unsupported elements (for JS fallback) */
[hidden] { display: none !important; }

/* END OF CSS */
