/*--------------------------------------------------
  CSS RESET & NORMALIZE for wide compatibility
--------------------------------------------------*/
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F3F6F4;
  color: #234553;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 8px 12px;
  text-align: left;
}

/*--------------------------------------------------
  VARIABLES (with fallbacks)
--------------------------------------------------*/
:root {
  --primary: #234553;
  --secondary: #D6B98E;
  --accent: #F3F6F4;
  --success: #51705e;
  --error: #ab4730;
  --background: #F3F6F4;
  --surface: #fff;
  --nature-green: #739268;
  --nature-brown: #A18958;
  --nature-beige: #F6EDD9;
  --nature-shadow: 0 2px 10px rgba(115,146,104,0.11);
}

/*--------------------------------------------------
  TYPOGRAPHY: Nature-Organic Style
--------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--nature-green);
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
  color: var(--nature-brown);
}
em, i {
  font-style: italic;
  color: var(--nature-green);
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #234553;
}
body, li, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

/* Link Styles */
a {
  color: var(--nature-green);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--primary);
  text-decoration-thickness: 2px;
}

/*--------------------------------------------------
  CONTAINER & LAYOUTS
--------------------------------------------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 32px;
  box-shadow: var(--nature-shadow);
}

.section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--nature-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(115,146,104,0.21);
  transform: translateY(-3px) scale(1.03);
}

.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;
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--nature-shadow);
  border-left: 6px solid var(--nature-green);
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #234553;
  font-style: italic;
  font-size: 1.1rem;
  flex: 1 1 70%;
  margin-bottom: 0;
}
.testimonial-card > div {
  font-size: 1rem;
  color: #234553;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card img {
  height: 18px;
  width: auto;
  margin-left: 2px;
}

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

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breadcrumb {
  font-size: 0.93rem;
  color: var(--nature-green);
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
.breadcrumb a {
  color: var(--nature-green);
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--primary);
  font-weight: 500;
}

.store-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.store-map img {
  height: 38px;
  width: 38px;
}

/*--------------------------------------------------
  BUTTONS & CTA
--------------------------------------------------*/
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 26px;
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  box-shadow: 0 1.5px 4px rgba(35,69,83,0.08);
  margin-top: 18px;
  margin-bottom: 8px;
}
.cta.primary {
  background: var(--nature-green);
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 15px rgba(115,146,104,0.16);
  transform: translateY(-1.5px) scale(1.036);
}
.cta.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--nature-green);
  color: #fff;
}

button, .btn {
  cursor: pointer;
  border-radius: 22px;
  border: none;
  background: var(--nature-green);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  transition: background 0.18s, color 0.18s;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--primary);
  color: #fff;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  border: 1.5px solid var(--nature-green);
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 1rem;
  background: #f6f8f5;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  color: #234553;
  transition: border 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: var(--primary);
}

/*--------------------------------------------------
  HEADER & NAVIGATION
--------------------------------------------------*/
header {
  background: var(--nature-beige);
  box-shadow: 0 1.5px 8px rgba(35,69,83,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 0;
  min-height: 68px;
}
header .logo {
  margin: 0 32px 0 26px;
  display: flex;
  align-items: center;
}
header .logo img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 8px 16px;
  color: var(--primary);
  border-radius: 18px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: var(--nature-green);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  transition: background 0.18s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
}

/*--------------------------------------------------
  MOBILE NAVIGATION
--------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,69,83,0.88);
  backdrop-filter: blur(1.5px);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.31s cubic-bezier(.55,.12,.49,.97);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 26px 12px 0;
  background: var(--nature-brown);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.24rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2020;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--nature-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 0 38px;
  width: 70vw;
  max-width: 370px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 14px;
  width: 100%;
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nature-green);
  color: #fff;
}

@media (max-width: 1050px) {
  header .container {
    padding: 0 12px;
  }
  .container {
    padding: 0 8px;
  }
}

@media (max-width: 950px) {
  header nav {
    gap: 14px;
  }
}

@media (max-width: 880px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  header .logo {
    margin-left: 10px;
    margin-right: 10px;
  }
  .mobile-menu-close {
    margin-right: 10px;
  }
  .mobile-nav {
    margin-left: 10px;
    width: 87vw;
    max-width: 97vw;
  }
}

/*--------------------------------------------------
  HERO STYLES
--------------------------------------------------*/
.hero {
  background: var(--nature-beige);
  border-radius: 40px;
  margin-bottom: 56px;
  box-shadow: 0 12px 48px rgba(115,146,104,0.11);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero h1,
.hero p {
  color: var(--primary);
}

/*--------------------------------------------------
  UL/OL STYLES
--------------------------------------------------*/
ul, ol {
  margin-bottom: 18px;
  padding-left: 24px;
}
ul li, ol li {
  font-size: 1rem;
  color: #234553;
  margin-bottom: 12px;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 10px;
}
ul li img {
  height: 28px;
  width: 28px;
  margin-right: 7px;
}

ol {
  counter-reset: listItem;
  list-style: none;
  padding-left: 0;
}
ol li {
  counter-increment: listItem;
  position: relative;
  padding-left: 28px;
}
ol li::before {
  content: counter(listItem) ". ";
  position: absolute;
  left: 0;
  color: var(--nature-green);
  font-weight: 600;
}

/*--------------------------------------------------
  PRICING TABLES
--------------------------------------------------*/
.pricing-table {
  margin: 26px 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.pricing-table table {
  border-radius: 17px;
  background: var(--surface);
  border: 1px solid var(--nature-green);
  box-shadow: 0 2px 12px rgba(115,146,104,0.08);
}
.pricing-table th {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
}
.pricing-table tr td,
.pricing-table tr th {
  font-size: 1rem;
  border-bottom: 1px solid #e6ebe5;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/*--------------------------------------------------
  FOOTER
--------------------------------------------------*/
footer {
  background: var(--nature-beige);
  border-top: 1.5px solid #eae2cc;
  margin-top: 56px;
  padding: 36px 0 16px 0;
  box-shadow: 0 -1.5px 12px rgba(35,69,83,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--nature-green);
  justify-content: center;
}
footer nav a {
  padding: 5px 12px;
  border-radius: 9px;
  color: var(--nature-green);
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  background: var(--nature-green);
  color: #fff;
}
footer .text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14px;
  color: var(--primary);
  font-size: 0.98rem;
  gap: 5px;
  text-align: center;
}

/*--------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
--------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 94vw;
  max-width: 620px;
  background: #fffbee;
  border: 1.5px solid var(--nature-brown);
  padding: 22px 26px 18px 26px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 32px rgba(161,137,88,0.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  z-index: 3900;
  font-size: 1rem;
  animation: cookieSlideUp 0.6s cubic-bezier(.63,.09,.37,.88) both;
}
@keyframes cookieSlideUp {
  0% { opacity: 0; transform: translateX(-50%) translateY(70px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .btn,
.cookie-banner button {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 16px;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
  color: #fff;
  background: var(--nature-green);
}
.cookie-banner button.cookie-settings {
  background: var(--nature-brown);
  color: #fff;
}
.cookie-banner button.cookie-reject {
  background: var(--error);
}
.cookie-banner button.cookie-accept {
  background: var(--nature-green);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,69,83,0.47);
  z-index: 3990;
  transition: opacity 0.25s;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.92);
  background: #fff;
  border: 2px solid var(--nature-brown);
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(35,69,83,0.24);
  max-width: 400px;
  width: 96vw;
  z-index: 3994;
  padding: 34px 22px 28px 22px;
  animation: cookieModalIn 0.32s cubic-bezier(.28,1.47,.41,1.01);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%,-60%) scale(0.80); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 1.31rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal .cookie-switch input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--nature-green);
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 3.2px;
  top: 3.6px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: var(--primary);
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-modal .cookie-locked {
  color: var(--primary);
  font-size: 1.01em;
  margin-left: 8px;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .btn {
  border-radius: 16px;
  background: var(--nature-green);
  color: #fff;
}
.cookie-modal .btn:hover,
.cookie-modal .btn:focus {
  background: var(--primary);
  color: #fff;
}

/*--------------------------------------------------
  RESPONSIVE DESIGN (mobile-first)
--------------------------------------------------*/
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .container {
    padding: 0 4vw;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 38px;
    border-radius: 19px;
  }
  .card {
    border-radius: 13px;
    padding: 20px 10px;
    min-width: 170px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .hero {
    border-radius: 23px;
    margin-bottom: 30px;
  }
  .hero .container {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px;
    gap: 13px;
    border-radius: 14px;
  }
  .testimonial-card p {
    font-size: 1rem;
  }
  footer {
    padding: 18px 0 10px 0;
    margin-top: 27px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/*--------------------------------------------------
  MICRO-INTERACTIONS & HOVER EFFECTS
--------------------------------------------------*/
.card, .testimonial-card, .cta, .btn, .mobile-menu,.mobile-menu-close,.mobile-menu-toggle, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 24px rgba(115,146,104,0.19);
}
input[type="text"]:hover, input[type="email"]:hover {
  border-color: var(--nature-brown);
}

/*--------------------------------------------------
  ACCESSIBILITY & GENERAL
--------------------------------------------------*/
:focus {
  outline: 2px solid var(--nature-green);
  outline-offset: 2px;
}

/* Utility classes if needed */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }

/**************************
  NATURE STYLE DECORATIVE
**************************/
.section, .card, .testimonial-card, .hero {
  box-shadow: 0 2px 18px rgba(115,146,104,0.11);
}
.hero,
.section {
  background: linear-gradient(110deg,#F3F6F4 70%, #dbeedc 100%);
  /* gentle organic curve */
  border-top-left-radius: 42% 19px;
  border-top-right-radius: 55% 14px;
}
@media (max-width:600px) {
 .hero,
 .section { border-radius: 8px; }
}

hr {
  height: 1px;
  border: none;
  background: #e2e6e0;
  margin: 32px 0;
}

/*--------------------------------------------------
  END
--------------------------------------------------*/
