/* ==========================================
   CSS RESET & BASE TYPOGRAPHY
   ========================================== */
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,
main, 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F9F2;
  color: #194428;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
a {
  color: #25603A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B35A00;
  outline: none;
}
strong {
  font-weight: 700;
  color: #25603A;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}

/* ==========================================
   FONT IMPORTS (Montserrat & Roboto)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #194428;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Typography alternate on dark */
.dark-bg h1, .dark-bg h2, .dark-bg h3 {
  color: #F6F9F2;
}

p, li, td, th {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
section p {
  margin-bottom: 16px;
}

/* ==========================================
   SPACING & LAYOUT
   ========================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(25, 68, 40, 0.08);
  /* subtle organic edge effect using box-shadow */
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 8px;
  }
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  background: #25603A;
  color: #F6F9F2;
  box-shadow: 0 4px 16px rgba(25, 68, 40, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #F6F9F2;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E3862B;
  border-color: #E3862B;
}
/* Hide nav on mobile, show burger menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E3862B;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  z-index: 60;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B35A00;
  background: rgba(255,255,255,0.09);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E3862B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border: none;
  border-radius: 25px 35px 25px 35px/35px 25px 35px 25px; /* Organic shape */
  box-shadow: 0 1px 8px rgba(179,90,0,0.09);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 16px;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #B35A00;
  color: #fff;
  transform: translateY(-2px) scale(1.031);
  box-shadow: 0 3px 16px rgba(179,90,0,0.17);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
  .cta-btn {
    padding: 11px 20px;
    font-size: 0.97rem;
    margin-left: 6px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 4px;
  }
}

/* ===============================
   MOBILE MENU
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 430px;
  height: 100%;
  background: #25603A;
  color: #fff;
  box-shadow: -2px 0 32px rgba(25,68,40,0.14);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,0,.25,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E3862B;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 140;
  line-height: 1;
}
.mobile-menu-close:focus {
  outline: 2px solid #B35A00;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #EFEFEF;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(246,249,242,0.10);
  transition: color 0.19s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E3862B;
  background: rgba(233,134,43,0.04);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  padding: 0;
  background: linear-gradient(150deg, #F6F9F2 70%, #E3862B 100%);
  border-radius: 0 0 40px 40px/0 0 28px 28px;
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 44px;
}
.hero .container {
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.6rem;
  color: #25603A;
}
.hero p {
  font-size: 1.22rem;
  color: #194428;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .hero {
    min-height: 210px;
    border-radius: 0 0 18px 18px/0 0 11px 11px;
    margin-bottom: 25px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ==========================================
   NATURE ORGANIC DESIGN ELEMENTS
   ========================================== */
section, .section {
  /* light, paper texture look, organic shape */
  background: #fff;
  border-radius: 32px 48px 36px 40px/44px 44px 34px 42px;
  box-shadow: 0 7px 40px 0px rgba(25,68,40,0.05), 0 2px 9px rgba(35,96,58,0.11);
}
@media (max-width: 900px) {
  section, .section {
    border-radius: 18px 18px 18px 20px/18px 16px 18px 18px;
  }
}

/* ==========================================
   FEATURE & CARD GRIDS (FLEX LAYOUTS)
   ========================================== */
.feature-grid, .services-list, .service-cards, .idea-highlights, .project-summaries, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div, .services-list > div, .service-cards > div, .idea-highlights > div, .project-summaries > div, .card {
  background: #F6F9F2;
  border-radius: 22px 34px 21px 24px/33px 28px 32px 19px;
  box-shadow: 0 2px 8px rgba(25,68,40,0.09);
  flex: 1 1 220px;
  min-width: 220px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow .20s, transform .19s;
  position: relative;
}
.feature-grid > div:hover,
.services-list > div:hover,
.service-cards > div:hover {
  box-shadow: 0 8px 36px rgba(35,96,58, 0.16);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #E9F1EB;
  object-fit: contain;
}
@media (max-width: 900px) {
  .feature-grid > div, .services-list > div, .service-cards > div {
    min-width: 160px;
    padding: 14px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .services-list, .service-cards, .idea-highlights, .project-summaries, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .services-list > div, .service-cards > div {
    min-width: 0;
    padding: 12px;
    margin-bottom: 14px;
    box-shadow: 0 1.5px 6px rgba(25,68,40,0.10);
  }
}

.card {
  background: #fff;
  border-radius: 22px 34px 21px 24px/33px 28px 32px 19px;
  box-shadow: 0 1.5px 12px rgba(25,68,40,0.063);
  padding: 26px 20px;
  margin-bottom: 20px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 26px rgba(25,68,40,0.14);
  transform: translateY(-2px) scale(1.025);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .card {
    padding: 16px 7px 16px 11px;
  }
}
@media (max-width: 600px) {
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ===============================
   TEXT-IMAGE & FEATURE-ITEMS
   =============================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* ==========================================
   TESTIMONIALS & MICRO CARDS
   ========================================== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card {
  background: #F6F9F2;
  color: #194428;
  border-radius: 32px 40px 31px 34px/33px 35px 34px 32px;
  box-shadow: 0 2px 16px rgba(25,68,40,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 430px;
  position: relative;
  font-size: 1.08rem;
  transition: box-shadow .17s, transform .14s;
}
.testimonial-card strong {
  display: block;
  margin-top: 10px;
  font-size: 0.98rem;
  color: #25603A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #194428;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(35,96,58, 0.17);
  transform: scale(1.025);
}
@media (max-width: 800px) {
  .testimonial-slider, .testimonial-list {
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 13px 10px;
    font-size: 1rem;
  }
}

/* ==================================
   PRICING TABLES & CTA BANNERS
   ================================== */
.pricing-table {
  margin-top: 20px;
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #F6F9F2;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1rem;
  color: #194428;
}
.pricing-table th, .pricing-table td {
  padding: 14px;
  text-align: left;
}
.pricing-table th {
  background: #EEEEE6;
  color: #194428;
  font-size: 1rem;
}
.pricing-table tbody tr:nth-child(even) {
  background: #FFF;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #F6F9F2;
}
.pricing-table td strong { color: #25603A; }
.cta-banner {
  background: #25603A;
  color: #f6f9f2;
  border-radius: 30px 44px 29px 33px/34px 41px 27px 31px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(25,68,40,0.14);
  margin: 16px 0;
}
.cta-banner h2 { color: #f6f9f2; margin-bottom: 8px; }
.cta-banner p { color: #fff; }
.cta-banner .cta-btn {
  background: #E3862B;
  margin-left: 0;
}
.cta-banner .cta-btn:hover {
  background: #B35A00;
}
@media (max-width: 700px) {
  .cta-banner { padding: 18px 10px; }
}

/* ==================================
   ADDRESS & CONTACT DETAILS
   ================================== */
.address-details, .footer-contact, .text-section {
  background: #F6F9F2;
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 18px;
  color: #194428;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .address-details, .footer-contact, .text-section {
    padding: 9px 5px;
    margin-bottom: 10px;
  }
}


/* ==================================
   FOOTER
   ================================== */
footer {
  background: #25603A;
  color: #F6F9F2;
  padding: 36px 0 22px 0;
  box-shadow: 0 -2px 21px rgba(25,68,40,0.07);
  border-radius: 40px 40px 0 0/21px 34px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo img {
  height: 50px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 175px;
}
.footer-nav a {
  color: #F6F9F2;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E3862B;
}
.footer-contact {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ==========================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ========================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4000;
  background: #25603A;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 26px 16px;
  box-shadow: 0 -4px 26px rgba(25,68,40,0.23);
  gap: 16px;
  font-size: 1rem;
}
.cookie-banner p {
  color: #F6F9F2;
  margin-right: 24px;
  margin-bottom: 0;
  line-height: 1.5;
  flex: 1 1 220px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: 0;
  border-radius: 22px 30px 18px 26px/26px 18px 24px 20px;
  padding: 13px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color .13s, transform .15s;
}
.cookie-btn.accept {
  background: #E3862B;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #B35A00;
  border: 1.5px solid #B35A00;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #B35A00;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #eee1d0;
}
.cookie-settings-btn {
  background: #25603A;
  color: #fff;
  border: 1px solid #E3862B;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E3862B;
  color: #fff;
}

/* Modal Overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,68,40,0.19);
  z-index: 4100;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #25603A;
  border-radius: 32px 44px 25px 19px/31px 27px 32px 28px;
  box-shadow: 0 18px 48px rgba(25,68,40,0.23);
  padding: 34px 32px 28px 32px;
  min-width: 312px;
  max-width: 90vw;
  max-height: 92vh;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-modal-in 0.27s cubic-bezier(.79,0,.26,1);
}
@keyframes cookie-modal-in {
  from { transform: translateY(90px) scale(0.91); opacity:0; }
  to { transform: none; opacity:1; }
}
.cookie-modal h2 {
  margin: 0 0 8px 0;
  color: #194428;
  font-size: 1.39rem;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 20px; right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #B35A00;
  cursor: pointer;
  z-index: 4120;
  transition: color 0.2s;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.03rem;
  color: #194428;
  margin-bottom: 0;
}
.cookie-toggle {
  width: 38px; height: 21px;
  background: #E3862B;
  border-radius: 13px;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  vertical-align: middle;
}
.cookie-toggle[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-toggle:checked {
  background: #25603A;
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle:checked::before {
  left: 20px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 11px 21px;
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 0;
    padding: 14px 6px 9px 6px;
  }
}

/* ==========================================
   LEGAL-STYLE CARDS
   ========================================== */
.legal {
  background: #F6F9F2;
  border-radius: 14px;
  padding: 20px 24px;
  font-size: 1rem;
  color: #194428;
  margin-bottom: 14px;
}
.legal ul {
  margin-left: 1.3em;
}
.legal li {
  margin-bottom: 8px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-section {
  background: #F6F9F2;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #194428;
}
@media (max-width: 700px) {
  .text-section {
    padding: 8px;
  }
}
ul, ol {
  padding-left: 1.3em;
}

/* Margin / Gap Utilities */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 14px !important; }
.mb-3 { margin-bottom: 20px !important; }
.mb-4 { margin-bottom: 32px !important; }

/* ==========================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================== */
button, .cta-btn, .card, .testimonial-card, .feature-grid > div, .services-list > div {
  transition: box-shadow 0.18s, background 0.16s, color 0.14s, transform 0.17s;
}

/* ==========================================
   ORGANIC/NATURE SHAPES (DECORATIVE)
   ========================================== */
/* Examples: add to design as classes if needed; kept minimal for compatibility */
.organic-deco1 {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  left: -28px;
  bottom: -35px;
  width: 70px; height: 70px;
  background: #E3862B;
  opacity: 0.09;
  border-radius: 60% 40% 70% 30%/55% 40% 50% 50%;
}
.organic-deco2 {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  right: -38px;
  top: -40px;
  width: 51px; height: 61px;
  background: #25603A;
  opacity: 0.12;
  border-radius: 60% 40% 70% 30%/55% 40% 50% 50%;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1100px) {
  .feature-grid, .services-list, .service-cards, .idea-highlights, .project-summaries, .card-container, .content-grid {
    gap: 13px;
  }
}
@media (max-width: 800px) {
  .feature-grid, .services-list, .service-cards, .idea-highlights, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid > div, .services-list > div, .service-cards > div, .card {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .content-wrapper {
    gap: 10px;
  }
  h1, .hero h1 {font-size: 1.1rem;}
  h2 {font-size: 1rem;}
}

/* =================COMPATIBILITY HINTS=========================
   - All containers use only Flexbox (display: flex, flex-wrap, gap, align-items)
   - No grid/columns used anywhere
   - Spacings ensured via margin/gap/padding as per the specification
*/