/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F7F7F2; /* very light natural beige */
  font-family: 'Roboto', Arial, sans-serif;
  color: #233C25;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}
ul, ol {
  list-style: none;
}
a {
  color: #225C38;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #395C37;
  text-decoration: underline;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #224322;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #213666;
}
small {
  font-size: 0.92em;
  color: #7E8069;
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 20px 0 rgba(45,60,44,0.08);
  position: relative;
}

.section { 
  margin-bottom: 60px; 
  padding: 40px 20px; 
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #ECF3E6;
  box-shadow: 0 2px 8px 0 rgba(66, 81, 54, 0.06);
  min-width: 240px;
  max-width: 400px;
}
.testimonial-card p {
  color: #2C3525;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NATURE ORGANIC THEME */
:root {
  --color-primary: #213666;
  --color-secondary: #B9D5C7;
  --color-accent: #F5F5F5;
  --color-green: #5CA86B;
  --color-earth: #ECEAD9;
  --color-forest: #224322;
  --color-brown: #A47E59;
  --color-warning: #B58932;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--color-accent);
  color: #233C25;
}

header {
  background: #fff;
  box-shadow: 0 1px 12px 0 rgba(87, 120, 97, 0.07);
  padding: 0;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 20px 15px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 6px 10px;
  color: #224322;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #EBF5ED;
  color: var(--color-green);
}
header a.btn {
  margin-left: 14px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(115deg, #ECF3E6 60%, #B9D5C7 100%);
  border-radius: 30px;
  margin-top: 24px;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 40px 0 10px 0;
  margin-bottom: 0;
}
.hero h1 {
  color: var(--color-forest);
  margin-bottom: 16px;
  font-size: 2.25rem;
}
.hero p {
  font-size: 1.15rem;
  color: #334F33;
  margin-bottom: 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  background: var(--color-green);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px 0 rgba(92, 168, 107, 0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  letter-spacing: 0.02em;
  margin: 8px 0 0 0;
  outline: none;
}
.btn.primary {
  background: var(--color-green);
}
.btn.primary:hover,
.btn.primary:focus {
  background: #49825B;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(66, 100, 54, 0.15);
}
.btn.secondary {
  background: #B9D5C7;
  color: #224322;
}
.btn.secondary:hover,
.btn.secondary:focus {
  background: #A4C1B2;
  color: #224322;
  box-shadow: 0 2px 10px 0 rgba(92,168,107, 0.07);
}

/* SERVICE CARDS & LISTS */
.service-cards,
.case-study-cards,
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .case-study-card, .tips-list article {
  background: #ECF3E6;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(92,168,107,0.06);
  padding: 24px 20px 20px 20px;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid #B9D5C7;
}
.service-card:hover, .case-study-card:hover, .tips-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px 0 rgba(92,168,107,0.18);
}
.service-card h3, .case-study-card h3, .tips-list h3 {
  margin-bottom: 10px;
}
.service-price {
  color: #395C37;
  font-weight: 700;
  font-family: var(--font-display);
}

/* FEATURE GRID / VALUE ICONS */
.feature-grid, .value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 12px;
}
.feature-grid li, .value-icon {
  background: #FFF;
  border-radius: 16px;
  padding: 24px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 200px;
  max-width: 330px;
  flex: 1 1 200px;
  box-shadow: 0 2px 8px 0 rgba(66,81,54,0.05);
  border: 1.5px solid #EBF5ED;
  margin-bottom: 20px;
  transition: box-shadow .21s, transform .21s;
}
.feature-grid li:hover, .value-icon:hover {
  box-shadow: 0 8px 20px 0 rgba(66,100,54,0.08);
  transform: translateY(-3px);
}
.feature-grid img, .value-icon img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
}

/* TESTIMONIAL SLIDER & LISTS */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.step {
  background: #FFF;
  border-radius: 16px;
  border: 1.5px solid #EBF5ED;
  box-shadow: 0 2px 6px 0 rgba(92,168,107,0.07);
  padding: 20px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
}
.step:hover {
  box-shadow: 0 8px 24px 0 rgba(92,168,107,0.13);
  transform: translateY(-2px);
}

/* PRICING TABLES */
.pricing-table {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(146,160,107,0.07);
  overflow: hidden;
  border: 1.5px solid #B9D5C7;
  background: #F9FAF7;
  font-size: 1rem;
}
.pricing-table thead {
  background: #ECF3E6;
}
.pricing-table th, .pricing-table td {
  padding: 16px 10px;
  text-align: left;
}
.pricing-table tr {
  border-bottom: 1px solid #ECEAD9;
}
.pricing-table tbody tr:hover {
  background: #ECF3E6;
}

.disclaimer-text {
  margin-top: 18px;
  background: #ffffff;
  border-left: 7px solid #B9D5C7;
  border-radius: 0 18px 18px 0;
  padding: 14px 22px;
  color: #6A614E;
  font-size: 1.01rem;
}

/* GENERAL LISTS, TIPS AND TEXT SECTIONS */
.text-section {
  margin-bottom: 18px;
}
.featured-tips li {
  margin-bottom: 10px;
  color: #43604A;
  font-size: 1.08em;
  padding-left: 5px;
}
.newsletter-section {
  background: #ECF3E6;
  border: 1.5px solid #B9D5C7;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(92,168,107,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-details {
  list-style: none;
  margin-bottom: 16px;
}
.contact-details li {
  margin-bottom: 7px;
  font-size: 1.06em;
  color: #213666;
}

/* FOOTER */
footer {
  background: #F5F1E4;
  margin-top: 60px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 6px 0 rgba(146,160,107,0.035);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 20px 24px 20px;
  text-align: center;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  color: #224322;
  background: #ECF3E6;
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover {
  background: #B9D5C7;
  color: #213666;
}
footer img {
  width: 64px;
  height: auto;
  margin-bottom: 10px;
}
footer p,
footer small {
  color: #6A614E;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    font-size: 2rem;
    background: none;
    border: none;
    color: #213666;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: color .18s;
    z-index: 1001;
    width: 42px;
    height: 42px;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 60, 37, 0.82);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, pointer-events 0.25s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .mobile-menu-close {
  background: #fff;
  border: none;
  color: #213666;
  font-size: 2.5rem;
  margin: 28px 36px 18px 0;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  box-shadow: 0 2px 12px 0 rgba(67,96,74,0.13);
  z-index: 1310;
}
.mobile-menu .mobile-menu-close:hover {
  background: #ECF3E6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 26px;
  width: 100%;
  max-width: 310px;
  margin-right: 40px;
  margin-top: 16px;
  background: #fff;
  border-radius: 24px 0 0 24px;
  padding: 38px 40px 38px 28px;
  box-shadow: 0 0 20px 0 rgba(35,60,37,0.12);
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.65,.03,.29,.98);
  min-height: 300px;
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: #224322;
  background: #ECF3E6;
  margin: 0;
  padding: 11px 14px;
  border-radius: 12px;
  width: 100%;
  display: block;
  text-align: right;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B9D5C7;
  color: #213666;
}

/* COOKIE BANNER & COOKIE MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#ECF3E6 80%,#B9D5C7 100%);
  color: #233C25;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 -2px 12px 0 rgba(35,60,37,0.07);
  z-index: 2000;
  padding: 26px 16px 26px 18px;
  border-radius: 18px 18px 0 0;
  font-size: 1.02rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s, opacity 0.36s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.cookie-banner .btn {
  padding: 10px 26px;
  font-size: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(35,60,37,0.09);
}
.cookie-banner .btn.accept {
  background: #5CA86B;
  color: #fff;
}
.cookie-banner .btn.accept:hover,
.cookie-banner .btn.accept:focus {
  background: #49825B;
}
.cookie-banner .btn.reject {
  background: #A47E59;
  color: #fff;
}
.cookie-banner .btn.reject:hover,
.cookie-banner .btn.reject:focus {
  background: #866542;
}
.cookie-banner .btn.settings {
  background: #B9D5C7;
  color: #224322;
}
.cookie-banner .btn.settings:hover,
.cookie-banner .btn.settings:focus {
  background: #A4C1B2;
  color: #233C25;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,60,37,0.83);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(134,180,123,.13);
  padding: 40px 32px 32px 32px;
  max-width: 410px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 12px;
  font-size: 1.38rem;
  color: #224322;
}
.cookie-modal-content .category-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content .category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ECF3E6;
}
.cookie-modal-content .category label {
  font-weight: 600;
  color: #213666;
}
.cookie-modal-content .category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #5CA86B;
}
.cookie-modal-content .category .always-on {
  color: #6A614E;
  font-size: 0.99em;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #ECF3E6;
  border: none;
  color: #213666;
  font-size: 1.65rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: #B9D5C7;
}
.cookie-modal-content .modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .feature-grid,
  .value-icons,
  .service-cards,
  .process-steps,
  .tips-list,
  .testimonial-list,
  .testimonial-slider,
  .case-study-cards {
    gap: 14px;
  }
  .content-wrapper {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .content-wrapper, .section {
    padding: 22px 3vw 22px 3vw;
    margin-bottom: 30px;
    border-radius: 14px;
  }
  .feature-grid, .service-cards, .case-study-cards,
  .value-icons, .tips-list, .testimonial-slider, .testimonial-list, .process-steps {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-card, .case-study-card, .value-icon, .tips-list article, .step {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .newsletter-section {
    padding: 16px 6px;
    border-radius: 10px;
  }
  header .container {
    gap: 14px;
    padding: 14px 10px 9px 10px;
  }
  .mobile-nav {
    margin: 0;
    max-width: 100vw;
    border-radius: 0;
    padding: 26px 7vw 26px 5vw;
    min-height: 220px;
  }
  .mobile-menu .mobile-menu-close {
    margin: 18px 16px 10px 0;
    font-size: 2rem;
    width: 40px; height: 40px;
  }
  .cookie-banner {
    padding: 16px 6vw 16px 5vw;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 14px;
    min-width: 0;
    max-width: 100vw;
    border-radius: 12px;
  }
  .cookie-modal-content {
    padding: 24px 10px 16px 10px;
    border-radius: 12px;
    min-width: 0;
    max-width: 95vw;
  }
  footer {
    border-radius: 12px 12px 0 0;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
}

/* MICRO-INTERACTIONS */
.btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner .btn, .cookie-modal-close {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, transform 0.13s;
}
.btn:active {
  transform: scale(0.97);
}
.service-card:active, .case-study-card:active, .tips-list article:active {
  transform: scale(0.98);
}
.feature-grid li:active, .value-icon:active {
  transform: scale(0.98);
}

/* SCROLLBAR IMPROVEMENTS for nature/organic theme */
::-webkit-scrollbar {
  width: 11px;
  background: #ECEAD9;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #B9D5C7;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5CA86B;
}

/* PREVENT OVERLAPPING, SPACING */
main > section, .section {
  margin-bottom: 60px!important;
  min-height: 1px;
}
.card, .service-card, .case-study-card, .tips-list article, .feature-grid li, .value-icon, .step, .testimonial-card {
  margin-bottom: 20px!important;
}
.card-container, .content-grid, .feature-grid, .service-cards, .testimonial-slider, .testimonial-list, .value-icons, .process-steps, .tips-list, .case-study-cards {
  gap: 20px;
  margin-bottom: 20px;
}

/* FORM ELEMENTS */
input, textarea, select {
  border: 1.5px solid #B9D5C7;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 18px;
  outline: none;
  background: #F7F7F2;
  color: #254A23;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #5CA86B;
  background: #ECF3E6;
}

/****** ACCESSIBILITY, CONTRAST ENSURED ******/
.testimonial-card {
  background: #ECF3E6;
  color: #213666;
}
.testimonial-card p {
  color: #2C3525;
}

/****** HIDE OVERLAY, NO GRID, FLEXBOX ONLY ******/
/* no usage of any display: grid, columns, or absolute positioning except for decorative elements */

/* Decorative Shape (You can add such in <div class="organic-shape"></div> as desired for organic element) */
.organic-shape {
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 130px;
  background: #ECF3E6;
  filter: blur(24px);
  opacity: .19;
  border-radius: 55% 45% 66% 34% / 45% 55% 45% 55%;
  left: -110px;
  top: 80px;
}

/******* PRINT FRIENDLY ******/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .content-wrapper { box-shadow: none !important; }
}
