/* RESET & NORMALIZE (MOBILE-FIRST) */
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,
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;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: linear-gradient(120deg, #A4C686 0%, #FFF8EA 100%);
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2D6A4F;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: #2D6A4F; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #386641; }
strong, b { font-weight: 700; }
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li { margin-bottom: 8px; }


/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2D6A4F;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #264027;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2D6A4F;
}
h4, .h4 { font-size: 1.1rem; font-weight: 500; }
p { margin-bottom: 12px; }

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

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- FLEX LAYOUTS FOR ALL CONTENT --- */
.feature-grid, .card-container, .project-list, .tip-excerpts, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card-container { gap: 24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(44, 106, 79, 0.08);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(44, 106, 79, 0.14);
  transform: translateY(-4px) scale(1.01);
}
.feature-item {
  background: #FFF8EA;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(44, 106, 79, 0.07);
  padding: 24px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.2s;
}
.feature-item img {
  width: 48px; height: 48px;
  margin-bottom: 8px;
}
.feature-item:hover {
  background: #F2FDE0;
  box-shadow: 0 6px 28px rgba(44, 106, 79, 0.11);
}
.service-price {
  color: #2D6A4F;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(44, 106, 79, 0.11);
  margin-bottom: 20px;
  font-size: 1.02rem;
  max-width: 520px;
  color: #26332D;
}
.testimonial-card p {
  font-weight: 500;
  color: #26332D;
}
.testimonial-card div {
  letter-spacing: 0.1em;
  color: #A4C686;
  font-size: 1.2em;
}
.testimonial-card b {
  font-size: 0.98em;
  color: #2D6A4F;
}
.project-list { gap: 24px; }
.project-item {
  background: #F2FDE0;
  border-radius: 14px;
  padding: 20px 20px 12px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(44, 106, 79, 0.06);
}
.faq-list { flex-direction: column; }
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(44, 106, 79, 0.07);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.faq-item h3 { margin-bottom: 6px; }

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg, #A4C686 40%, #FFF8EA 100%);
  padding: 70px 0 60px 0;
  margin-bottom: 60px;
  text-align: left;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #2D6A4F;
  font-size: 2.1rem;
  margin-bottom: 16px;
  font-family: 'Lora', serif;
}
.hero p {
  color: #264027;
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 520px;
}

/* --- CALL TO ACTION BUTTONS --- */
.cta {
  display: inline-block;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05em;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: 0 1px 12px rgba(44, 106, 79, 0.10);
  background: #A4C686;
  color: #2D6A4F;
  border: none;
  outline: none;
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s, transform 0.14s;
  text-align: center;
}
.cta.primary {
  background: linear-gradient(90deg, #2D6A4F 54%, #A4C686 100%);
  color: #FFF8EA;
}
.cta.secondary {
  background: #fff;
  border: 2px solid #2D6A4F;
  color: #2D6A4F;
}
.cta:active {
  transform: scale(0.97);
}
.cta:hover, .cta:focus {
  filter: brightness(0.95) drop-shadow(0 1px 8px rgba(163,198,134,0.20));
}

/* --- MAIN NAVIGATION --- */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  background: transparent;
  padding: 16px 0 4px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 14px;
  transition: color 0.2s, background 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #f2fde0;
  color: #2D6A4F;
}
.main-nav img {
  width: 44px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 9px;
}

header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(44, 106, 79, 0.054);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  position: sticky;
  top: 0;
  z-index: 20;
}

/* --- FOOTER --- */
footer {
  background: #2D6A4F;
  color: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 40px 0 16px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.01em;
  opacity: 0.96;
  transition: opacity 0.16s;
}
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.brand-signature {
  text-align: center;
  font-size: 0.99em;
  letter-spacing: 0.03em;
  opacity: 0.83;
}

/* --- TIP CATEGORIES AND ITEMS --- */
.tip-categories ul, .tip-excerpts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.tip-categories li {
  display: block;
  padding: 8px 16px;
  border-radius: 32px;
  background: #F2FDE0;
  color: #2D6A4F;
  font-weight: 500;
  font-size: 0.99em;
  margin-bottom: 12px;
}
.tip-excerpts {
  gap: 24px;
}
.tip-item {
  background: #FFF8EA;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 8px rgba(44, 106, 79, 0.06);
  min-width: 220px;
  flex: 1 1 220px;
}
.featured-tip {
  background: #2d6a4f;
  color: #fff;
  border-radius: 12px;
  padding: 15px 18px;
  margin-bottom: 16px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .feature-grid, .card-container, .project-list, .tip-excerpts {
    flex-direction: column;
    gap: 16px;
  }
  .main-nav { gap: 10px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { padding-bottom: 70px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 30;
    background: #2D6A4F;
    color: #FFF8EA;
    border: none;
    font-size: 2rem;
    border-radius: 10px;
    padding: 6px 13px 9px 13px;
    box-shadow: 0 1px 10px rgba(44,106,79,0.16);
    transition: background 0.18s, color 0.16s;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #386641;
    color: #FFF8EA;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.32,1.13,.4,1), box-shadow 0.18s;
    box-shadow: 0 0 0 rgba(44,106,79,0);
  }
  .mobile-menu.open {
    transform: translateX(0);
    box-shadow: 0 8px 40px rgba(44,106,79,0.16);
  }
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 26px;
    background: #2D6A4F;
    color: #FFF8EA;
    font-size: 2rem;
    border: none;
    border-radius: 8px;
    padding: 5px 16px 5px 16px;
    cursor: pointer;
    z-index: 350;
    transition: background 0.18s, color 0.17s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #386641;
    color: #FFF8EA;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: flex-start;
    margin-top: 80px;
    align-items: center;
  }
  .mobile-nav a {
    font-size: 1.35rem;
    color: #2D6A4F;
    font-weight: bold;
    padding: 10px 22px;
    background: #F2FDE0;
    border-radius: 22px;
    transition: background 0.18s, color 0.16s;
  }
  .mobile-nav a:hover, .mobile-nav a.active {
    background: #A4C686;
    color: #fff;
  }
  .mobile-menu { display: flex; }
  .hero { text-align: left; padding: 50px 0 34px; }
  .hero h1 { font-size: 1.38rem; line-height: 1.19; margin-bottom: 10px; }
  .hero p { font-size: 1rem; }
  .feature-grid, .card-container, .project-list, .tip-excerpts {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .project-item, .feature-item, .tip-item {
    max-width: 100vw;
    width: 100%;
    min-width: unset;
  }
  .footer-nav { gap: 11px; }
  .section { margin-bottom: 32px; padding: 28px 8px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .container { padding-left: 8px; padding-right: 8px; }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2D6A4F;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  min-height: 70px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 -2px 20px rgba(44,106,79,.16);
  gap: 18px;
  font-size: 0.97em;
  animation: slideUpCookie 0.6s cubic-bezier(.34,1.3,.38,1) both;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%);} to {transform: translateY(0);}
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 9px;
  justify-content: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #A4C686;
  color: #2D6A4F;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  margin: 0 4px;
  box-shadow: 0 1px 7px rgba(44,106,79,0.08);
  transition: background 0.18s, color 0.18s, transform 0.11s;
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn:focus, .cookie-settings-btn:focus {
  background: #94b087;
}
.cookie-btn.reject {
  background: #fff;
  color: #2D6A4F;
  border: 2px solid #A4C686;
}
.cookie-btn.reject:hover { background: #f8f8f8; }
.cookie-settings-btn {
  background: #FFF8EA;
  color: #2D6A4F;
  font-size: 1em;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,106,79,0.34);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FFF8EA;
  color: #26332D;
  padding: 30px 24px 26px 24px;
  border-radius: 22px;
  max-width: 98vw;
  width: 370px;
  box-shadow: 0 8px 40px rgba(44,106,79,0.21);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.34s cubic-bezier(.36,1.2,.41,1.01);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.98);} to {opacity:1; transform:scale(1);}
}
.cookie-modal h3 {
  color: #2D6A4F;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: 'Lora', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #2D6A4F;
  width: 20px; height: 20px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

/* --- FORM STYLES --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  border-radius: 8px;
  border: 1.5px solid #A4C686;
  padding: 8px 13px;
  background: #fff;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #2D6A4F;
  box-shadow: 0 1px 8px rgba(44,106,79,0.10);
}
button, input[type=submit], input[type=button] {
  cursor: pointer;
  font-family: inherit;
}

/* --- SKIP-LINK --- */
.skip-link {
  position: absolute;
  left: -9999px;
  background: #2D6A4F;
  color: #FFF8EA;
  padding: 12px;
  border-radius: 8px;
  z-index: 5000;
  font-size: 1.1rem;
  transition: left 0.15s;
}
.skip-link:focus {
  left: 20px;
  top: 15px;
}

/* --- MISC --- */
::selection {
  background: #A4C686;
  color: #FFF8EA;
}

/* --- UTILITY CLASSES --- */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.testimonial-wrapper {
    display: flex;
    gap: 20px;
}
/* END OF CSS */