/* CSS Reset & Normalize */
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F8F7F2;
  color: #24344D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
a {
  color: #368366;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4FA485;
  outline: none;
}
ul, ol {
  margin: 0 0 2rem 2rem;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 0.5em;
}
strong, b {
  font-weight: bold;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Brand Colors and Variables */
:root {
  --primary: #24344D;
  --secondary: #FFFFFF;
  --accent: #368366;
  --accentLight: #4FA485;
  --earth: #B6B29E;
  --natural-bg: #F8F7F2;
  --sand: #E9F1F7;
  --text: #24344D;
  --darkGreen: #223F2B;
  --softShadow: rgba(55, 61, 45, 0.07);
  --radius: 18px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.17;
  color: var(--text);
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.12rem;
  margin-bottom: 16px;
  color: var(--accent);
}
@media (min-width:480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.2rem; }
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.4rem; }
}
p, ul, ol {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 3px 16px var(--softShadow);
}

/* Organic Patterns and Nature Shapes */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: var(--radius);
  background: var(--natural-bg);
  position: relative;
  overflow: hidden;
}
section.hero {
  background: linear-gradient(100deg, #E9F1F7 60%, #B6B29E 120%);
  min-height: 340px;
  border-radius: 0 0 60px 0/0 0 90px 0;
  padding-top: 55px;
  box-shadow: none;
}

/* Headers and Navigation */
header {
  background: var(--secondary);
  box-shadow: 0 2px 16px var(--softShadow);
  min-height: 64px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 7px 12px;
  border-radius: 13px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accentLight);
  color: var(--secondary);
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 30px;
  border-radius: 24px 32px 20px 28px / 30px 24px 30px 36px;
  margin-left: 16px;
  box-shadow: 0 2px 10px var(--softShadow);
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--accentLight);
  box-shadow: 0 4px 20px var(--softShadow);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  background: var(--sand);
  border-radius: 60px;
  width: 48px;
  height: 48px;
  border: none;
  transition: background 0.14s;
  margin-left: 12px;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--earth);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:rgba(36, 52, 77, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 28px 20px 28px;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.99,-0.03,.47,.99);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 34px rgba(0,0,0,0.18);
}
.mobile-menu-close {
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 28px;
  top: 22px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accentLight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 17px 10px;
  border-radius: 18px;
  background: transparent;
  transition: background 0.26s, color 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accentLight);
  background: var(--sand);
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .main-nav {
    display: flex;
  }
}

/* Hero Section */
.hero .container {
  padding-top: 30px;
  padding-bottom: 35px;
}
.hero h1 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.hero p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--primary);
}

/* Features Grid - only FLEXBOX! */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary);
  border-radius: 30px 28px 20px 36px/32px 34px 20px 28px;
  padding: 28px 24px 26px 24px;
  box-shadow: 0 4px 18px var(--softShadow);
  min-width: 200px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}
.feature-item h3 {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 1.16rem;
}

/* Card Container/Grids - only FLEX! */
.card-container, .card-grid, .pricing-options-grid, .blog-cards, .reference-slider, .service-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .blog-card, .pricing-plan, .service-category-block, .reference-card {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--softShadow);
  margin-bottom: 20px;
  padding: 32px 28px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 99vw;
  transition: box-shadow 0.2s, transform 0.17s;
  position: relative;
}
.card:hover, .blog-card:hover, .pricing-plan:hover, .service-category-block:hover, .reference-card:hover {
  box-shadow: 0 8px 30px var(--softShadow);
  transform: translateY(-4px) scale(1.02);
}

/* Testimonials */
.testimonials, .testimonial-card {
  background: transparent;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 32px 36px 22px 30px;
  box-shadow: 0 4px 20px var(--softShadow);
  padding: 20px 28px;
  margin-bottom: 24px;
  color: #24344D;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--accent);
  margin-top: 4px;
  font-weight: 700;
  font-style: normal;
}
.testimonials h2 {
  margin-bottom: 18px;
}

/* Text and Image Flex */
.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: 16px;
  }
}

/* List Styles */
.service-list, .extra-services-list, .category-filter {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.service-list li, .extra-services-list li, .category-filter li {
  background: var(--sand);
  padding: 10px 20px;
  border-radius: 22px 20px 24px 16px;
  color: var(--primary);
  font-weight: 500;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: background 0.16s;
}
.category-filter li {
  background: var(--earth);
  color: var(--accent);
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.faq-item {
  background: var(--secondary);
  border: 1px solid #E0DFD8;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px var(--softShadow);
  transition: box-shadow 0.18s, border-color 0.14s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--accent);
}
.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 20px var(--softShadow);
}

/* Cards for Blog, Pricing, References, Services */
.pricing-options-grid {
  gap: 24px;
  margin-bottom: 30px;
}
.pricing-plan {
  text-align: left;
}
.pricing-plan ul {
  margin-top: 12px;
}
.reference-slider {
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--earth) var(--sand);
}
.reference-card {
  min-width: 260px;
  max-width: 340px;
}
.blog-cards {
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 600;
  padding-left: 2px;
}
.blog-card a:hover,
.blog-card a:focus {
  color: var(--accentLight);
}

/* Map Snippet */
.map-snippet {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  background: var(--sand);
  border-radius: 22px 20px 24px 16px;
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--primary);
}

/* Newsletter/Category/Extra sections */
.category-filter {
  margin-top: 12px;
}

/* Footer Styles */
footer {
  background: var(--primary);
  color: #fff;
  padding-top: 44px;
  padding-bottom: 0;
  margin-top: 80px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: space-between;
  padding-bottom: 38px;
  border-bottom: 1px solid #E9F1F7;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-nav a, .footer-legal a {
  color: #E9F1F7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  padding: 2px 0;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus, .footer-legal a:hover, .footer-legal a:focus {
  color: var(--accentLight);
}
.footer-contact {
  min-width: 240px;
}
.footer-contact h3 {
  color: var(--accent);
  margin-bottom: 8px;
}
.footer-contact ul {
  margin: 2px 0 0 0;
  padding: 0;
  list-style: none;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  color: #E9F1F7;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}
.footer-bottom {
  text-align: center;
  margin-top: 34px;
  padding-bottom: 24px;
  color: #B6B29E;
  font-size: 0.92rem;
}

/* Responsive Adjustments */
@media (max-width: 1050px){
  .footer-main {
    flex-direction: column;
    gap: 34px;
    align-items: flex-start;
  }
}
@media (max-width: 900px){
  .card-container, .card-grid, .pricing-options-grid, .blog-cards, .reference-slider, .service-category-grid, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .header-inner{
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
  }
  section, .section{
    padding: 32px 5px;
    margin-bottom: 42px;
    border-radius: 22px;
  }
  .footer-main{
    flex-direction: column;
    gap: 24px;
  }
  .card, .blog-card, .pricing-plan, .service-category-block, .reference-card {
    min-width: unset;
    max-width: 100vw;
    padding: 22px 10px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.03rem; }
  .hero { padding-top: 40px; }
}
@media (max-width: 600px){
  .content-wrapper {
    gap: 13px;
  }
  .faq-item, .testimonial-card {
    padding: 12px 8px;
  }
  .map-snippet {
    flex-direction: column;
    gap: 4px;
    padding: 8px 7px;
  }
}

/* Transitions, Animations, Micro-Interactions */
.card, .cta-btn, .main-nav a, .mobile-menu-toggle, .footer-nav a, .footer-legal a, .feature-item, .blog-card, .service-category-block, .pricing-plan {
  transition: box-shadow 0.21s, background 0.17s, color 0.13s, transform 0.13s;
}
.faq-item, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.14s, background 0.22s;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--earth);
  color: var(--primary);
  box-shadow: 0 -2px 18px var(--softShadow);
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: cookie-slide-in 0.5s;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0;}
  to { transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 18px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.17s;
  min-width: 40px;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: var(--accentLight);
  color: #fff;
}
.cookie-consent-banner .cookie-settings {
  background: var(--primary);
  color: #fff;
}
.cookie-consent-banner .cookie-settings:hover {
  background: var(--accentLight);
  color: #fff;
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left:0; top:0; bottom:0; right:0;
  background: rgba(36,52,77,0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 4px 40px var(--softShadow);
  max-width: 410px;
  width: 96%;
  padding: 34px 22px 22px 22px;
  position: relative;
  animation: modal-in 0.32s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modal-in {
  from { transform: translateY(80px); opacity: 0;} 
  to { transform: translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.38rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 7px 16px;
  border: none;
  background: var(--accent);
  color: #fff;
  transition: background 0.14s;
  min-width: 90px;
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: var(--accentLight);
}
.cookie-modal .close-modal-btn {
  position: absolute;
  right: 15px;
  top: 11px;
  font-size: 1.3rem;
  background: var(--earth);
  color: var(--primary);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.19s;
}
.cookie-modal .close-modal-btn:hover,
.cookie-modal .close-modal-btn:focus {
  background: var(--accentLight);
  color: #fff;
}

/* Utilities and Accessibility */
.sr-only { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  border: 0; 
}

/* Spacing/Alignment Patterns */
.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;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Ensuring Minimum Spacing for Cards/Sections */
.section, section, .card, .testimonial-card, .faq-item, .feature-item, .pricing-plan, .service-category-block, .blog-card, .reference-card {
  margin-bottom: 24px;
}
@media (max-width: 768px){
  .section, section {
    margin-bottom: 32px;
    padding: 22px 6px;
  }
}

/* Remove grid/column CSS - only flex! */
/* No forbidden grid/column properties used anywhere! */
