/* --- 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,
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F6F2;
  color: #245C36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul, ol {
  padding-left: 1.25em;
}
a {
  color: #B97D17;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #245C36;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  outline: none;
  background: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #245C36;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
  font-size: 1em;
}

/* --- CONTAINER & WRAPPERS --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(36,92,54,0.06);
  padding: 40px 24px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper {
    padding: 24px 8px;
    border-radius: 11px;
  }
}

/* --- SPACING & FLEXBOX PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36,92,54,0.09);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(36,92,54,0.13);
  transform: translateY(-3px);
}
.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;
  border-radius: 16px;
  background: #F7F6F2;
  box-shadow: 0 1px 7px rgba(36,92,54,0.09);
  margin-bottom: 24px;
}
.testimonial-card p {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.95em;
  color: #245C36;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 24px 5px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(36,92,54,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  min-height: 68px;
  flex-wrap: wrap;
}
.logo {
  padding: 13px 18px 13px 18px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #245C36;
  font-weight: 600;
  font-size: 1.1em;
  padding: 9px 12px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E0A22B;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  color: #245C36;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 9px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E0A22B;
  color: #fff;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 18px;
  }
}
/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 85vw;
  max-width: 380px;
  background: #fff;
  box-shadow: -8px 0 32px rgba(36,92,54,0.18);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(.74,.16,.34,1.01);
  z-index: 2500;
  padding: 30px 18px 18px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #F7F6F2;
  font-size: 2.1rem;
  border-radius: 8px;
  color: #245C36;
  padding: 4px 14px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E0A22B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  padding: 14px 10px;
  border-radius: 8px;
  color: #245C36;
  font-weight: 600;
  font-size: 1.17em;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E0A22B;
  color: #fff;
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #E0A22B;
  color: #fff;
  font-size: 1.14em;
  border-radius: 12px;
  padding: 13px 34px;
  margin-top: 12px;
  margin-bottom: 6px;
  box-shadow: 0 2px 6px rgba(36,92,54,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.cta.primary {
  background: #245C36;
  color: #fff;
}
.cta:focus, .cta:hover {
  background: #b97d17;
  color: #fff;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 18px rgba(225,170,43,0.13);
}
.cta.primary:focus, .cta.primary:hover {
  background: #245C36cc;
}
@media (max-width: 500px) {
  .cta, .cta.primary {
    width: 100%;
    text-align: center;
    font-size: 1em;
    padding: 11px 12px;
  }
}

/* --- CARDS & FEATURES --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 18px;
}
.feature {
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(224,162,43,0.07);
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 280px;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  gap: 8px;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.feature:hover {
  box-shadow: 0 4px 18px rgba(36,92,54,0.13);
  transform: translateY(-2px);
}
@media (max-width: 860px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    width: 100%;
    max-width: 100%;
  }
}

/* --- PRODUCT & TEAM CARDS --- */
.product-cards, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.product-card, .team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(36,92,54,0.08);
  flex: 1 1 200px;
  min-width: 150px;
  max-width: 290px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.product-card:hover, .team-member:hover {
  box-shadow: 0 6px 24px rgba(36,92,54,0.14);
  transform: translateY(-2px);
}
.product-card h3, .team-member h3 {
  font-size: 1.2em;
  margin-bottom: 6px;
}
.team-member p {
  font-size: 1em;
  color: #245C36;
}
@media (max-width: 768px) {
  .product-cards, .team-grid {
    flex-direction: column;
    gap: 16px;
  }
  .product-card, .team-member {
    max-width: 100%;
    min-width: unset;
  }
}

/* --- NEWS & FAQ --- */
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.news-item {
  background: #fffdfa;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(233,206,158,0.08);
  flex: 1 1 250px;
  min-width: 170px;
  max-width: 370px;
  padding: 20px 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.news-item:hover {
  box-shadow: 0 5px 21px rgba(36,92,54,0.13);
  transform: translateY(-2px);
}
@media (max-width: 850px) {
  .news-list {
    flex-direction: column;
    gap: 15px;
  }
  .news-item {
    max-width: 100%;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 9px rgba(224,162,43,0.07);
  padding: 18px 14px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.faq-item h3 {
  font-size: 1.13em;
  color: #245C36;
  margin-bottom: 7px;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(36,92,54,0.09);
  transform: translateY(-2px);
}

/* --- LISTS & ICONS IN LISTS --- */
ul li, ol li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
ul li img, ol li img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* --- FOOTER --- */
footer {
  background: #245C36;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 24px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  font-size: 1em;
}
footer nav {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  justify-content: center;
}
footer nav a {
  color: #E0A22B;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 600;
  transition: color 0.2s, text-decoration 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 17px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.97em;
  gap: 7px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-brand img {
  width: 41px;
  height: 41px;
}
.footer-brand span {
  font-size: 1em;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 500px) {
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details li {
  color: #245C36;
  font-size: 1.1em;
  align-items: center;
  gap: 10px;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdfa;
  box-shadow: 0 -1px 13px rgba(36,92,54,0.14);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 21px 5vw 20px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 1em;
  z-index: 6000;
  transition: transform 0.4s cubic-bezier(.74,.16,.34,1.01);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-banner-text {
  color: #333;
  max-width: 78vw;
  flex: 1 1 auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 9px;
  padding: 9px 29px;
  border: none;
  background: #E0A22B;
  color: #fff;
  box-shadow: 0 1px 4px rgba(224,162,43,0.08);
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.19s, color 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #245C36;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #245C36;
  border: 1.5px solid #E0A22B;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E0A22B;
  color: #fff;
}
@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 3vw 18px 3vw;
    border-radius: 13px 13px 0 0;
  }
  .cookie-banner .cookie-banner-text {
    max-width: 100%;
    text-align: left;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36,92,54,0.14);
  z-index: 7000;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 32px rgba(36,92,54,0.17);
  padding: 38px 22px 28px 22px;
  min-width: 330px;
  max-width: 94vw;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  animation: fadeIn 0.4s cubic-bezier(.56,.07,.34,.97);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3em;
  color: #245C36;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #F7F6F2;
  font-size: 1.05em;
}
.cookie-modal .category:last-child {
  border-bottom: none;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 22px;
  display: inline-block;
  position: relative;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E0A22B;
  border-radius: 12px;
  transition: background-color 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background-color: #245C36;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(36,92,54,0.10);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .category[aria-disabled="true"] .toggle-switch {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 12px;
  background: #F7F6F2;
  color: #245C36;
  border: none;
  font-size: 1.6em;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #E0A22B;
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: unset;
    padding: 19px 3vw 17px 3vw;
  }
}

/* --- GENERAL FORMS & INPUTS (if needed) --- */
input, textarea, select {
  border: 1.5px solid #E0A22B;
  border-radius: 9px;
  padding: 11px;
  font-size: 0.97em;
  background: #fff;
  color: #245C36;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #245C36;
}

/* --- TRANSITIONS & MICRO-INTERACTIONS --- */
.card, .product-card, .feature, .news-item, .faq-item, .team-member, .testimonial-card,
.cta, .cta.primary, .main-nav a, .mobile-nav a, button, .cookie-banner, .cookie-modal, .mobile-menu {
  transition: 0.18s cubic-bezier(.56,.12,.44,1);
}

/* --- MISCELLANEOUS --- */
a:focus-visible {
  outline: 2px dashed #B97D17;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F7F6F2;
}
::-webkit-scrollbar-thumb {
  background: #E0A22B;
  border-radius: 4px;
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.45em;
  }
  h2 {
    font-size: 1.2em;
  }
  h3 {
    font-size: 1.07em;
  }
}

/* --- UTILITIES --- */
.flex {
  display: flex;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.gap-20 {
  gap: 20px;
}
.rnd {
  border-radius: 16px;
}
.shadow {
  box-shadow: 0 2px 16px rgba(36,92,54,0.05);
}

/* --- PRINT FRIENDLY --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
