/* RESET & BASE ===================================================== */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: linear-gradient(135deg, #F3F7E9 0%, #d6e7cc 100%);
  color: #204b2c;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
a {
  color: #265D36;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F9B233;
}

/* FONTS ============================================================= */
:root {
  --color-primary: #265D36;
  --color-secondary: #F3F7E9;
  --color-accent: #F9B233;
  --color-on-primary: #fff;
  --color-on-light: #204b2c;
  --color-on-accent: #fff;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body, p, li {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-on-light);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.22; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }
.lead { font-size: 1.22rem; margin-bottom: 22px; color: #265D36; font-weight: 500; letter-spacing: 0.01em; }
strong, b { font-weight: 700; }

/* CONTAINER / STRUCTURE ============================================= */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(38, 93, 54, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-secondary);
  box-shadow: 0 2px 8px 0 rgba(38, 93, 54, 0.06);
  margin-bottom: 20px;
  border-radius: 14px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 100%;
  transition: box-shadow 0.20s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(38, 93, 54, 0.13);
  transform: translateY(-3px) scale(1.036);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: center;
  background: #fff;
  gap: 20px;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(38, 93, 54, 0.08);
  margin-bottom: 24px;
  min-width: 260px;
  transition: box-shadow 0.19s, transform 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(38, 93, 54, 0.14);
  transform: translateY(-2px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

/**** NAVIGATION HEADER **********************************************/
header {
  background: linear-gradient(100deg, #F3F7E9 60%, #F9B233 120%);
  padding: 0;
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(38, 93, 54, 0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 26px;
}
header img {
  height: 52px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: #265D36;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: var(--color-accent);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #F9B233 60%, #ffecc1 125%);
  color: var(--color-on-accent);
  font-family: var(--font-display);
  border: none;
  border-radius: 8px;
  padding: 9px 23px;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(249, 178, 51, 0.06);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.20s, color 0.15s, transform 0.15s, box-shadow 0.17s;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(98deg, #fbc052 60%, #F9B233 120%);
  color: #224c2d;
  transform: translateY(-1px) scale(1.044);
  box-shadow: 0 6px 22px rgba(39,93,54,0.10);
}
/* Hide .cta-btn on very small devices (shows in mobile nav) */
@media (max-width: 440px) {
  .cta-btn {
    display: none;
  }
}

/* MOBILE BURGER MENU (Hamburger / Slide Nav) ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #265D36;
  margin-left: 12px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F9B233;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(38, 93, 54,0.97);
  backdrop-filter: blur(1.5px);
  z-index: 111;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.65,.03,.29,1), opacity 0.32s;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}
.mobile-menu.menu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  z-index: 140;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #F9B233; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
  padding: 13px 0;
  width: 78vw;
  border-radius: 8px;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9B233;
  color: #204b2c;
}
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex !important;
  }
}

/* FOOTER ===================================================== */
footer {
  background: linear-gradient(90deg, #265D36 80%, #F9B233 120%);
  color: #fff;
  margin-top: 48px;
  padding: 34px 0 18px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
footer nav a {
  color: #fff;
  padding: 4px 0;
  font-size: 1rem;
}
footer nav a:hover, footer nav a:focus {
  color: #F9B233;
  background: transparent;
}
.footer-contact p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  line-height: 1.38;
  margin-bottom: 7px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 4px;
}

/* HERO / INTRO SECTIONS ==================================== */
main > section:first-of-type {
  background: linear-gradient(105deg, #F3F7E9 84%, #F9B233 220%);
  padding: 60px 0 30px 0;
  margin-bottom: 0;
  border-radius: 0 0 38px 38px;
}
main > section:first-of-type .container {
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 25px;
}
@media (max-width: 600px) {
  main > section:first-of-type {
    padding: 44px 0 18px 0;
    border-radius: 0 0 18px 18px;
  }
}

/* FEATURES CARDS (e.g. .features-grid children) ============== */
.features-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(38,93,54,0.09);
  padding: 22px 18px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.features-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(38,93,54,0.17);
  transform: translateY(-2px) scale(1.025);
}
.features-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 7px;
}

/* LISTS ====================================================== */
ul li, ol li {
  margin-bottom: 7px;
  color: #204b2c;
  line-height: 1.5;
}

ul li img, ol li img {
  height: 19px;
  width: 19px;
  vertical-align: bottom;
  margin-right: 7px;
  display: inline-block;
}

/* CTA Section Button Alignment ================================ */
main section .cta-btn {
  margin-top: 12px;
}

/* FAQ ACCORDION ============================================== */
.faq-accordion h2 {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: #265D36;
  margin-top: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-accordion p {
  background: #f3f7e9;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 14px 18px;
  font-size: 1.01rem;
  color: #224c2d;
  border-left: 3px solid #F9B233;
}

.quick-links {
  background: #F3F7E9;
  border-radius: 9px;
  padding: 17px 18px 8px 18px;
  margin: 32px 0 0 0;
  box-shadow: 0 2px 10px 0 rgba(38,93,54,0.05);
}
.quick-links ul {
  margin-bottom: 0;
}
.quick-links li {
  margin-bottom: 4px;
}

/* TABLE STYLE ================================================ */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(38,93,54,0.07);
  margin: 22px 0 12px 0;
  overflow: hidden;
}
table th {
  background: #F9B233;
  color: #265D36;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 14px;
  font-size: 1.02rem;
  text-align: left;
}
table td {
  padding: 13px 14px;
  font-size: 1rem;
  border-bottom: 1px solid #e9efd9;
  color: #224c2d;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:nth-child(odd) td { background: #f7fbf2; }

table thead tr th:first-child {
  border-top-left-radius: 12px;
}
table thead tr th:last-child {
  border-top-right-radius: 12px;
}

/* TESTIMONIALS: Section and Cards ============================== */
.testimonial-card {
  background: #fff;
  border-left: 6px solid #F9B233;
  color: #204b2c;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px 0 rgba(38,93,54,0.09);
  align-items: flex-start;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #204b2c;
  margin-bottom: 11px;
  line-height: 1.5;
}
.testimonial-card strong {
  color: #265D36;
  font-weight: 700;
}

/* CONTACT & MAP =============================================== */
.contact-map {
  background: #F3F7E9;
  border-radius: 11px;
  padding: 18px 16px;
  margin-top: 10px;
  box-shadow: 0 2px 10px 0 rgba(38,93,54,0.06);
}

/* BUTTONS ==================================================== */
button, .cta-btn {
  transition: background 0.20s, color 0.19s, box-shadow 0.15s, transform 0.17s;
  outline: none;
}
button:focus, .cta-btn:focus {
  box-shadow: 0 0 0 2px #F9B23333;
}

/* COOKIE CONSENT BANNER & MODAL =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(38,93,54,0.13);
  z-index: 201;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 17px 30px;
  gap: 24px;
  border-top: 1px solid #f3f7e9;
  transition: transform 0.33s cubic-bezier(.53,.05,.31,1), opacity 0.26s;
  opacity: 1;
  transform: translateY(0);
  animation: cookieFadeIn 0.6s cubic-bezier(.23,.76,.45,1.26);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform:translateY(0); }
}
.cookie-banner p {
  font-size: 1rem;
  color: #204b2c;
  margin-right: 18px;
  max-width: 630px;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 9px 17px;
  font-size: 1rem;
  border-radius: 7px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}
.cookie-accept {
  background: #F9B233;
  color: #204b2c;
  font-weight: 600;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #ffd680;
}
.cookie-reject {
  background: #f3f7e9;
  color: #265D36;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #e4ecd1;
  color: #F9B233;
}
.cookie-settings {
  background: #265D36;
  color: #fff;
  font-weight: 600;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #1d3e27;
}

/* COOKIE MODAL =============================================== */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(38,93,54,0.33);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.24s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 34px 34px 24px 34px;
  max-width: 418px;
  box-shadow: 0 8px 42px 0 rgba(38,93,54,0.17);
  z-index: 255;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookieModalIn 0.41s cubic-bezier(.24,.83,.48,1.17);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(70px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2, .cookie-modal h3 {
  margin-bottom: 4px;
}
.cookie-modal .close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: none;
  font-size: 1.43rem;
  color: #265D36;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #F9B233;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f3f7e9;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  flex: 1 1 auto;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F9B233;
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  color: #204b2c;
  font-weight: 600;
}
.cookie-category.essential input[type="checkbox"] {
  display: none;
}

/* UTILITIES ================================================= */
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* RESPONSIVE: MOBILE-FIRST + TABLET/LG ========================= */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  main > section {
    padding: 22px 0 13px 0;
  }
  .section {
    padding: 28px 7px 18px 8px;
    margin-bottom: 30px;
  }
  .card {
    min-width: 160px;
    padding: 18px 13px;
  }
  .footer-contact, footer nav {
    font-size: 0.96rem;
  }
  .footer-contact img { height: 15px; width: 15px; }
}
@media (max-width: 768px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 18px 10px;
    border-radius: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  table th, table td {
    font-size: 0.95rem;
    padding: 9px 7px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.02rem; }
  .container {
    padding-left: 4px; padding-right: 4px;
  }
  .section {
    padding: 14px 2px 12px 2px;
    margin-bottom: 16px;
  }
  .footer-contact, footer nav {
    font-size: 0.9rem;
  }
  .cookie-banner {
    padding: 12px 8px 10px 9px;
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 18px 8px 12px 8px;
    max-width: 99vw;
  }
}

/* SPECIAL: Spacing and no-overlap enforcement =================== */
main > section, .section, .card-container > *, .card, .content-grid > *, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
main > section:last-child, .section:last-child, .card-container > *:last-child, .content-grid > *:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* END OF FILE */