/* --------------------------
   CSS RESET & BASE STYLES
---------------------------*/
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  background: #fffaf6;
  color: #4B2E15;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.7;
  background-color: #fffaf6;
  color: #4B2E15;
}
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
a {
  color: #17644b;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus { color: #5C8976; outline: none; }

/* FONT IMPORTS (recommend to include in HTML) */
@import url('https://fonts.googleapis.com/css?family=Raleway:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Montserrat', Arial, sans-serif;
  color: #4B2E15;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}

p, li, span, label { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; color: #4B2E15; }
p { margin-bottom: 12px; }

strong { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffdf6;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(120,90,60,0.10), 0 1.5px 8px rgba(92,136,118,0.06);
}

@media (max-width: 768px) {
  .section { padding: 24px 8px; margin-bottom: 38px; }
}

/* --------------------------
   HEADER, NAVIGATION, LOGO
---------------------------*/
header {
  background: #F4DFBE;
  border-bottom: 2px solid #e4c8a7;
  width: 100%;
  box-shadow: 0 2px 8px rgba(75,46,21,0.06);
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
.logo img {
  height: 64px;
  width: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(75,46,21,0.07);
  padding: 4px 10px;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #75523C;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: #5C8976;
  border-radius: 4px;
  margin-top: 4px;
  transition: width 0.22s cubic-bezier(.43,.09,.48,.8);
}
.main-nav a:hover:after, .main-nav a:focus:after { width: 60%; }
.main-nav a:hover, .main-nav a:focus { color: #17644B; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 34px;
  background: #17644B;
  color: #fff;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  border-radius: 33px 28px 37px 25px / 22px 40px 30px 36px;
  border: 0;
  box-shadow: 0 2px 8px rgba(92,137,118,0.12);
  transition: background 0.2s, box-shadow 0.22s, transform 0.08s;
  cursor: pointer;
  outline: none;
  text-align: center;
  letter-spacing: .05em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #5C8976;
  color: #fff;
  box-shadow: 0 4px 28px rgba(85,129,97,0.16);
  transform: translateY(-1px) scale(1.02);
}

.mobile-menu-toggle {
  display: none;
  background: #17644B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 9px 18px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
  z-index: 40;
}
.mobile-menu-toggle:focus { outline: 2px solid #5C8976; }

/* Responsive navigation */
@media (max-width: 1024px){
  .main-nav {
    gap: 16px;
  }
  .logo img {
    height: 48px;
  }
  header .container {
    min-height: 54px;
  }
}
@media (max-width: 820px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --------------------------
    MOBILE MENU
---------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(124,100,68,0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.71,-0.2,.44,1), opacity 0.2s;
  z-index: 120;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 30px 22px 0 0;
  cursor: pointer;
  transition: color 0.16s;
  outline: none;
}
.mobile-menu-close:focus { color: #5C8976; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  margin: 65px 40px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 500;
  background: rgba(92,137,118,0.12);
  border-radius: 18px 42px 18px 36px / 36px 24px 40px 24px;
  padding: 10px 32px;
  margin-bottom: 2px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5C8976;
  color: #F4DFBE;
}

/* --------------------------
      HERO + VALUES
---------------------------*/
.hero {
  background: linear-gradient(110deg, #F4DFBE 40%, #fffaf6 100%); /* light earth tone */
  padding: 48px 0 40px 0;
  border-radius: 0 0 52px 58px / 0 0 44px 70px;
  margin-bottom: 42px;
  box-shadow: 0 8px 42px rgba(120,100,70,0.04);
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  gap: 24px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #4B2E15;
  line-height: 1.11;
}
.hero .subheadline {
  font-size: 1.22rem;
  color: #75523C;
  margin-bottom: 18px;
}
@media (max-width: 768px){
  .hero {
    padding: 22px 0 12px;
    border-radius: 0 0 22px 32px / 0 0 16px 28px;
    margin-bottom: 18px;
  }
  .hero h1 { font-size: 1.5rem; }
}


.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.values li {
  background: #fff;
  border-radius: 32px 42px 30px 52px / 34px 40px 50px 24px;
  box-shadow: 0 1px 6px rgba(92,137,118,0.11);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #4B2E15;
  font-size: 1.04rem;
}
.values li img {
  width: 32px;
  height: 32px;
  background: #F4DFBE;
  padding: 4px;
  border-radius: 12px;
}
@media (max-width: 720px){
  .values ul { flex-direction: column; gap: 16px; }
  .values li { max-width: 98vw; }
}

/* --------------------------
     SERVICES / CARDS
---------------------------*/
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 16px 0 0 0;
}
.services ul li {
  background: #fff;
  border-radius: 22px 44px 30px 41px / 24px 30px 40px 24px;
  box-shadow: 0 2px 7px rgba(92,137,118,0.12);
  flex: 1 1 240px;
  margin-bottom: 20px;
  padding: 20px 22px 18px 22px;
  font-size: 1.01rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid #17644B;
  transition: box-shadow 0.18s, transform 0.18s;
}
.services ul li strong {
  color: #17644B;
  font-size: 1.09rem;
}
.services ul li span {
  margin-top: 2px;
  color: #96927b;
  font-size: 0.98rem;
}
.services ul li:hover, .services ul li:focus {
  box-shadow: 0 8px 28px rgba(92,137,118,0.16);
  transform: translateY(-2px) scale(1.019);
}
@media (max-width: 820px){
  .services ul { flex-direction: column; gap: 12px; }
  .services ul li { min-width: 0; }
}
.cta-section {
  margin-top: 28px;
}
@media (max-width: 500px) {
  .services ul li { padding: 14px 12px 12px 14px; font-size: 0.97rem; }
}

/* --------------------------
      FEATURES LIST
---------------------------*/
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 18px 18px 24px;
  background: #fff;
  border-radius: 18px 38px 17px 42px / 20px 24px 32px 20px;
  box-shadow: 0 1px 8px rgba(120,90,60,0.09);
  min-width: 220px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #4B2E15;
  transition: box-shadow 0.18s, transform 0.18s;
}
.features li img {
  width: 30px;
  height: 30px;
  background: #F4DFBE;
  padding: 3px;
  border-radius: 8px;
}
.features li:hover, .features li:focus {
  box-shadow: 0 8px 30px rgba(120,120,100,0.18);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width: 800px){.features ul { flex-direction: column; gap: 10px; }}

/* --------------------------
       TESTIMONIALS CARDS
---------------------------*/
.testimonials {
  padding: 38px 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 30px 36px 24px 38px / 20px 40px 32px 25px;
  box-shadow: 0 2px 16px rgba(92,137,118,0.11);
  border-left: 8px solid #5C8976;
  min-width: 180px;
  transition: box-shadow 0.16s, border-color 0.18s;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  color: #4B2E15;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card .stars {
  margin-left: 16px;
  color: #f7b500;
  font-size: 1.18em;
  letter-spacing: 2px;
  font-family: 'Raleway', Arial, sans-serif;
}
.testimonial-card span {
  color: #5C8976;
  font-size: .98rem;
  font-weight: 500;
  margin-left: auto;
  font-family: 'Raleway', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 30px rgba(120,110,90,0.14);
  border-color: #17644B;
}

@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 8px; padding: 15px; }
  .testimonials .content-wrapper { gap: 10px; }
}

/* --------------------------
          CTA BLOCK
---------------------------*/
.cta {
  background: #5C8976;
  color: #fff;
  border-radius: 32px 60px 17px 40px / 36px 38px 30px 44px;
  text-align: center;
  margin: 40px 0 0 0;
  box-shadow: 0 2px 18px rgba(92,137,118,0.15);
}
.cta .content-wrapper{
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta h2 {
  color: #fff;
}
.cta a.cta-btn {
  background: #17644B;
  border: 0;
  margin: 18px 0 0 0;
}
.cta a.cta-btn:hover, .cta a.cta-btn:focus { background: #fff; color: #17644B; box-shadow: 0 8px 28px rgba(22,100,75,0.16); }

@media (max-width: 600px) { .cta { padding: 16px 2px; }}

/* --------------------------
     FOOTER STYLES
---------------------------*/
footer {
  background: #F4DFBE;
  border-top: 2px solid #e4c8a7;
  padding: 24px 0 12px 0;
  margin-top: 50px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  font-size: .98rem;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #75523C;
  padding: 2px 8px;
  border-radius: 8px;
  background: #e1d1b6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.12s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #5C8976;
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 1rem;
  color: #4B2E15;
}
.footer-brand img {
  height: 32px;
  width: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 6px rgba(120,90,60,0.11);
  padding: 2px 6px;
}

/* --------------------------
      COOKIE BANNER + MODAL
---------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffdf6;
  border-top: 3px solid #F4DFBE;
  box-shadow: 0 -2px 18px rgba(35,42,20,0.08);
  padding: 22px 18px 18px 18px;
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  gap: 24px;
  animation: cookieslidein 0.36s cubic-bezier(.64,.04,.58,1);
}
@keyframes cookieslidein {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p{
  color: #4B2E15;
  font-family: 'Montserrat', Arial, sans-serif;
  flex: 2 1 320px;
  margin: 0;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  flex: 1 1 auto;
}
.cookie-btn {
  background: #17644B;
  color: #fff;
  font-size: 1.05rem;
  border-radius: 22px 28px 27px 20px / 20px 30px 26px 22px;
  border: 0;
  padding: 8px 22px;
  margin-right: 0;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, outline 0.13s;
  cursor: pointer;
  outline: none;
}
.cookie-btn.settings {
  background: #F4DFBE;
  color: #17644B;
  border: 1.5px solid #17644B;
}
.cookie-btn:hover, .cookie-btn:focus { background: #5C8976; color: #fff; }
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #fff; color: #17644B; }
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.99rem;
    padding: 16px 6px 12px 8px;
  }
  .cookie-buttons {
    gap: 10px;
  }
}

/* Cookie MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(92,137,118,0.28);
  z-index: 998;
  opacity: 1;
  animation: cookiesfadein 0.21s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes cookiesfadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 26px 41px 25px 19px / 24px 36px 21px 33px;
  box-shadow: 0 4px 40px rgba(92,137,118,0.24);
  padding: 28px 26px 18px 26px;
  min-width: 300px;
  max-width: 96vw;
  min-height: 200px;
  max-height: 88vh;
  overflow: auto;
  animation: cookiespopup 0.22s cubic-bezier(.44,.6,.79,1.2);
}
@keyframes cookiespopup {
  from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 { font-size: 1.31rem; color: #17644B; margin-bottom: 14px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F4DFBE;
  padding: 10px 16px;
  border-radius: 12px 22px 14px 19px / 15px 20px 19px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 18px;
  background: #e1d1b6;
  border-radius: 9px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #17644B;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-toggle:checked:before { left: 21px; }
.cookie-close-btn {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #75523C;
  cursor: pointer;
  outline: none;
  transition: color 0.14s;
}
.cookie-close-btn:focus { color: #17644B; }
@media (max-width: 410px){.cookie-modal{padding:8px 4px 10px 4px;}}

/* --------------------------
     CARD / FLEX PATTERNS
---------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 26px 32px 21px 38px / 22px 29px 37px 23px;
  box-shadow: 0 2px 10px rgba(75,46,21,0.08);
  margin-bottom: 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
}
.card-content {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------
    GENERAL SPACING/TYPO
---------------------------*/
.section, .card, .testimonial-card, .features li, .values li, .services ul li {
  margin-bottom: 20px ;
}
@media (max-width: 600px){
  .content-wrapper,.section,.card-container,.content-grid{gap:10px;}
}

/* -------------------------
    THANK YOU PAGE
---------------------------*/
.thank-you {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55vh;
  text-align: center;
}
.thank-you h1 { margin-bottom: 16px;}

/* --------------------------
   FORM & INFO BLOCKS
---------------------------*/
.info {
  font-size: 1.09rem;
  color: #17644B;
  border-left: 5px solid #F4DFBE;
  background: #fffdf6;
  padding: 10px 18px;
  border-radius: 9px 22px 20px 13px / 13px 20px 19px 12px;
  box-shadow: 0 1.5px 7px rgba(120,120,100,0.08);
  margin-top: 10px;
}
input, textarea, select {
  background: #fff;
  border: 1.5px solid #e1d1b6;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #4B2E15;
  margin-bottom: 18px;
  transition: border 0.13s;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #17644B;
  background: #f4dfbe33;
}
label { font-weight: 500; color: #75523C; margin-bottom: 6px; display: block; }

/* --------------------------
    ORGANIC DECOR/SHAPES
---------------------------*/
/* Subtle organic "blob" behind featured sections */
.section:before, .hero:before {
  content: '';
  display: block;
  position: absolute;
  left: -80px;
  top: 35%;
  z-index: 0;
  width: 240px;
  height: 180px;
  background: #f4dfbe77;
  border-radius: 53% 47% 45% 55% / 58% 54% 46% 42%;
  filter: blur(6px);
  pointer-events: none;
  opacity: 0.36;
}
.hero:before { left: 80px; top: 5%; width:120px; height: 100px; background: #f8eee3; opacity: 0.22; }
.section:before { display:none; }
@media (max-width:600px){ .hero:before{ left: 14px; top:2%; width:80px; height:50px; } }

/* --------------------------
      RESPONSIVE
---------------------------*/
@media (max-width: 450px) {
  html { font-size: 14px; }
  .container { padding: 0 4px; }
}

/* --------------------------
      MICRO-INTERACTIONS
---------------------------*/
button,
input[type="button"],
input[type="submit"] {
  transition: box-shadow .18s, background .12s, color .14s, transform 0.11s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  box-shadow: 0 1px 8px rgba(92,137,118,0.14) !important;
  transform: scale(0.96);
}
input:active, textarea:active {
  border-color: #17644B;
}

/* --------------------------
   ACCESSIBILITY FOCUS
--------------------------*/
a:focus, .cta-btn:focus, .mobile-nav a:focus, .cookie-btn:focus {
  outline: 2px solid #17644B;
  outline-offset: 2px;
}

/* --------------------------
   PRINT
--------------------------*/
@media print {
  header, .mobile-menu, .cookie-banner, footer { display: none !important; }
  body, main, .container { background: #fff !important; color: #000 !important; }
}
