/* ========================================================
   CSS RESET & BASE NORMALIZATION
   ======================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #202319;
  background: #FFF;
  line-height: 1.6;
  min-height: 100vh;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #185B36;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2C94C;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
}

/* ================================
   BRAND TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #172417;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
}


/* ================================
   CONTAINER & LAYOUT
   ================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(25,35,17,0.06);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(34,50,25,0.04);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  display: block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #185B36;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a.cta-button {
  background: #185B36;
  color: #FFF;
  padding: 9px 22px;
  border-radius: 22px;
  margin-left: 10px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1px;
  box-shadow: 0 1px 4px 0 rgba(20,40,22,0.07);
  transition: background 0.22s, box-shadow 0.22s, color 0.19s;
}
header nav a.cta-button:hover,
header nav a.cta-button:focus {
  background: #133C21;
  color: #F2C94C;
  box-shadow: 0 4px 18px 0 rgba(25,60,30,0.10);
}
header nav a:hover,
header nav a:focus {
  background: #F4F7F5;
  color: #185B36;
}
header img {
  height: 38px;
  width: auto;
}

header .mobile-menu-toggle {
  background: none;
  color: #185B36;
  font-size: 2.3rem;
  border: none;
  display: none;
  margin-left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: background 0.2s;
}
header .mobile-menu-toggle:focus,
header .mobile-menu-toggle:hover {
  background: #F2C94C;
  color: #185B36;
}


/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(24,91,54,0.97);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 30px 10px 0;
  background: none;
  color: #F2C94C;
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 2011;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFF;
  background: #185B36;
  border-radius: 8px;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
  margin: 0;
  padding: 0 30px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #FFF;
  padding: 17px 0 17px 8px;
  border-radius: 8px;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2C94C;
  color: #185B36;
}

/* Hide header nav, show burger on mobile */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 990px) {
  .mobile-menu {
    display: flex;
  }
}

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

/* ================================
   HERO SECTION
   ================================ */
.hero {
  display: flex;
  align-items: center;
  min-height: 320px;
  background: #F9FBFA;
  border-bottom: 1.5px solid #E8EDEB;
  margin-bottom: 0;
  padding: 56px 0 44px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  padding-right: 0;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 0;
  color: #444D41;
}
.hero .cta-button {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .hero {
    padding: 32px 0;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .container {
    padding-right: 0;
  }
}

/* ================================
   CTA BANNER SECTION
   ================================ */
.cta-banner {
  background: #185B36;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(27,80,43,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-banner .content-wrapper h2,
.cta-banner .content-wrapper p {
  color: #FFF;
}
.cta-banner .cta-button {
  background: #F2C94C;
  color: #185B36;
  margin-top: 20px;
  box-shadow: 0 1px 4px 0 rgba(60,70,40,0.07);
}
.cta-banner .cta-button:hover,
.cta-banner .cta-button:focus {
  background: #FFF;
  color: #133C21;
  box-shadow: 0 4px 16px 0 rgba(25,60,30,0.10);
}

/* ================================
   BUTTONS
   ================================ */
.cta-button,
button.cta-button {
  background: #185B36;
  color: #FFF;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  box-shadow: 0 1px 6px 0 rgba(16,35,22,0.09);
  transition: background 0.24s, color 0.15s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  margin: 0 0 2px 0;
}
.cta-button:hover,
button.cta-button:hover,
.cta-button:focus,
button.cta-button:focus {
  background: #133C21;
  color: #F2C94C;
  box-shadow: 0 3px 24px 0 rgba(24,70,41,0.18);
  transform: translateY(-2px) scale(1.025);
}

/* Other Button Styles (Cookie, etc) */
.button {
  background: #185B36;
  color: #FFF;
  border-radius: 22px;
  padding: 8px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-left: 10px;
  box-shadow: 0 1px 5px 0 rgba(16,24,16,0.05);
  transition: background 0.2s, color 0.17s, box-shadow 0.23s;
  cursor: pointer;
}
.button.secondary {
  background: #F2C94C;
  color: #185B36;
}
.button.simple {
  background: transparent;
  color: #185B36;
  border: 1px solid #185B36;
}
.button:hover, .button:focus {
  background: #133C21;
  color: #F2C94C;
}
.button.secondary:hover, .button.secondary:focus {
  background: #FFF9D3;
  color: #185B36;
}
.button.simple:hover, .button.simple:focus {
  background: #F9FBFA;
  color: #185B36;
}

/* ================================
   FLEX LAYOUTS
   ================================ */
.features-grid, .benefit-icons, .team-profiles, .service-list, .stat-blocks, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.content-grid {
  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;
    align-items: flex-start;
    gap: 18px;
  }
}
.card-container {
  gap: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 1px 16px 0 rgba(27,45,31,0.08);
  padding: 32px 28px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(27,45,31,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* Testimonials */
.testimonials-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FFF;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 1px 16px 0 rgba(20,26,20,0.08);
  margin-bottom: 20px;
  max-width: 480px;
  flex: 1 1 240px;
  min-width: 180px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 26px 0 rgba(32,60,40,0.12);
  transform: translateY(-2px) scale(1.009);
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  font-weight: 400;
}
.testimonial-card .client {
  color: #185B36;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 3px;
}
.testimonial-card .rating {
  color: #F2C94C;
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ================================
   FEATURES, BENEFITS, TEAM, SERVICES
   ================================ */
.feature,
.benefit,
.profile,
.service,
.stat {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px 0 rgba(26,37,17,0.05);
  padding: 26px 18px 22px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.15s;
  margin-bottom: 20px;
}
.feature:hover, .benefit:hover, .profile:hover, .service:hover, .stat:hover {
  box-shadow: 0 6px 24px 0 rgba(27,45,31,0.12);
}
.feature img,
.benefit img,
.service img,
.value-list img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 8px;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.usp-list, .fact-highlights ul, .benefit-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 12px 0;
}
.usp-list li, .fact-highlights ul li, .benefit-highlights ul li {
  position: relative;
  padding-left: 29px;
  font-size: 1rem;
  color: #244426;
}
.usp-list li:before, .fact-highlights ul li:before, .benefit-highlights ul li:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #F2C94C;
  display: inline-block;
}

/* ================================
   TABLES
   ================================ */
.comparison-table {
  width: 100%;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(18,30,14,0.04);
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #EFF2EE;
}
.comparison-table th {
  background: #F9FBFA;
  color: #185B36;
  font-weight: 600;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ================================
   FAQ ACCORDION
   ================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border-radius: 10px;
  background: #F9FBFA;
  box-shadow: 0 1px 8px 0 rgba(30,50,21,0.04);
  padding: 11px 16px 13px 16px;
  margin-bottom: 2px;
}
.faq-item h2 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #185B36;
  margin-bottom: 4px;
  cursor: pointer;
}
.faq-answer {
  margin-top: 4px;
  color: #244426;
  font-size: 1rem;
}

/* ================================
   FOOTER STYLES
   ================================ */
footer {
  background: #F9FBFA;
  border-top: 1.5px solid #E8EDEB;
  padding: 30px 0 10px 0;
  width: 100%;
  margin-top: 66px;
}
footer .container {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 1100px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0;
}
footer nav a {
  color: #244426;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 500;
  padding: 7px 8px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover,
footer nav a:focus {
  background: #F2C94C;
  color: #185B36;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 1rem;
  color: #185B36;
  align-items: flex-start;
  margin: 18px 0 7px 0;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1);
}
.footer-hours {
  color: #888E80;
  font-size: 0.95rem;
  margin-top: 5px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 900px) {
  .features-grid, .benefit-icons, .team-profiles, .service-list, .stat-blocks, .card-container, .card-grid, .content-grid, .testimonials-preview {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
  }
  .card, .feature, .benefit, .service, .profile, .stat, .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-contact {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 10px;
  }
  .hero, .cta-banner {
    padding: 24px 0;
  }
  .section, .cta-banner {
    padding: 22px 8px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 13px;
  }
  .testimonial-card, .card, .feature, .service, .benefit, .stat {
    padding: 15px 10px;
  }
  .footer-contact {
    gap: 8px;
    font-size: 0.95rem;
  }
  footer .container {
    gap: 13px;
  }
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #185B36;
  color: #FFF;
  padding: 22px 28px;
  z-index: 3000;
  box-shadow: 0 -1px 30px 0 rgba(24,70,36,0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-message {
  flex: 1 1 270px;
  font-size: 1rem;
  color: #FFF;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner .button {
  padding: 8px 21px;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 16px 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,50,27,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #FFF;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 10px 70px 0 rgba(31,60,32,0.15);
  padding: 40px 32px 27px 32px;
  min-width: 320px;
  max-width: 95vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeDown 0.37s cubic-bezier(.6,.35,.44,1);
}
@keyframes fadeDown {
  0% {transform: translateY(-80px) scale(0.97); opacity: 0;}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cookie-modal-title {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #185B36;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #888E80;
  font-size: 2rem;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F2C94C;
  color: #185B36;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #EFF5F0;
  position: relative;
  margin-top: 2px;
  transition: background 0.2s;
}
.cookie-toggle input[type="checkbox"], .cookie-toggle input[type="radio"] {
  opacity: 0; position: absolute; width: 0; height: 0;
}
.cookie-toggle-label {
  position: relative;
  display: block;
  width: 38px; height: 22px;
  border-radius: 22px; background: #EFF5F0;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle-label:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #888;
  border-radius: 50%;
  transition: background 0.2s, transform 0.22s;
}
.cookie-toggle input:checked + .cookie-toggle-label:before {
  background: #185B36;
  transform: translateX(16px);
}
.cookie-toggle input:checked + .cookie-toggle-label {
  background: #F2C94C;
}
.cookie-category-essential .cookie-toggle-label,
.cookie-category-essential .cookie-toggle-label:before {
  background: #B1C9B7!important;
  cursor: not-allowed;
}
.cookie-category-essential .cookie-toggle-label:before {
  background: #8AA992!important;
}
.cookie-category-essential input {
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .button {
  font-size: 1rem;
  padding: 9px 21px;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 24px 4vw 19px 4vw;
    min-width: unset;
    width: 99vw;
  }
}

/* ================================
   MISCELLANEOUS
   ================================ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 23px;
  margin-bottom: 10px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #185B36;
}
.contact-details img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(100%) contrast(110%);
}

ul, ol {
  margin-left: 0;
}
@media (max-width: 450px) {
  .footer-contact span {
    flex-direction: column;
    gap: 2px;
  }
}

main {
  margin-bottom: 50px;
}

/* ================================
   PRINTING
   ================================ */
@media print {
  header, footer, .cta-banner, .cookie-banner, .mobile-menu {display:none !important;}
  .section, .container {margin: 0 !important; padding: 0 !important; box-shadow: none !important;}
}
