/* RESET & BASIC TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #1A2327;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #326B52;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #1A2327;
  text-decoration: underline;
}
strong {
  font-weight: 600;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.22;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
}
p, .editor-intro {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.editor-intro {
  color: #326B52;
  background: #f7fbf6;
  border-left: 3px solid #326B52;
  padding: 12px 16px;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(50, 107, 82, 0.06);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 28px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A2327;
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #E7F5E5;
  color: #326B52;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #326B52;
  color: #fff;
  border: none;
  outline: none;
  padding: 11px 28px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(50, 107, 82, 0.07);
  transition: background 0.22s, box-shadow 0.18s, color 0.16s;
  display: inline-block;
  margin-left: 12px;
  letter-spacing: 0.03em;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1a2327;
  color: #E7F5E5;
  box-shadow: 0 6px 22px rgba(50,107,82,0.12);
}
header img {
  height: 38px;
  width: auto;
  margin-right: 18px;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #326B52;
  padding: 8px 10px;
  cursor: pointer;
  margin-left: 10px;
  z-index: 100;
  transition: color 0.14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #1A2327;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  box-shadow: -4px 0 32px rgba(50,107,82,0.10);
  padding: 0 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open { /* controlled by JS */
  transform: translateX(0%);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1A2327;
  padding: 18px 6px 12px 6px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #326B52;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #1A2327;
  padding: 14px 0;
  border-bottom: 1px solid #E7F5E5;
  transition: color 0.17s, background 0.14s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7F5E5;
  color: #326B52;
  border-radius: 5px;
}

/* HERO SECTION */
.hero-section {
  background: #E7F5E5;
  padding: 62px 0 54px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px rgba(50, 107, 82, 0.06);
}
.hero-section .container {
  align-items: flex-start;
}
.hero-section h1 {
  color: #326B52;
  font-family: 'Montserrat', Arial, sans-serif;
  max-width: 660px;
}
.hero-section p {
  max-width: 560px;
}
.hero-section .cta-btn {
  margin-top: 22px;
}

/* FEATURES SECTION */
.features-section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 22px 0;
}
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: flex-start;
}
.feature-card {
  background: #fafbfa;
  border: 1px solid #E7F5E5;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(50, 107, 82, 0.05);
  padding: 34px 24px 28px 24px;
  flex: 1 1 210px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.feature-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
}
.feature-card h3 {
  font-size: 1.04rem;
  color: #326B52;
}
.feature-card p {
  font-size: 1rem;
  color: #1A2327;
  margin-bottom: 0;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 6px 28px rgba(50,107,82,0.10);
  transform: translateY(-2px) scale(1.025);
}

/* GENERIC FLEXBOX SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(26,35,39,0.05);
  padding: 28px 22px;
  flex: 1 1 230px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid #E7F5E5;
  box-shadow: 0 2px 8px rgba(50,107,82,0.06);
  border-radius: 10px;
  max-width: 520px;
  font-size: 1.06rem;
  color: #1A2327;
  transition: box-shadow 0.18s;
}
.testimonial-card span {
  color: #326B52;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  color: #1A2327;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 26px rgba(50,107,82,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CARDS, SERVICES, BLOG */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.service-card {
  background: #fafbfa;
  border: 1px solid #E7F5E5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(50, 107, 82, 0.05);
  padding: 32px 24px;
  flex: 1 1 210px;
  max-width: 258px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-card img {
  width: 34px;
  height: 34px;
}
.service-card h2 {
  font-size: 1.1rem;
  color: #326B52;
  margin-bottom: 8px;
}
.service-card .price {
  margin-top: 6px;
  font-weight: 600;
  color: #326B52;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 28px rgba(50,107,82,0.11);
  transform: scale(1.02);
}
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.post-preview {
  background: #fafbfa;
  border: 1px solid #E7F5E5;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(50, 107, 82, 0.05);
  flex: 1 1 290px;
  max-width: 335px;
  padding: 30px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.post-preview h3 {
  font-size: 1.13rem;
  color: #326B52;
  margin-bottom: 8px;
}
.post-preview p {
  font-size: 1rem;
}
.post-preview:hover, .post-preview:focus-within {
  box-shadow: 0 7px 22px rgba(50,107,82, 0.11);
  transform: translateY(-2px) scale(1.028);
}
.success-story {
  background: #f7fbf6;
  border: 1px solid #E7F5E5;
  border-radius: 9px;
  padding: 22px 20px 16px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.success-story h3 {
  font-size: 1.075rem;
  color: #326B52;
}

/* CTA BANNER SECTION */
.cta-banner-section {
  background: #326B52;
  color: #fff;
  padding: 52px 0 44px;
  margin-bottom: 0;
}
.cta-banner-section h2,
.cta-banner-section p {
  color: #fff;
}
.cta-banner-section .cta-btn {
  background: #fff;
  color: #326B52;
  margin-top: 22px;
}
.cta-banner-section .cta-btn:hover {
  background: #E7F5E5;
  color: #1A2327;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 38px;
  background: #fafbfa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(50,107,82,0.04);
}
.pricing-table thead {
  background: #E7F5E5;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  color: #326B52;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.pricing-table tr {
  border-bottom: 1px solid #E7F5E5;
}
.pricing-table tr:last-child {
  border-bottom: none;
}

/* CONTACT BLOCKS */
.contact-details {
  font-size: 1.03rem;
  background: #f7fbf6;
  border-radius: 7px;
  padding: 16px 20px;
  margin-bottom: 18px;
}
.google-map {
  background: #E7F5E5;
  color: #326B52;
  border-radius: 7px;
  padding: 18px 14px;
  margin-bottom: 20px;
}

/* CATEGORIES FILTER */
.categories-filter {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #326B52;
  display: flex;
  align-items: center;
  gap: 10px;
}
.categories-filter a {
  color: #1A2327;
  padding: 3px 9px;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
  margin: 0 3px;
}
.categories-filter a:hover,
.categories-filter a:focus {
  background: #E7F5E5;
  color: #326B52;
}

/* FOOTER */
footer {
  background: #fafbfa;
  border-top: 1px solid #E7F5E5;
  padding: 38px 0 34px;
  box-shadow: 0 -2px 10px rgba(50,107,82,0.04);
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  font-size: 1rem;
  color: #326B52;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #1A2327;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
  color: #1A2327;
}
.footer-contact a {
  color: #326B52;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-contact a:hover {
  color: #1A2327;
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid #E7F5E5;
  box-shadow: 0 -3px 16px rgba(50,107,82,0.06);
  padding: 24px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.47,1.64,.41,.8);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-btn {
  background: #326B52;
  color: #fff;
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-btn--secondary {
  background: #E7F5E5;
  color: #326B52;
}
.cookie-btn--secondary:hover {
  background: #326B52;
  color: #fff;
}
.cookie-btn--settings {
  background: transparent;
  color: #1A2327;
  border: 1px solid #E7F5E5;
  padding: 10px 18px;
}
.cookie-btn--settings:hover {
  border-color: #326B52;
  background: #E7F5E5;
  color: #326B52;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 10001;
  background: rgba(50,107,82,0.11);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.32s;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(50,107,82,0.17);
  max-width: 420px;
  width: 96%;
  padding: 32px 23px 20px 23px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 10002;
  animation: modalIn 0.38s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes modalIn {
  0% { transform: translateY(80px) scale(0.98); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #326B52;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 9px;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #326B52;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 22px;
}

/* Accessibility for Modal */
.cookie-modal [role=button],
.cookie-modal button {
  cursor: pointer;
}

/* MISC */
.section, main section {
  background: #fff;
  border-radius: 11px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 10px rgba(26,35,39,0.03);
}
main section:last-child {
  margin-bottom: 0;
}

/* SPACING AND FLEX GAP */
.section, .about-short-section, .features-section, .testimonials-preview-section, .cta-banner-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .service-list, .blog-posts, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  margin-bottom: 20px;
}
.text-image-section, .feature-item {
  gap: 15px;
}

/* SUCCESS STORY DISTINCTIVE COLOR */
.success-story {
  color: #1A2327;
  background: #E7F5E5;
  border: 1px solid #fafbfa;
}

/* RESPONSIVE: MOBILE-FIRST */
@media (max-width: 980px) {
  .container { max-width: 100%; }
  .features-section .feature-grid, .service-list, .blog-posts, .card-container {
    justify-content: center;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .container { padding-left: 9px; padding-right: 9px; }
  .features-section .feature-grid, .service-list, .blog-posts, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  main section, .section, .about-short-section, .features-section, .testimonials-preview-section, .cta-banner-section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .testimonial-card, .feature-card, .service-card, .post-preview {
    max-width: 100%;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .cta-banner-section {
    padding: 34px 6px 24px;
    margin-bottom: 0;
  }
  /* Collapse nav and show burger */
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  /* Footer stack */
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
 }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .pricing-table th, .pricing-table td {
    padding: 8px 4px;
    font-size: 0.92rem;
  }
}

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

/* HELPER CLASSES */
.hide-visually { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* TRANSITIONS AND MICRO-INTERACTIONS */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.14s, box-shadow 0.12s, transform 0.19s;
}
.testimonial-card, .feature-card, .service-card, .post-preview {
  transition: box-shadow 0.17s, transform 0.15s, border 0.14s;
}

/* REMOVE GRID, COLUMNS, and ABSOLUTE for content */
/* No forbidden properties used */

/* END */