/* --- CSS RESET & NORMALIZATION --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { min-height: 100vh; background: #FFFBEA; color: #1C4A2E; font-family: 'Roboto', Arial, sans-serif; line-height: 1.6; letter-spacing: 0.01em; }
img { max-width: 100%; display: block; }
a { color: #1C4A2E; text-decoration: none; transition: color .18s ease; }
a:focus { outline: 2px dashed #F7B32B; outline-offset: 2px; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: 8px; }

/* --- TYPOGRAPHY SCALE --- */
h1 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; color: #1C4A2E; letter-spacing: 0.01em; line-height: 1.16; }
h2 { font-family: 'Montserrat', Arial, sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 16px; color: #1C4A2E; }
h3 { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.375rem; font-weight: 600; margin-bottom: 10px; color: #184126; }
h4, h5, h6 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; }
p { font-size: 1rem; margin-bottom: 12px; color: #2c5838; }
strong { font-weight: 700; }

/* --- BRAND COLORS --- */
:root {
  --primary: #1C4A2E;
  --primary-dark: #164327;
  --secondary: #F7B32B;
  --accent: #FFFBEA;
  --text-base: #1C4A2E;
  --text-muted: #416147;
  --surface: #FFFFFF;
  --earth-brown: #735920;
  --gray-light: #F2F2EB;
  --shadow: rgba(44, 70, 56, 0.07);
  --card-shadow: 0 2px 20px var(--shadow);
  --border-radius: 24px;
  --transition: all .26s cubic-bezier(.38,.8,.54,1);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* --- HEADER --- */
header {
  background: #fffdfa;
  box-shadow: 0 2px 8px rgba(28,74,46,0.04);
  position: sticky; top: 0; z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 80px;
  gap: 24px;
}
.header-logo img {
  height: 46px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(215,185,97,0.07);
}
.main-nav {
  display: flex; gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  font-size: 1rem; font-weight: 500;
  color: var(--primary);
  padding: 4px 0 4px 0;
  border-bottom: 2px solid transparent;
  border-radius: 6px 6px 0 0;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  border-color: var(--secondary);
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 28px;
  box-shadow: 0 3px 16px var(--shadow);
  border: none;
  cursor: pointer;
  margin-left: 18px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 5px 28px rgba(244,186,50,.15);
}

/* --- MOBILE MENU BUTTONS --- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .20s;
  z-index: 21;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(28, 74, 46, 0.97);
  z-index: 100;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 22px 32px 22px;
  transition: transform .38s cubic-bezier(.67,.02,.32,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  font-size: 2rem;
  color: #fff;
  border: none;
  margin-bottom: 20px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0 12px 4px;
  border-radius: 8px;
  transition: background-color .14s, color .14s;
  margin-right: 0;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
  background: var(--accent);
  background-size: cover;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: 0 4px 32px var(--shadow);
  margin-bottom: 60px; padding: 40px 20px;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex; flex-direction: column; justify-content: center;
  gap: 16px;
  max-width: 600px;
}

/* --- SECTION SPACING --- */
.section {
  margin-bottom: 60px; padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--shadow);
}
section:not(.hero):not(.cta-section) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px var(--shadow);
}

/* --- CONTENT WRAPPER --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- FLEX & GRID STYLE --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-item {
  background: #f3f8f1;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 254px;
  margin-bottom: 20px;
  transition: box-shadow .22s, background .20s;
  border: 2px solid transparent;
}
.feature-item img {
  width: 38px; height: 38px; object-fit: contain; border-radius: 50%; background: #e8f4de; padding: 5px;
  box-shadow: 0 1px 12px #cde1c8; border: 1px solid #e1ebde;
}
.feature-item:hover,!feature-item:focus {
  box-shadow: 0 4px 30px rgba(60, 99, 58, 0.14);
  background: #f6fbf2;
  border-color: var(--secondary);
}
.sector-tag {
  background: #DFF6E0;
  color: var(--primary);
  font-size: .87em;
  padding: 2px 12px;
  border-radius: 18px;
  margin: 0 0 8px 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* --- CARDS --- */
.service-cards, .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card, .news-item {
  background: #fffef4;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--shadow);
  padding: 34px 24px 28px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 285px;
  min-width: 230px;
  transition: box-shadow .2s, background .2s;
}
.service-card a, .news-item a {
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  transition: color .14s;
}
.service-card a:hover, .news-item a:hover {
  color: var(--secondary);
}
.service-card:hover, .service-card:focus, .news-item:hover, .news-item:focus {
  box-shadow: 0 6px 30px rgba(28,74,46,0.16);
  background: #f6fbf2;
}

/* --- TESTIMONIALS --- */
.testimonial-row {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: flex-start;
}
.testimonial-card {
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 17px rgba(60, 99, 58, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 26px 20px 26px;
  min-width: 220px; flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  border-left: 8px solid var(--secondary);
  color: var(--text-base);
}
.testimonial-card p {
  color: var(--text-base);
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: .97rem;
  color: var(--earth-brown);
  font-weight: 600;
  text-align: right;
  align-self: flex-end;
}

/* --- CTA SECTION --- */
.cta-section {
  background: linear-gradient(120deg, #f2f9f2 70%, #fffbea 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 15px rgba(244,186,50,0.11);
  margin-bottom: 60px; padding: 40px 20px;
  display: flex;
  align-items: center;
}
.cta-section .content-wrapper { align-items: center; text-align: center; }
.cta-section h2 { color: var(--primary-dark); font-size: 2.1rem; }
.cta-section .cta-btn { margin-top: 16px; }

/* --- ABOUT & CONTACT LISTS --- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.contact-list li {
  display: flex;
  align-items: center;
  color: #225730;
  font-size: 1rem;
  gap: 11px;
}
.contact-list img {
  width: 22px; height: 22px;
}
.info-text { color: #456545; font-size: 1rem; margin-top: 8px; }

/* --- PARTNER LOGOS --- */
.partner-logos {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; margin-top: 18px;
}
.partner-logos img {
  height: 38px; background: #f4f9ef; border-radius: 10px; padding: 5px 8px;
  box-shadow: 0 2px 7px #cfe3c6;
}

/* --- KEY RESULTS UL --- */
.key-results ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-position: inside;
  margin: 18px 0 0 0;
  color: #386b3d;
  font-size: 1.06rem;
  font-weight: 500;
}

/* --- FOOTER --- */
footer {
  background: #f8f8ef;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-top: 70px;
  padding: 50px 0 26px 0;
  box-shadow: 0 -2px 14px rgba(50, 77, 64, 0.09);
}
.footer-logo img {
  height: 38px; border-radius: 12px;
}
.footer-nav {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #2A522d; font-size: .97rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 2px 6px; border-radius: 6px;
  transition: background .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  color: #2c5838;
  font-size: .97rem;
}
.footer-contact span {
  display: flex; align-items: center; gap: 6px;
  line-height: 1.4;
}
.footer-tagline {
  color: #AF9A6E; font-size: 1.07rem; margin-top: 8px; font-family: 'Montserrat', Arial;
  letter-spacing: 0.04em;
}

/* --- NEWS LIST --- */
.news-list {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
}
.news-item {
  flex: 1 1 340px; min-width: 220px;
}

/* --- GENERAL BUTTONS --- */
button,
input[type=submit],
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  outline: none;
  border: none;
  transition: var(--transition);
}
button:focus-visible,
.cta-btn:focus-visible { outline: 2px solid var(--secondary); }

/* --- ANIMATION/INTERACTION --- */
.feature-item, .service-card, .card, .news-item, .testimonial-card {
  transition: box-shadow .22s, background .22s, border .16s;
}
.feature-item:hover, .service-card:hover, .news-item:hover, .testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(44, 70, 56, 0.16);
  background: #f6fbf2;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffbea;
  color: var(--primary);
  border-top: 2px solid #e2dea0;
  box-shadow: 0 -1px 24px rgba(75,112,70,0.09);
  padding: 20px 16px 18px 18px;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: .97rem;
  animation: banner-slidein .7s cubic-bezier(.37,1.01,.52,1);
  min-height: 40px;
}
@keyframes banner-slidein {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 2 2 200px;
}
.cookie-banner__actions {
  display: flex; gap: 14px; align-items: center;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  background: var(--primary);
  color: #fff;
  transition: background .18s, color .13s;
  margin-left: 0;
}
.cookie-btn--reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #f3ede0;
  color: var(--primary-dark);
  border-color: var(--secondary);
}
.cookie-btn--settings {
  background: #F7B32B;
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed; z-index: 300; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(28,74,46,0.25);
  animation: cookiefadein .38s;
  display: flex; align-items: center; justify-content: center;
}
@keyframes cookiefadein { from {opacity: 0;} to {opacity: 1;} }
.cookie-modal {
  background: #FFFBEA;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 38px rgba(67, 99, 60, 0.13);
  max-width: 400px; width: 96%;
  padding: 36px 24px 32px 24px;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalgrow .22s cubic-bezier(.49,1.31,.5,1);
}
@keyframes modalgrow { from { transform: scale(0.97); opacity: 0.6; } to {transform: scale(1); opacity: 1;} }
.cookie-modal__actions {
  display: flex; gap: 12px; margin-top: 12px;
}
.cookie-modal label {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.01rem;
  margin-bottom: 10px;
}
.cookie-modal .toggle-switch {
  width: 36px; height: 20px; display: inline-block; position: relative;
}
.toggle-switch input[type=checkbox] { display: none; }
.toggle-slider {
  position: absolute;
  left: 0; top: 0;
  width: 36px; height: 20px;
  border-radius: 20px;
  background: #dce6c4;
  transition: background .22s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  height: 14px; width: 14px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s;
  box-shadow: 0 2px 4px #dbe9d5;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1100px) {
  .container { max-width: 1000px; }
  .feature-item, .service-card { min-width: 180px; }
}
@media (max-width: 900px) {
  .container { max-width: 800px; }
  .feature-grid { gap: 18px; }
  .service-cards, .news-list { gap: 16px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }

  header .container {
    flex-wrap: wrap; gap: 12px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero, .cta-section, .section {
    padding: 28px 11px;
    min-height: 140px;
  }
  .feature-grid, .service-cards, .testimonial-row, .news-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-card, .news-item, .testimonial-card {
    min-width: 90%;
    width: 100%;
    flex: 1 1 100%;
  }
  .footer-contact {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .footer-logo img { height: 32px; }
  .partner-logos { gap: 10px; }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .hero, .cta-section, .section { padding: 20px 3vw; }
  .cookie-modal { padding: 22px 5vw; }
}

/* --- UTILITY CLASSES & MISC --- */
.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 { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- END OF CSS --- */
