/* ========================== */
/*       CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F5F5F0;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s;
}
a:focus {
  outline: 2px solid #267A3A;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ========================== */
/*         VARIABLES          */
/* ========================== */
:root {
  --primary: #267A3A;
  --secondary: #F5F5F0;
  --accent: #A3895C;
  --accent-bold: #7B622B;
  --white: #FFFFFF;
  --black: #181B20;
  --gray-light: #F8F8F9;
  --shadow: 0 6px 32px 0 rgba(25,55,32,0.08);
  --radius: 18px;
  --radius-sm: 9px;
  --transition: 0.24s cubic-bezier(.68, -.55, .27, 1.55);
}

/* ========================== */
/*      TYPOGRAPHY SCALE      */
/* ========================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.75rem; /* 44px */
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1.5px;
  line-height: 1.11;
  margin-bottom: 16px;
  text-transform: none;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: -1px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.7;
  font-weight: 400;
}
strong {
  font-weight: 800;
}
em {
  color: var(--accent-bold);
  font-style: normal;
  font-weight: 600;
}
.subheadline {
  font-size: 1.38rem;
  color: var(--accent-bold);
  margin-bottom: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: var(--black);
  padding-left: 0px;
  border-left: 0px solid transparent;
  margin-bottom: 0.5em;
  quotes: none;
}

/* ========================== */
/*        CONTAINER + FLEX    */
/* ========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 9px 54px 0 rgba(38,122,58,0.17);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--secondary);
  border-left: 8px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 20px 28px 16px 28px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--accent-bold);
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 18px 17px;
}


/* ========================== */
/*        HEADER & NAV        */
/* ========================== */
header {
  background: var(--white);
  box-shadow: 0 3px 20px -7px rgba(38,122,58,0.07);
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 16px 18px;
}
header img {
  height: 48px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  align-items: center;
  font-size: 1.04rem;
}
.main-nav a {
  color: var(--black);
  font-weight: 700;
  position: relative;
  padding: 4px 2px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
}
.main-nav a:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.18s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  transform: scaleX(0.7);
}
a.cta-primary, .cta-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  box-shadow: 0 2px 9px 0 rgba(38,122,58,0.09);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
a.cta-primary:hover, .cta-primary:hover, a.cta-primary:focus {
  background: var(--accent-bold);
  color: var(--white);
  transform: translateY(-2px) scale(1.04);
}

/* ========================== */
/*      BURGER MOBILE MENU    */
/* ========================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 23px;
  right: 17px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-size: 1.82rem;
  font-weight: 900;
  z-index: 102;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  background: var(--accent-bold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--white);
  z-index: 120;
  overflow-y: auto;
  transform: translateX(-105vw);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 9px 37px 0 rgba(38,122,58,0.22);
  display: flex;
  flex-direction: column;
  padding-top: 34px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 8px 22px 30px 0;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover {
  color: var(--accent-bold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 38px;
  padding-bottom: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  padding: 13px 0 9px 0;
  border-bottom: 1px solid #e7efd6;
  transition: color 0.17s, border 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: 0;
}
.mobile-nav a:hover {
  color: var(--accent-bold);
}

/* ========================== */
/*          FOOTER            */
/* ========================== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 36px 0 28px 0;
  box-shadow: 0 -4px 32px 0 rgba(38,122,58,0.13);
}
footer .container {
  flex-direction: column;
  gap: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-info {
  text-align: center;
  margin-top: 0;
  font-size: 0.98rem;
  color: #d9edd9;
}

/* ========================== */
/*     LISTS, CARDS, UL/OL    */
/* ========================== */
ul, ol {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-left: 0px;
  margin-bottom: 10px;
}
li {
  position: relative;
  padding-left: 32px;
  font-size: 1.05rem;
  color: var(--black);
  font-family: 'Open Sans', Arial, sans-serif;
}
ul > li:before {
  position: absolute;
  left: 0;
  top: 0.22em;
  content: '●';
  color: var(--primary);
  font-size: 1.12em;
  font-weight: bold;
  line-height: 1;
}
ul > li[data-bullet="check"]:before {
  content: '✔';
  color: var(--primary);
  font-size: 1.08em;
}
ol > li {
  padding-left: 10px;
  counter-increment: list;
}
ol {
  counter-reset: list;
}
ol > li:before {
  content: counter(list) '.';
  color: var(--accent-bold);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Override icon for some use-cases */
ul > li:has(strong), ul > li:has(em) {
  font-weight: 600;
}

/* ========================== */
/*       BUTTON GENERAL       */
/* ========================== */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 99px;
  font-size: 1.08rem;
  padding: 12px 32px;
  box-shadow: 0 2px 9px 0 rgba(38,122,58,0.11);
  color: var(--white);
  background: var(--primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
button:hover, .btn:hover {
  background: var(--accent-bold);
  color: var(--white);
  transform: scale(1.04);
}
button:disabled, .btn:disabled {
  background: #BBB;
  color: #EEE;
  cursor: not-allowed;
  opacity: 0.7;
}

/* ========================== */
/*      COOKIE CONSENT BAR    */
/* ========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 -7px 32px 0 rgba(27,32,30,0.14);
  border-top: 3px solid var(--primary);
  padding: 28px 15px 20px 15px;
  z-index: 299;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: bannerAppear 0.6s var(--transition);
}
@keyframes bannerAppear {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 7px;
}
.cookie-banner button {
  padding: 10px 23px;
  border-radius: 99px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border: none;
  margin-right: 0;
  transition: background var(--transition);
}
.cookie-banner button.reject {
  background: var(--accent);
  color: var(--white);
}
.cookie-banner button.settings {
  background: var(--gray-light);
  color: var(--black);
  border: 2px solid var(--primary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent-bold);
  color: var(--white);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: var(--primary);
  color: var(--white);
}

/* ========================== */
/*  COOKIE MODAL POPUP LAYER  */
/* ========================== */
.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,27,32,0.26);
  z-index: 399;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.33s;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--black);
  padding: 36px 23px 24px 23px;
  border-radius: var(--radius);
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 21px 44px rgba(38,122,58,0.13);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalAppear 0.35s var(--transition);
}
@keyframes modalAppear {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-bottom: 1px solid #f3eedc;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: 0;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--primary);
  margin-right: 6px;
}
.cookie-modal .cookie-category .always {
  color: var(--accent-bold);
  font-size: 0.96rem;
  font-weight: 700;
  margin-left: 8px;
}

/* ========================== */
/*    GENERAL FORM STYLING    */
/* ========================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 16px;
  border: 1.8px solid #e8eee0;
  border-radius: var(--radius-sm);
  transition: border 0.17s, box-shadow 0.17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid var(--primary);
  box-shadow: 0 2px 12px 0 rgba(38,122,58,0.10);
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  display: block;
}

/* ========================== */
/*    ANIMATED MICROUX FX     */
/* ========================== */
.cta-primary,
.card, .testimonial-card,
.btn, button {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  border-color: var(--accent-bold);
}

.testimonial-card:active { box-shadow: 0 4px 13px 0 rgba(38,122,58,0.11); }
.card:active { box-shadow: 0 6px 16px 0 rgba(38,122,58,0.13); }

@media (hover: hover) and (pointer: fine) {
  a, .cta-primary, .btn, button {
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  }
}

/* ========================== */
/*         SECTIONS           */
/* ========================== */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
main > section .container {
  padding: 0;
}

/* ========================== */
/*      RESPONSIVE DESIGN     */
/* ========================== */
@media (max-width: 1040px) {
  .container { max-width: 95vw; }
  main > section {
    padding: 36px 6px;
  }
  header .container { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .main-nav { gap: 14px; font-size: 0.98rem; }
}

@media (max-width: 800px) {
  h1, .h1 { font-size: 2.14rem; }
  h2, .h2 { font-size: 1.34rem; }
  .section, main > section { padding: 22px 7px; margin-bottom: 47px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .container { flex-direction: row; }
  main > section, .section {
    margin-bottom: 36px;
    padding: 22px 2px;
  }
  .content-wrapper, .card-container, .content-grid, .testimonial-card {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .text-image-section, .feature-item {
    flex-direction: column !important;
    gap: 17px !important;
    align-items: flex-start !important;
  }
  .card {
    padding: 14px 8px;
    margin-bottom: 13px;
  }
  .footer-nav { flex-direction: column; gap: 7px; }
  .footer-info { font-size: 0.95rem; }
  .testimonial-card {
    padding: 17px 11px 12px 11px;
    border-left-width: 4px;
    margin-bottom: 13px;
  }
}

@media (max-width: 560px) {
  h1, .h1 { font-size: 1.32rem; letter-spacing: -0.4px; margin-bottom: 13px; }
  h2, .h2 { font-size: 1.08rem; margin-bottom: 13px; }
  .container { padding: 0 4px; }
  .mobile-nav { padding-left: 13px; }
  .footer-nav { font-size: 0.91rem; }
}

/* ========================== */
/*       Z-INDEX RULES        */
/* ========================== */
header { z-index: 90; }
.mobile-menu-toggle { z-index: 102; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 299; }
.cookie-modal-bg { z-index: 399; }

/* ========================== */
/*   UTILITY/VISUAL BOLD FX   */
/* ========================== */
.bold {
  font-weight: 900;
}
.rounded {
  border-radius: var(--radius);
}
.shadow {
  box-shadow: var(--shadow);
}
.bg-primary {
  background: var(--primary); color: var(--white); }
.bg-accent {
  background: var(--accent-bold); color: var(--white); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent-bold); }
.text-secondary { color: var(--accent); }

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
gap-20 { gap: 20px; }

/* ========================== */
/*   ARIA/HIDE/ACCESSIBILITY  */
/* ========================== */
[aria-hidden="true"] { display: none !important; }

/*
 ============================
 Special styles for geometric decorative elements can be applied where desired in-page; add suitable class to respective elements, e.g.,
 <div class="geo-circle"></div>
*/
.geo-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.13;
  position: absolute;
  top: -19px; right: -25px;
  z-index: 2;
}

/* End of CSS */
