/* --- CSS RESET & BASE STYLES --- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2E3922;
  background-color: #F3F6FB;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #346642;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23406F;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 20px;
}

button, input, select, textarea {
  font: inherit;
  border-radius: 8px;
  outline: none;
}

/* --- FONT FAMILIES --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  color: #23406F;
}

/* --- COLOR PALETTE (EARTH TONES + BRAND) --- */
:root {
  --brand-primary: #23406F;
  --brand-secondary: #82B1FF;
  --brand-accent: #F3F6FB;
  --nature-green: #3C6338;
  --nature-olive: #7C9152;
  --nature-clay: #C9AD94;
  --nature-tan: #EFEAE3;
  --nature-dark: #2E3922;
  --nature-shadow: rgba(60, 99, 56, 0.10);
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #EFEAE3;
  border-radius: 32px 48px 28px 40px/40px 32px 48px 28px;
  box-shadow: 0 3px 20px var(--nature-shadow);
  overflow: hidden;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    border-radius: 18px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* --- TYPOGRAPHY --- */
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--nature-green);
}
h3 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.text-section h2,
.text-section h3,
.text-section h4 {
  margin-top: 18px;
}
p {
  font-size: 1rem;
  color: var(--nature-dark);
  margin-bottom: 12px;
}

strong, b {
  color: var(--brand-primary);
}

/**** FLEXBOX LAYOUT UTILITIES ****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px 24px 14px 22px/22px 18px 24px 14px;
  box-shadow: 0 2px 12px var(--nature-shadow);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.20s;
}
.card:hover {
  box-shadow: 0 4px 32px var(--nature-shadow);
  transform: translateY(-4px) scale(1.022);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/**** NAVIGATION & HEADER ****/
header {
  background: #fff;
  box-shadow: 0 2px 16px var(--nature-shadow);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 18px;
}
header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--nature-green);
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: #fff;
  background: var(--nature-green);
  text-decoration: none;
}

.cta.primary, a.cta.primary {
  background: var(--nature-green);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px 24px 14px 22px/22px 18px 24px 14px;
  padding: 13px 32px;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 12px var(--nature-shadow);
  margin-left: 20px;
  transition: background 0.14s, box-shadow 0.19s, transform 0.16s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 5px 16px var(--nature-shadow);
  transform: translateY(-2px) scale(1.04);
}
.cta, a.cta {
  background: #fff;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
  border-radius: 12px 22px 12px 22px/22px 12px 22px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
  font-weight: bold;
  box-shadow: 0 2px 8px var(--nature-shadow);
  display: inline-block;
}
.cta:hover, .cta:focus {
  color: #fff;
  background: var(--nature-green);
  border-color: var(--nature-green);
  box-shadow: 0 4px 18px var(--nature-shadow);
}

@media (max-width: 1000px) {
  header nav ul {
    gap: 13px;
  }
  .cta.primary {
    padding: 10px 19px;
    margin-left: 10px;
  }
}

@media (max-width: 900px) {
  header nav ul {
    gap: 7px;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 9px 11px;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1100;
  display: none;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--nature-shadow);
  transition: background 0.16s, transform 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--nature-green);
  transform: scale(1.10);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 252, 248, 0.99);
  box-shadow: 0 10px 40px rgba(44, 63, 19, 0.22);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.79,0.14,0.15,0.86);
  pointer-events: none;
  opacity: 0.995;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--nature-green);
  font-size: 2.2rem;
  border: none;
  margin: 25px 28px 10px 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 1250;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 88vw;
  margin: 0 auto;
  margin-top: 24px;
  align-items: flex-start;
  padding: 0 12px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--nature-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid #D8E9D3;
  width: 100%;
  display: block;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--nature-green);
}
@media (max-width: 950px) {
  header nav ul,
  header nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- FOOTER --- */
footer {
  background: #23406F;
  padding-top: 36px;
  padding-bottom: 24px;
  color: #fff;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.footer-inner a,
.footer-inner nav a {
  color: #fff;
  margin-right: 18px;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-inner nav a:hover,
.footer-inner nav a:focus {
  color: #B5FFCC;
}
.footer-inner nav {
  display: flex;
  gap: 15px;
}
footer p {
  color: #DBEDE7;
  font-size: 0.98rem;
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 6px;
    text-align: left;
  }
  footer {
    padding-top: 24px;
    padding-bottom: 15px;
    margin-top: 32px;
  }
}

/* --- SERVICE CARDS & STEP CARDS --- */
.service-grid, .service-list, .step-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
}
.service-card, .step-card {
  background: #fff;
  border-radius: 32px 22px 34px 17px/17px 34px 22px 32px;
  box-shadow: 0 3px 16px var(--nature-shadow);
  padding: 26px 22px 22px 22px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card:hover, .step-card:hover {
  box-shadow: 0 8px 28px var(--nature-shadow);
  transform: translateY(-4px) scale(1.03);
}
.price {
  display: inline-block;
  color: var(--nature-green);
  font-weight: bold;
  background: #D8E9D3;
  border-radius: 7px 11px 7px 11px/11px 7px 11px 7px;
  padding: 5px 14px;
  margin-top: 11px;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .service-grid, .service-list, .step-cards {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .service-card, .step-card {
    max-width: 98vw;
  }
}

/* --- FEATURE LIST & ICON-LINK LISTS --- */
ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 15px;
  padding-left: 2px;
}
ul li img {
  width: 28px;
  height: 28px;
  margin-right: 2px;
  background: #D8E9D3;
  border-radius: 50%;
  padding: 5px;
  object-fit: contain;
  box-shadow: 0 1px 6px var(--nature-shadow);
}
@media (max-width: 600px) {
  ul li img {
    width: 21px;
    height: 21px;
    padding: 2px;
  }
}

/**** TESTIMONIALS ****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 32px 18px 28px 22px/22px 28px 18px 32px;
  box-shadow: 0 4px 24px var(--nature-shadow);
  margin-bottom: 20px;
  border-left: 6px solid var(--nature-green);
  max-width: 520px;
  color: var(--nature-dark);
  font-size: 1.08rem;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #34503F;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px var(--nature-shadow);
}
@media (max-width: 600px) {
  .testimonial-card {
    max-width: 98vw;
    padding: 13px 7px;
  }
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 16px var(--nature-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 22px 45px 22px 24px;
  z-index: 2000;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
  animation: cookieSlideIn 0.6s ease;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: var(--nature-dark);
  font-size: 1.01rem;
  flex: 1 1 auto;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 11px 17px 11px 17px/17px 11px 17px 11px;
  padding: 10px 23px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: var(--nature-green);
  box-shadow: 0 2px 8px var(--nature-shadow);
  transition: background 0.12s, color 0.11s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #C9AD94;
  color: #2E3922;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--nature-dark);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--nature-green);
  border: 2px solid var(--nature-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--nature-green);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 9px 20px 9px;
    font-size: 0.96rem;
  }
  .cookie-consent-actions {
    gap: 11px;
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
  }
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 63, 19, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 32px 22px 24px 17px/17px 24px 22px 32px;
  box-shadow: 0 4px 48px var(--nature-shadow);
  padding: 36px 26px;
  min-width: 320px;
  max-width: 97vw;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: modalSlideIn 0.24s cubic-bezier(.4,0,0,1.29);
  position: relative;
}
@keyframes modalSlideIn {
  from { transform: translateY(38px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 0.4em;
  font-size: 1.27rem;
  color: var(--nature-green);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px 0;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--nature-green);
}
.cookie-category label {
  font-size: 1.02rem;
  color: var(--nature-dark);
}
.cookie-category .always-on {
  font-weight: bold;
  color: var(--brand-primary);
  margin-left: 9px;
  font-size: 0.93em;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--nature-green);
  font-size: 2.1rem;
  position: absolute;
  top: 19px;
  right: 21px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-primary);
}
.cookie-modal .cookie-btn {
  align-self: flex-end;
  margin-left: auto;
}

/**** FORMS, INPUTS ****/
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1.5px solid #D8E9D3;
  border-radius: 7px 14px 7px 14px/14px 7px 14px 7px;
  background: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.17s, box-shadow 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--nature-green);
  box-shadow: 0 1px 12px #D8E9D3;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--nature-dark);
}

/**** FEATURE ITEMS (e.g. why trust us) ****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** SPACING HELPERS & ORG SHAPES ****/
.organic-bg {
  background: #ECEADF;
  border-radius: 60px 40px 70px 30px/30px 70px 40px 60px;
  box-shadow: 0 2px 16px var(--nature-shadow);
  padding: 32px 18px;
}

/**** Z-INDEX STABILITY ****/
header, .mobile-menu, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal-overlay {
  z-index: 1200;
}

/**** ANIMATIONS AND MICRO-INTERACTIONS ****/
a, .cta, .cta.primary, .card, .service-card, .step-card, .cookie-btn, .mobile-menu-toggle, .mobile-nav a {
  transition: background 0.15s, color 0.13s, box-shadow 0.18s, transform 0.20s;
}

/**** SCROLLBARS FOR BRAND PERSONALITY ****/
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: #D8E9D3;
  border-radius: 8px;
  border: 2px solid #F3F6FB;
}
::-webkit-scrollbar-track {
  background: #F3F6FB;
}

/**** THANK-YOU PAGE HIGHLIGHT ****/
main .content-wrapper strong {
  color: var(--nature-green);
  font-size: 1.06em;
}

/**** PRINTING ----/
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent-banner,
  .cookie-modal-overlay,
  .cta {
    display: none !important;
  }
  header, footer {
    box-shadow: none !important;
  }
}

/**** ENSURE NO OVERLAPPING & CONTENT BREATHE ****/
.section, .card, .service-card, .step-card, .testimonial-card {
  margin-bottom: 24px;
}

/**** EXTRAS FOR ORGANIC/FRIENDLY FEEL ****/
.section {
  box-shadow: 0 3px 20px var(--nature-shadow), 0 0px 0px 1px #ECEADF inset;
  border-left: 8px solid #C9AD94;
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .section { padding: 14px 4px; }
}

/**** FOCUS STATES FOR ACCESSIBILITY ****/
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid var(--nature-green);
  outline-offset: 2px;
}

/**** ORGANIC SHAPE DECORATIVE (optional, not content) ****/
.organic-leaf {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/**** MISCELLANEOUS ****/
/* Remove list bullets for ul directly in .content-wrapper */
.content-wrapper > ul {
  list-style-type: none;
}

/* Hide scrollbar for mobile menu nav */
.mobile-nav {
  overflow-y: auto;
  max-height: 80vh;
}

/**** END CSS ****/
