/* =====================
   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, 
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 {
  min-height: 100vh;
  background: #F9EEE3;
  color: #254932;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #CB7D2C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #254932;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

/* FONTS */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
}

/* =====================
   LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(203, 125, 44, 0.10);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(37,73,50,0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 270px;
  transition: box-shadow .25s;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(203, 125, 44, 0.18);
  z-index: 2;
}
.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;
}

.text-section {
  background: #F9EEE3;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(203,125,44,.06);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37, 73, 50, .09);
  margin-bottom: 20px;
  max-width: 420px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(203, 125, 44, 0.17);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.features-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 210px;
  min-width: 210px;
  background: #FFF8F3;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(203, 125,44,0.07);
  transition: box-shadow .2s, background .25s;
}
.features-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.features-list li strong {
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #CB7D2C;
  font-weight: 600;
}
.features-list li:hover {
  background: #FFF2E3;
  box-shadow: 0 6px 26px rgba(203, 125, 44, 0.10);
}

.features-short {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
}
.features-short li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFAF6;
  padding: 13px 17px;
  border-radius: 24px;
  font-size: 15px;
  color: #254932;
  box-shadow: 0 1px 5px rgba(37,73,50,0.04);
  margin-bottom: 12px;
  min-width: 190px;
}
.features-short li img {
  width: 26px;
  height: 26px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.service-list li {
  flex: 1 1 270px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(37, 73, 50, 0.04);
  padding: 28px 18px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow .15s;
}
.service-list li:hover {
  box-shadow: 0 8px 32px rgba(203, 125, 44, 0.13);
}
.service-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #CB7D2C;
  font-size: 21px;
  margin-bottom: 5px;
  font-weight: 700;
}
.service-list p {
  color: #254932;
  font-size: 15px;
}
.service-list span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  color: #254932;
  font-weight: 600;
  background: #FFF8F3;
  padding: 4px 10px;
  border-radius: 12px;
  align-self: flex-start;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(203, 125, 44, 0.04);
  position: relative;
  z-index: 99;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 16px 20px 16px 20px;
}
header img {
  width: 56px;
  height: 56px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex: 1;
}
.main-nav a {
  color: #254932;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  border-radius: 18px;
  padding: 8px 15px;
  transition: background .17s, color .17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F9EEE3;
  color: #CB7D2C;
}
.cta-button {
  background: #CB7D2C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: 100px;
  padding: 11px 28px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(37,73,50, .12);
  transition: background .18s, box-shadow .2s, color .17s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #b36b22;
  color: #fff8f3;
  box-shadow: 0 8px 30px rgba(203, 125, 44, 0.18);
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu-toggle {
  display: none;
  background: #FFFAF6;
  border: none;
  font-size: 30px;
  color: #CB7D2C;
  border-radius: 14px;
  padding: 6px 16px;
  margin-left: 8px;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(37,73,50,0.09);
  transition: background .17s, color .17s;
  outline: none;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F9EEE3;
  color: #254932;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 6px 64px rgba(37,73,50,0.18);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.54,0,.45,1);
  display: flex;
  flex-direction: column;
  padding: 34px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 22px;
  background: #fff8f3;
  color: #CB7D2C;
  border: none;
  border-radius: 16px;
  font-size: 30px;
  padding: 6px 14px;
  cursor: pointer;
  z-index: 210;
  box-shadow: 0 2px 12px rgba(37,73,50,.08);
  transition: background .15s, color .14s;
}
.mobile-menu-close:hover {
  background: #F9EEE3;
  color: #254932;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 64px;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  color: #254932;
  background: #FFFAF6;
  padding: 11px 20px;
  border-radius: 16px;
  margin-bottom: 6px;
  width: 80vw;
  max-width: 320px;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9EEE3;
  color: #CB7D2C;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: linear-gradient(96deg, #F9EEE3 60%, #FFF8F3 100%);
  min-height: 325px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 44px rgba(203, 125, 44, 0.05);
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 17px;
  align-items: flex-start;
}
.hero h1 {
  color: #254932;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
.hero p {
  color: #254932;
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 19px;
}
.hero .cta-button {
  margin-top: 8px;
}

/* =====================
   TYPOGRAPHY & HEADINGS
   ===================== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  line-height: 1.16;
  font-weight: 700;
  color: #254932;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #CB7D2C;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: #B96B1C;
  margin-bottom: 9px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #CB7D2C;
}
p, li, a, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #254932;
}

/* =====================
   TESTIMONIALS & STAR RATING
   ===================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  font-size: 1.10rem;
  font-style: italic;
  color: #254932;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #CB7D2C;
  font-weight: 500;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 10px;
}
.star-rating img {
  width: 105px;
  height: 21px;
}
.star-rating span {
  color: #254932;
  font-weight: 500;
  font-size: 1rem;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #254932;
  color: #fff;
  margin-top: 64px;
  padding: 35px 0 10px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 36px rgba(37, 73, 50, 0.05);
}
footer .container {
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 18px;
  background: none;
  transition: background .14s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #CB7D2C;
  color: #fff;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
  color: #fff;
  margin-top: 14px;
}
.footer-info span {
  color: #fff;
  opacity: 0.89;
}

/* =====================
   COOKIES CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #fff8f3;
  color: #254932;
  z-index: 300;
  box-shadow: 0 -3px 20px rgba(203, 125, 44, 0.13);
  border-radius: 24px 24px 0 0;
  padding: 20px 18px 25px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 19px;
  transition: transform .35s cubic-bezier(.44,0,.11,1);
  transform: translateY(0);
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner .cookie-btn {
  background: #CB7D2C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 100px;
  border: none;
  font-size: 16px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,73,50,.09);
  transition: background .16s, color .12s;
}
.cookie-banner .cookie-btn.settings {
  background: #F9EEE3;
  color: #CB7D2C;
  border: 2px solid #CB7D2C;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #CB7D2C;
  border: 2px solid #CB7D2C;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #b36b22;
  color: #fff8f3;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #fff;
  color: #CB7D2C;
  border-color: #b36b22;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #fff8f3;
  color: #b36b22;
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  min-width: 290px;
  background: #fff8f3;
  border-radius: 28px;
  box-shadow: 0 8px 64px rgba(37,73,50,0.21);
  z-index: 400;
  padding: 36px 28px 28px 28px;
  display: none;
  flex-direction: column;
  gap: 20px;
  animation: cookiesIn .23s cubic-bezier(.67,0,.42,1) 1;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookiesIn {
  0% { opacity: 0; transform: translate(-50%,-30%); }
  100% { opacity: 1; transform: translate(-50%,-50%); }
}
.cookie-modal h3 {
  font-size: 1.21rem;
  color: #CB7D2C;
  margin-bottom: 7px;
}
.cookie-modal .category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #CB7D2C;
  width: 19px;
  height: 19px;
  border-radius: 8px;
  outline: none;
}
.cookie-modal .category.essential label {
  color: #b08e5c;
}
.cookie-modal .actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 21px;
}
.cookie-modal .cookie-btn {
  padding: 9px 24px;
  font-size: 16px;
}

/* =====================
   RESPONSIVE LAYOUT
   ===================== */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .features-list, .service-list, .testimonial-list, .features-short {
    gap: 13px;
  }
}

@media (max-width: 900px) {
  header .container { flex-direction: column; gap: 10px; align-items: flex-start; }
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
    display: none !important; /* will show on desktop only */
  }
  .cta-button {
    margin-left: 0;
    margin-top: 8px;
  }
  .content-wrapper { gap: 19px; }
}

@media (max-width: 768px) {
  .container { max-width: 100vw; padding-left: 6px; padding-right: 6px; }
  .card-container, .content-grid, .service-list, .testimonial-list, .features-list, .features-short {
    flex-direction: column;
    gap: 13px;
  }
  .content-wrapper { gap: 14px; }
  .section { padding: 22px 6px; }
  .card { padding: 20px 12px; min-width: 0; }
  .service-list li, .features-list li {
    padding: 18px 10px 14px 14px;
    min-width: 0;
  }
  .footer-info { gap: 9px; font-size: 14px; }
  .testimonial-card {
    max-width: 100%;
    padding: 14px 10px;
  }
  .hero {
    min-height: 160px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 28px;
  }
  .hero h1 { font-size: 1.27rem; }
  .hero p { font-size: 1rem; }
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
  .section { margin-bottom: 33px; }
  .text-section { padding: 14px 5px; border-radius: 10px; font-size: 0.98rem; }
}

/* Show/hide mobile menu toggle & nav at breakpoints */
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  .main-nav { display: flex !important; }
}

/* =====================
   ANIMATIONS AND INTERACTIONS
   ===================== */
a, .cta-button, .main-nav a, .mobile-nav a, .cookie-btn, .cookie-banner button, .service-list li, .testimonial-card, .features-list li {
  transition: background .21s, color .17s, box-shadow .2s;
}

/* =====================
   UTILITY CLASSES
   ===================== */
.bg-primary { background: #254932 !important; }
.bg-accent { background: #CB7D2C !important; }
.bg-secondary { background: #F9EEE3 !important; }
.text-accent { color: #CB7D2C !important; }
.text-primary { color: #254932 !important; }
.rounded { border-radius: 18px !important; }
.shadow { box-shadow: 0 4px 18px rgba(203,125,44,0.11) !important; }

/* =====================
   FOCUS STATES ACCESSIBILITY
   ===================== */
*:focus-visible {
  outline: 2px solid #CB7D2C;
  outline-offset: 2px;
}

/* =====================
   GENERAL SPACING & ALIGNMENT ENFORCEMENT
   ===================== */
.section, .card, .features-list li, .service-list li, .testimonial-card {
  margin-bottom: 20px;
}
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.m-b-24 { margin-bottom: 24px !important; }

/* =====================
   MODAL BACKDROP for cookie modal
   ===================== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 399;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(37,73,50,.27);
  transition: opacity .18s;
  display: none;
}
.cookie-modal-backdrop.open {
  display: block;
}

/* =====================
   Z-INDEX STRATEGY
   ===================== */
header { z-index: 99; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 300; }
.cookie-modal, .cookie-modal-backdrop { z-index: 400; }

/* =====================
   PRINT STYLES (OPTIONAL)
   ===================== */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  .section, .card, .features-list li, .service-list li, .testimonial-card { box-shadow: none !important; background: #fff !important; color: #000 !important; }
}
