/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FAF8F7;
  color: #32423B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #387346;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #267137;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.7em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2D4732;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 22px; }
h2 { font-size: 1.85rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
.subtitle {
  font-family: 'Roboto', Arial, sans-serif;
  color: #467058;
  font-size: 1.2rem;
  margin-bottom: 22px;
  font-weight: 400;
}
strong {
  font-weight: 600;
  color: #32594a;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff8f1;
  border-radius: 22px;
  box-shadow: 0 4px 22px 0 rgba(60, 56, 55, 0.08);
  margin-bottom: 20px;
  padding: 30px 26px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px 0 rgba(56, 115, 70, 0.09);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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, .text-image-section, .card-container, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/****************************************
 * HEADER / NAVIGATION
 ****************************************/
header {
  width: 100%;
  background: linear-gradient(90deg, #eee6fa 0%, #f2e3ca 100%);
  box-shadow: 0 2px 16px 0 rgba(56,115,70,0.03);
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #376453;
  padding: 6px 0;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #387346;
  border-bottom: 2px solid #387346;
}
.cta {
  display: inline-block;
  background: #387346;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 12px 0 rgba(56,115,70,0.09);
  padding: 12px 34px;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta:hover, .cta:focus {
  background: #21582e;
  color: #faf8f7;
  box-shadow: 0 5px 22px 0 rgba(56,115,70,0.12);
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: #fff8f1;
  color: #3a7050;
  border: 2px solid #c3d2c8;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #ebe1d1;
  color: #21582e;
}

/****************************************
 * MOBILE MENU
 ****************************************/
.mobile-menu-toggle {
  display: none;
  background: #faf8f7;
  color: #387346;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  margin-left: 10px;
  box-shadow: 0 2px 10px 0 rgba(56,115,70,0.06);
  cursor: pointer;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f2e3ca;
  color: #267137;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 32px 0 rgba(56,115,70,0.17);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.41,.6,.51,.96);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 30px 32px 26px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #387346;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 26px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #21582e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #387346;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f2e3ca;
  color: #267137;
}
@media (max-width: 1060px) {
  header .container nav,
  header .container .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
}

/****************************************
 * MAIN, SECTIONS, SPACING
 ****************************************/
section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 0px;
}
section .container {
  flex-direction: column;
}
.content-wrapper {
  margin-top: 12px;
}
.policy-text {
  background: #fff8f1;
  border-radius: 18px;
  padding: 28px 22px;
  margin-top: 18px;
  line-height: 1.75;
  box-shadow: 0 2px 14px 0 rgba(56,115,70,0.06);
}

/****************************************
 * FEATURED/CARD DESIGN (for services, gallery, reference)
 ****************************************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8f6ff;
  border-radius: 18px;
  padding: 24px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px 0 rgba(56,115,70,0.05);
  transition: box-shadow 0.18s;
}
.feature-item:hover { box-shadow: 0 6px 16px 0 rgba(56,115,70,0.09); }
.price {
  font-size: 1rem;
  color: #267137;
  font-weight: 500;
  opacity: 0.92;
  margin-left: 10px;
}

/****************************************
 * TESTIMONIALS
 ****************************************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 26px 18px 22px;
  margin-bottom: 22px;
  min-width: 220px;
  max-width: 522px;
  background: #f3f6fd;
  border-left: 6px solid #387346;
  border-radius: 20px;
  box-shadow: 0 3px 22px 0 rgba(56,115,70,0.08);
  color: #23332B;
  font-size: 1.07rem;
  position: relative;
  transition: box-shadow 0.16s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(56,115,70,0.13);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card p {
  color: #23332B;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #496B57;
  font-style: normal;
  font-weight: 500;
}
.testimonial-summary {
  margin-top: 18px;
  color: #184f30;
  background: #fafaf2;
  border-radius: 12px;
  padding: 18px 14px;
  font-size: 1.08rem;
}

/****************************************
 * BLOG CATEGORIES & FEATURED POST
 ****************************************/
.blog-categories {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.01rem;
}
.blog-categories a {
  background: #e7f3eb;
  color: #387346;
  border-radius: 10px;
  padding: 4px 13px;
  margin-right: 3px;
  font-size: 0.96rem;
  transition: background 0.15s, color 0.15s;
}
.blog-categories a:hover {
  background: #d6eadd;
  color: #21582e;
}
.featured-post {
  background: #e5f4e7;
  padding: 24px 18px;
  border-radius: 16px;
  margin-top: 22px;
  color: #32594a;
  box-shadow: 0 1px 8px 0 rgba(56,115,70,0.05);
}

/****************************************
 * FOOTER
 ****************************************/
footer {
  width: 100%;
  background: linear-gradient(90deg, #f2e3ca 0%, #e3efe0 100%);
  color: #326d45;
  padding: 38px 0 26px 0;
  margin-top: 40px;
  box-shadow: 0 -2px 12px 0 rgba(56,115,70,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #387346;
  transition: color 0.2s;
  margin-bottom: 4px;
}
.footer-nav a:hover, .footer-nav a:focus { color: #21582e; }
.footer-contact {
  font-size: 1rem;
  color: #32594a;
  margin-bottom: 8px;
}
.footer-contact a {
  color: #21582e;
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
  }
  .footer-brand img {
    margin-bottom: 0;
  }
}

/****************************************
 * CONTACT LIST BLOCK
 ****************************************/
.contact-list {
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 10px;
}
.contact-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.info-block {
  background: #eaf4ed;
  border-left: 5px solid #387346;
  padding: 22px 16px;
  border-radius: 16px;
  margin-top: 18px;
  margin-bottom: 12px;
  max-width: 600px;
}

/****************************************
 * COOKIE CONSENT BANNER & MODAL
 ****************************************/
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 800;
  width: 100vw;
  background: #F7F2ED;
  box-shadow: 0 -2px 22px 0 rgba(56,115,70,0.09);
  border-top: 2px solid #E9D9BC;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 24px 18px 20px 18px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.43, .83, .54, 1.04);
}
.cookie-consent.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-consent-content {
  max-width: 500px;
  color: #387346;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  margin-top: 6px;
}
.cookie-btn {
  background: #387346;
  color: #fff;
  font-size: 1rem;
  padding: 9px 20px;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 0px 7px 0 rgba(56,115,70,0.08);
  cursor: pointer;
  transition: background 0.14s, transform 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #21582e;
  transform: scale(1.045);
}
.cookie-btn.reject {
  background: #c0cbbe;
  color: #21582e;
}
.cookie-btn.reject:hover {
  background: #b3c1ae;
  color: #21582e;
}
.cookie-btn.settings {
  background: #fff8f1;
  color: #387346;
  border: 1.5px solid #d2cab6;
}
.cookie-btn.settings:hover {
  background: #ede5d6;
  color: #32594a;
}
@media (max-width: 700px) {
  .cookie-consent {
    flex-direction: column;
    gap: 12px;
    padding: 20px 8px 16px 8px;
    font-size: 0.98rem;
  }
}
/* Cookie modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 900;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(48, 82, 62, 0.14);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff8f1;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(56,115,70,0.17);
  padding: 36px 28px 28px 28px;
  width: 98vw;
  max-width: 400px;
  z-index: 1002;
  font-size: 1.02rem;
  color: #23423c;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popIn 0.38s cubic-bezier(.42,.9,.54,1.04);
}
@keyframes popIn {
  0% { transform: scale(0.85) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #387346;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: #21582e;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f2e3ca;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: #387346;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #387346;
  margin-right: 4px;
}
.cookie-category.essential {
  background: #e3efe0;
  color: #62887d;
  font-style: italic;
}
.cookie-category.essential label {
  color: #62887d;
}

/****************************************
 * TRANSITIONS, HOVER EFFECTS, MICRO-INTERACTIONS
 ****************************************/
button, .cta, a, .cookie-btn {
  transition: background 0.13s, color 0.14s, box-shadow 0.14s, transform 0.13s;
}

/****************************************
 * RESPONSIVE MEDIA QUERIES
 ****************************************/
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
}
@media (max-width: 700px) {
  .section,
  section {
    padding: 20px 0px;
    margin-bottom: 34px;
  }
  .card, .feature-item {
    padding: 20px 13px;
    border-radius: 15px;
  }
}
@media (max-width: 500px) {
  header .container {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.21rem; }
  .footer-brand img {
    height: 36px;
  }
}

/****************************************
 * SOFT PASTEL ATMOSPHERE
 ****************************************/
body {
  background: linear-gradient(160deg, #F7F5F2 0%, #e7f3eb 100%);
}
section {
  border-radius: 26px;
  box-shadow: 0 1.5px 18px 0 rgba(183, 203, 176, 0.07);
  background: linear-gradient(to top right, #fff8f1 0%, #ecf9ef 100%);
}
/****************************************
 * TWEAKS FOR DREAMY/PASTEL
 ****************************************/
h1, h2, h3, h4, h5, h6 {
  color: #2d4732;
  letter-spacing: 0.01em;
}

/****************************************
 * FOCUS STYLES
 ****************************************/
a:focus, button:focus, .cta:focus, .cookie-btn:focus {
  outline: 2.5px solid #387346;
  outline-offset: 2px;
}

/****************************************
 * UTILITIES
 ****************************************/
.m-0 { margin: 0 !important; }
.mt-1 { margin-top: 8px!important; }
.mt-2 { margin-top: 18px!important; }
.mt-3 { margin-top: 32px!important; }
.mb-3 { margin-bottom: 26px!important; }
.pt-3 { padding-top: 22px!important; }
.flex { display: flex!important; }
.jc-between { justify-content: space-between;}
.gap-2 { gap: 12px; }

/****************************************
 * END
 ****************************************/
