/* RESET & BASE STYLES */
html,
body,
h1, h2, h3, h4, h5, h6,
p, ol, ul, li, dl, dt, dd,
figure,
blockquote,
dl,
dd,
a,
span,
img,
address {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #2a322a;
  background: #F5F7FA;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* NATURE ORGANIC THEME COLORS (Earth Tones, Green Accents) */
:root {
  --color-primary: #224E68;  /* Deep Slate Blue - Brand */
  --color-secondary: #faf8f3; /* Bright warm neutral background */
  --color-accent: #BB6500;   /* Deep Earth Orange */
  --color-green: #56844e;    /* Toned olive green */
  --color-brown: #B09B73;    /* Light brown, wood */
  --color-text: #2a322a;
  --color-white: #fff;
  --color-card-background: #fbfbf8; /* Off white for cards */
  --color-shadow: rgba(85, 108, 85, 0.07);
  --color-shadow-dark: rgba(85, 108, 85, 0.14);
}

body {
  background: var(--color-secondary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.14;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-green);
}
h4 {
  font-size: 1.1rem;
  color: var(--color-green);
}
p, ul, ol, address, li, dl, dd {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover,
a:focus {
  color: var(--color-green);
  text-decoration: underline;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* HEADER */
header {
  background: var(--color-white);
  box-shadow: 0 4px 14px var(--color-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  min-height: 72px;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
  margin-right: 30px;
}
@media (max-width: 480px) {
  .logo img { height: 34px; }
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-green);
  color: var(--color-white);
}
.cta-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px 24px 36px 24px/26px 34px 24px 30px; /* organic shape */
  box-shadow: 0 4px 16px var(--color-shadow);
  letter-spacing: 0.03em;
  margin-left: 28px;
  transition: background 0.18s, transform 0.12s, box-shadow 0.2s;
  cursor: pointer;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--color-green);
  transform: translateY(-2px) scale(1.035) rotate(-0.7deg);
  box-shadow: 0 8px 20px var(--color-shadow-dark);
  color: var(--color-white);
  text-decoration: none;
}
.mobile-menu-toggle {
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: 18px 14px 24px 14px/14px 22px 12px 20px;
  padding: 8px 16px;
  font-size: 1.5rem;
  margin-left: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-accent);
}
@media (max-width: 1024px) {
  header nav { display: none; }
  .cta-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-secondary);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.72,.01,.23,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 36px;
  width: 100%;
  max-width: 400px;
  box-shadow: -6px 0 32px var(--color-shadow-dark);
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: 44px 26px 32px 20px;
  font-size: 1.35rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background 0.18s;
  cursor: pointer;
  z-index: 1220;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 48px;
  padding-left: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 14px 0;
  color: var(--color-primary);
  border-radius: 8px 24px 20px 12px/18px 18px 22px 32px;
  transition: background 0.18s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-green);
  color: var(--color-white);
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu.active { display: none !important; }
}

/* SECTIONS & LAYOUTS (nature_organic) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 38px 62px 44px 48px/38px 52px 38px 62px;
}
section:last-child {
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* Cards and Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-card-background);
  box-shadow: 0 3px 16px var(--color-shadow);
  border-radius: 24px 36px 28px 20px/22px 28px 30px 18px;
  margin-bottom: 20px;
  padding: 28px 24px;
  min-width: 235px;
  max-width: 350px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 34px var(--color-shadow-dark);
  transform: translateY(-3px) scale(1.025);
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 28px;
  margin-bottom: 8px;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 220px;
  background: var(--color-card-background);
  border-radius: 30px 22px 26px 18px/30px 28px 18px 28px;
  box-shadow: 0 3px 16px var(--color-shadow);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.18s, background 0.2s;
  margin-bottom: 20px;
}
.feature-grid img {
  height: 52px;
  width: auto;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 1024px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div { min-width: 0; width: 100%; }
}

.benefits ul,
.review-highlights ul {
  list-style: disc outside;
  margin-left: 24px;
  margin-bottom: 0;
}

/***** HERO SECTION *****/
.hero {
  background: linear-gradient(120deg, #F7F5EB 60%, #e2eedb 100%);
  border-radius: 0 0 64px 64px/0 0 72px 84px;
  margin-bottom: 60px;
  padding: 58px 0 70px 0;
  box-shadow: 0 4px 20px var(--color-shadow);
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  gap: 28px;
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.5rem;
}
.hero p {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 28px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 30px 30px/0 0 36px 42px;
    padding: 42px 0 34px 0;
  }
  .hero .content-wrapper { max-width: 100%; }
}

/***** CTA BLOCK *****/
.cta-block {
  background: linear-gradient(127deg, #e2eedb 70%, #F7F5EB 100%);
  border-radius: 54px 22px 56px 24px/52px 62px 44px 50px;
  box-shadow: 0 3px 20px var(--color-shadow);
  margin-bottom: 40px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.cta-block h2 {
  color: var(--color-accent);
  margin-bottom: 10px;
}
.cta-block p {
  color: var(--color-green);
  font-size: 1.09rem;
}

/***** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: var(--color-card-background);
  box-shadow: 0 2px 12px var(--color-shadow);
  border-radius: 36px 20px 24px 34px/28px 34px 16px 28px;
  flex-wrap: wrap;
  min-width: 220px;
  max-width: 620px;
}
.testimonial-card p {
  color: #184325;
  font-size: 1.07rem;
  font-weight: 500;
  flex: 2 1 120px;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  flex: 1 0 100px;
}
@media (max-width: 820px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 12px; }
}

.rating-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ebf5e9;
  border-radius: 20px 36px 28px 14px/15px 28px 12px 20px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 18px 20px 18px 18px;
  margin-bottom: 18px;
  color: #184325;
  font-weight: 500;
}
.rating-summary strong {
  color: var(--color-green);
  font-size: 1.18rem;
}

.review-highlights {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/***** FAQ LIST *****/
.faq-list {
  margin: 0 0 0 14px;
}
.faq-list dt {
  font-weight: 700;
  color: var(--color-green);
  margin-top: 16px;
  margin-bottom: 2px;
}
.faq-list dd {
  margin-left: 14px;
  margin-bottom: 12px;
}

/***** ADDRESS, MAP EMBED *****/
address {
  font-style: normal;
  line-height: 1.6;
  color: var(--color-text);
}
.map-embed {
  background: #e6eedd;
  border-radius: 24px 30px 14px 22px/22px 18px 26px 30px;
  box-shadow: 0 1px 6px var(--color-shadow);
  color: #375239;
  padding: 20px 18px;
  font-size: 1rem;
}

/***** FOOTER *****/
footer {
  background: #e0e3de;
  border-top: 6px solid var(--color-brown);
  padding-top: 35px;
  padding-bottom: 26px;
  margin-top: 38px;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-menus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-menus nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-menus nav a {
  color: var(--color-primary);
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 4px;
  transition: color 0.14s;
  border-radius: 8px 14px 8px 10px/10px 8px 8px 16px;
}
.footer-menus nav a:hover,
.footer-menus nav a:focus {
  color: var(--color-green);
  background: #f0ebe0;
}
.footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 10px;
}
.footer-copy {
  color: #4e5b44;
  font-size: 0.93rem;
  text-align: center;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: linear-gradient(90deg, #e2eedb 70%, #F7F5EB 100%);
  box-shadow: 0 -3px 20px var(--color-shadow-dark);
  color: #224E68;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 20px 24px 20px;
  border-radius: 22px 22px 0 0/36px 38px 0 0;
  animation: cookieFadeIn 0.8s cubic-bezier(.72,.01,.23,1);
}
@keyframes cookieFadeIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0%); opacity: 1; }
}
.cookie-banner .cookie-banner-text {
  font-size: 1.08rem;
  margin-bottom: 14px;
  color: #3C5536;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 24px;
  border-radius: 26px 20px 22px 16px/18px 18px 24px 28px;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
  margin-right: 0px;
}
.cookie-btn.accept {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: 600;
}
.cookie-btn.accept:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.cookie-btn.reject {
  background: #e6eedd;
  color: var(--color-green);
  font-weight: 500;
  border: 1.5px solid var(--color-green);
}
.cookie-btn.reject:hover {
  background: #F7F5EB;
  color: #bb6500;
  border-color: var(--color-accent);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  font-weight: 500;
  border: 1.5px solid var(--color-primary);
}
.cookie-btn.settings:hover {
  background: #f5f7fa;
}

/***** COOKIE MODAL *****/
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(86, 132, 78, 0.20);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.28s cubic-bezier(.72,.01,.33,1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
@keyframes cookieModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--color-card-background);
  border-radius: 36px 18px 30px 22px/24px 34px 14px 32px;
  box-shadow: 0 6px 36px var(--color-shadow-dark);
  max-width: 410px;
  width: 90vw;
  padding: 38px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: cookieContentPop 0.45s cubic-bezier(.87,-0.38,.54,2.11);
}
@keyframes cookieContentPop {
  0% { transform: scale(.82); opacity: 0; }
  85% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.19rem;
  color: var(--color-green);
  margin-bottom: 12px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.cookie-category-toggle {
  accent-color: var(--color-accent);
  width: 20px;
  height: 20px;
}
.cookie-close-btn {
  background: var(--color-green);
  color: var(--color-white);
  border: none;
  border-radius: 24px 18px 22px 14px;
  padding: 6px 18px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  position: absolute;
  top: 14px;
  right: 20px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 10;
}
.cookie-close-btn:hover,
.cookie-close-btn:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

/* FORM ELEMENTS */
input, select, textarea {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: #f3f4ef;
  border: 1.4px solid #bdb8a0;
  border-radius: 16px 14px 18px 14px/14px 18px 14px 16px;
  padding: 12px 18px;
  margin-bottom: 18px;
  transition: border 0.17s, background 0.14s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-green);
  background: #f7fff6;
  outline: 1.5px solid var(--color-green);
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* TABLES, DL, DT, DD */
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 8px; }
th { background: #f1ede2; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; }
dt { font-weight: 600; }
dd { margin-bottom: 10px; margin-left: 18px; }

/* RESPONSIVE DESIGN */
@media (max-width: 880px) {
  .container { max-width: 97vw; }
  section, .section { padding: 28px 10px; }
  .feature-grid { gap: 12px; }
  .testimonial-card { max-width: 97vw; }
  footer .footer-menus nav { gap: 8px; }
}
@media (max-width: 600px) {
  header .container { padding: 0 6px; }
  .logo img { height: 31px; }
  .content-wrapper, .text-section { gap: 12px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .cta-primary { font-size: 0.97rem; padding: 12px 20px; margin-left: 12px; }
  .card, .feature-grid > div { padding: 16px 7px; font-size: 0.99rem; }
  .card { min-width: unset; }
  .map-embed { padding: 12px 4px; font-size: 0.92rem; }
  footer { padding-bottom: 10px; }
  .footer-logo img { height: 28px; }
}

/***** SPACING & FLEX UTILITIES for NATURE_ORGANIC STYLE *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** MICRO-ANIMATIONS *****/
.card, .feature-grid > div, .testimonial-card, .cta-block, .cookie-modal-content {
  transition: box-shadow 0.18s, transform 0.18s, background 0.16s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 8px 34px var(--color-shadow-dark);
  transform: translateY(-2px) scale(1.03) rotate(-0.5deg);
  background: #eff7ec;
}

/***** VISUAL DETAILS & ORGANIC TEXTURES *****/
.card, .feature-grid > div, .testimonial-card, .cta-block, .cookie-banner, .cookie-modal-content {
  /* Slight background pattern: organic dots */
  background-image: radial-gradient(rgba(128,140,110,0.04) 1.3px, transparent 1.3px), radial-gradient(rgba(139,112,96,0.013) 0.9px, transparent 0.9px);
  background-size: 19px 19px, 42px 42px;
  background-position: 10px 6px, 22px 13px;
}

/***** MISC ACCESSIBILITY, Z-INDEX, & PRINT *****/
*:focus-visible { outline: 2px solid var(--color-green); outline-offset: 2px; }
img { max-width: 100%; height: auto; border-radius: 10px; }

@media print {
  body { background: #fff !important; color: #111 !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .card, .feature-grid > div { background: #fff !important; box-shadow: none !important; }
}

/* Hide cookie modal close button on print */
@media print {
  .cookie-close-btn { display: none !important; }
}
