/* ========================= RESET & BASE ========================= */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #253228;
  background-color: #F8F5F1;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #21784A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A3556;
  outline: none;
}
/* ========================= BRAND COLORS ========================= */
:root {
  --brand-primary: #1A3556;
  --brand-secondary: #F7B32B;
  --brand-accent: #EDEDED;
  --earth-green: #21784A;
  --earth-brown: #A67D4D;
  --earth-stone: #E8E5DF;
  --offwhite: #F8F5F1;
  --shadow-primary: rgba(45, 78, 41, 0.07);
  --shadow-strong: rgba(40,60,20,0.14);
}
/* ========================= TYPOGRAPHY ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1A3556;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}
ul, ol {
  padding-left: 26px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.text-section ul li, .content-wrapper ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.text-section ul img, .content-wrapper ul img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
/* ========================= LAYOUT CONTAINERS ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper, .text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* ========================= FLEX LAYOUT PATTERNS ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--shadow-primary);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 250px;
}
.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;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px 28px 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--shadow-strong);
  padding: 20px;
  color: #283222;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background-color: #F5F8F4;
  border-radius: 18px 26px 18px 26px;
  box-shadow: 0 2px 9px var(--shadow-primary);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  transition: transform 0.2s, box-shadow 0.23s;
}
.feature-item:hover, .card:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 7px 20px var(--shadow-strong);
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
/* Used for testimonial readability (enforce dark text on light bg) */
.testimonial-card p, .testimonial-card span {
  color: #253228;
}
/* ========================= HEADER & NAV ========================= */
header {
  background: #fff;
  border-bottom: 1.5px solid #E8E5DF;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--earth-green);
  font-weight: 600;
  font-size: 1.06rem;
  text-decoration: none;
  position: relative;
  padding: 5px 3px;
  border-radius: 7px;
  transition: background 0.15s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
header a.button-primary {
  margin-left: 16px;
}
/* ========================= BUTTONS ========================= */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
  border-radius: 30px 18px 30px 18px;
  padding: 13px 32px;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.21s;
  box-shadow: 0 2px 8px var(--shadow-primary);
  outline: none;
}
.button-primary {
  background: var(--earth-green);
  color: #fff;
}
.button-primary:hover, .button-primary:focus {
  background: var(--brand-secondary);
  color: #1A3556;
  transform: translateY(-2px) scale(1.033);
  box-shadow: 0 5px 20px var(--shadow-strong);
}
.button-secondary {
  background: #fff;
  color: var(--earth-green);
  border: 2px solid var(--earth-green);
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--earth-green);
  color: #fff;
  border-color: var(--brand-secondary);
  transform: translateY(-2px) scale(1.029);
  box-shadow: 0 5px 20px var(--shadow-strong);
}
/* icon inside button */
.button-primary img, .button-secondary img {
  width: 21px;
  height: 21px;
  margin-right: 9px;
}
/* ========================= MOBILE MENU ========================= */
.mobile-menu-toggle {
  display: inline-flex;
  background: var(--earth-green);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 6px 17px 6px 12px;
  margin-left: 8px;
  cursor: pointer;
  z-index: 202;
  align-items: center;
  transition: background 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 7px var(--shadow-primary);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  color: var(--earth-green);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,53,86,0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 29px 32px;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(0.62,0,0.38,1);
  z-index: 2103;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.35rem;
  margin-bottom: 19px;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.12s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none!important;
  }
  header nav {
    display: flex!important;
  }
}
@media (max-width: 1023px) {
  header nav {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
/* ========================= MAIN SECTIONS + GRIDS ========================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}
/* Cards */
.card {
  background: linear-gradient(108deg, #F8F5F1 62%, #EDEDED 100%);
  border: 1.5px solid #E8E5DF;
}
/* ========================= SECTIONS ========================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:last-child {
  margin-bottom: 0;
}
.text-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px var(--shadow-primary);
  padding: 28px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* ========================= CTA SECTIONS ========================= */
.content-wrapper > .button-primary,
.content-wrapper > .button-secondary {
  align-self: flex-start;
}
.content-wrapper > h2 {
  margin-top: 0;
}
/* ========================= TESTIMONIALS ========================= */
.testimonial-card {
  background: #fff;
  border-left: 7px solid var(--earth-green);
  box-shadow: 0 3px 16px var(--shadow-primary);
  border-radius: 20px 34px 20px 24px;
  margin-bottom: 20px;
  padding: 26px 22px 17px 28px;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  max-width: 650px;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Georgia', serif;
  font-size: 2.9rem;
  color: var(--brand-secondary);
  position: absolute;
  top: 9px;
  left: 8px;
  opacity: 0.29;
  pointer-events: none;
}
.testimonial-card p {
  font-size: 1.18rem;
  line-height: 1.6;
  margin-bottom: 8px;
  font-style: italic;
  color: #253228;
  max-width: 520px;
}
.testimonial-card span {
  font-size: 0.93rem;
  color: #5D624E;
}
/* ========================= CATEGORY NAV in BLOG ========================= */
.categories-nav {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.categories-nav a {
  background: #F5F8F4;
  color: var(--earth-green);
  border-radius: 13px;
  padding: 7px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.categories-nav a:hover, .categories-nav a:focus {
  background: var(--earth-green);
  color: #fff;
}
/* ========================= FOOTER ========================= */
footer {
  background: #253228;
  padding: 38px 0 22px 0;
  color: #fff;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #F7B32B;
  font-weight: 600;
  font-size: 1.01rem;
  transition: color 0.16s;
  text-decoration: underline dotted;
}
footer nav a:hover, footer nav a:focus {
  color: #fffab0;
  text-decoration: underline solid;
}
.mini-contact {
  font-size: 0.98rem;
  color: #DDE5D7;
  line-height: 1.7;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .mini-contact {
    margin-top: 20px;
  }
}
/* ========================= COOKIE CONSENT BANNER ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff6ea;
  border-top: 2px solid #F7B32B;
  box-shadow: 0 -3px 18px var(--shadow-strong);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 10px 22px 10px;
  gap: 34px;
  font-size: 1rem;
  color: #1A3556;
  animation: cookieSlideIn 0.7s cubic-bezier(0.52,1.64,0.56,0.7) 1;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  max-width: 760px;
  color: #293D2B;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 8px 25px;
  border-radius: 18px 11px 15px 9px;
  border: none;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 1px 5px var(--shadow-primary);
  font-weight: 600;
  transition: background 0.15s, color 0.13s, box-shadow 0.17s;
}
.cookie-accept {
  background: var(--earth-green);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-reject {
  background: #fff;
  color: var(--earth-green);
  border: 1.3px solid var(--earth-green);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f9eada;
  color: var(--brand-primary);
  border-color: var(--brand-secondary);
}
.cookie-settings {
  background: var(--brand-accent);
  color: var(--earth-green);
  border: 1.3px solid #B2BEB5;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #e2dbc4;
  color: #1A3556;
}
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(20,36,20,0.71);
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal__window {
  background: #fff;
  border-radius: 28px 10px 28px 22px;
  padding: 38px 29px 30px 29px;
  width: 95%;
  max-width: 430px;
  box-shadow: 0 7px 30px var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalPopIn 0.5s cubic-bezier(0.11,1.02,0.94,0.89) 1;
}
@keyframes modalPopIn {
  from { transform: scale(0.7) translateY(62px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  color: var(--brand-primary);
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 0;
}
.cookie-modal__category input[type="checkbox"] {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  accent-color: var(--earth-green);
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: #1A3556;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--brand-secondary);
}
/* Hide modal/banner by default (to be shown via JS) */
.cookie-banner[hidden], .cookie-modal[hidden] { display: none !important; }
/* ========================= RESPONSIVE ========================= */
@media (max-width: 768px) {
  html { font-size: 93%; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.44rem; }
  .container {
    padding: 0 6px;
  }
  .section {
    padding: 25px 8px;
  }
  .content-grid,
  .feature-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .card {
    min-width: 0;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 5px; padding-bottom: 5px;
    gap: 7px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 2vw 14px 2vw;
    font-size: 0.96rem;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 9px;
  }
}
@media (max-width: 440px) {
  .footer-logo img {
    width: 125px;
  }
}
/* ========================= UTILITIES + MISC ========================= */
::-webkit-input-placeholder { color: #8a917d; }
::-moz-placeholder { color: #8a917d; }
:-ms-input-placeholder { color: #8a917d; }
::placeholder { color: #8a917d; }
.text-center {
  text-align: center;
}
.mt-24 { margin-top: 24px; }
.mt-12 { margin-top: 12px; }
.w-100 { width: 100%; }

/* ========== ORGANIC NATURE DECOR: subtle shapes for cards/sections ========== */
.section, .card, .feature-item, .testimonial-card {
  border-radius: 24px 40px 18px 30px;
  background-clip: padding-box;
}

/* ========== SUBTLE SHADOWS ON LARGE SEKTION ========== */
.section, .text-section {
  box-shadow: 0 4px 22px var(--shadow-primary);
}

/* ========== ORGANIC BORDER LINE =================== */
hr {
  height: 2px;
  background: linear-gradient(90deg,#f7b32b 14%,#21784a 87%);
  border: none;
  margin: 33px 0;
  border-radius: 7px;
}

/* ========== FORM ELEMENTS ========== */
input, textarea, select {
  border: 1.2px solid #CBD4C2;
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 18px;
  font-family: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: 2.2px solid var(--earth-green);
}

/* ========== HIDE JS-ENABLED BY DEFAULT ========== */
.mobile-menu, .cookie-modal, .cookie-banner {
  display: none;
}

.show {
  display: flex!important;
}

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