/*-------------------------------
  CSS RESET & NORMALIZATION
-------------------------------*/
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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #faf7ef;
  color: #2c2c1e;
}
ol, ul {
  list-style: disc inside;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table { border-collapse: collapse; width: 100%;}
th, td {padding: 8px 12px; text-align: left;}
th {background: #eaf4e7; color: #20603d; font-family: 'Montserrat', Arial, sans-serif;}

/*-------------------------------
  NATURE ORGAINC DESIGN SYSTEM
-------------------------------*/
:root {
  --color-primary: #20603d;
  --color-secondary: #2f2465;
  --color-accent: #f5c90c;
  --color-bg: #faf7ef;
  --color-bg-alt: #eaf4e7;
  --color-surface: #fff;
  --color-border: #c4bbac;
  --color-text: #2c2c1e;
  --color-muted: #7e7e6c;
  --color-success: #6dbc5f;
  --shadow-card: 0 4px 16px 0 rgba(32,96,61,0.07);
  --shadow-elevate: 0 8px 24px 0 rgba(47,36,101,0.07);
  --radius-lg: 28px;
  --radius-md: 14px;
  --radius-sm: 7px;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; margin-bottom: 28px; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
main h1, main h2, main h3, main h4 { text-wrap: balance; }

p, ul, ol {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol { margin-left: 20px; }
li { margin-bottom: 8px; }
blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 14px;
  font-style: italic;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}
cite {
  display: block;
  padding-top: 8px;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  padding: 24px 0 0 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/*-------------------------------
  NAVIGATION & LOGO
-------------------------------*/
header {
  background: #f4efe4;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px 0 rgba(32,96,61,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 14px;
}
.logo img {
  height: 56px;
  width: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  background: none;
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-bg-alt);
  color: var(--color-secondary);
  outline: none;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-surface);
  background: var(--color-primary);
  border: none;
  padding: 12px 34px;
  border-radius: 34px;
  box-shadow: 0 4px 16px 0 rgba(32,96,61,0.12);
  transition: background 0.22s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-left: 18px;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px 0 rgba(47,36,101,0.07);
}

/* Responsive nav: Hide main menu and show burger on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  outline: none;
}

/*-------------------------------
  MOBILE MENU (fixed overlay)
-------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,96,61, 0.97);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transform: translateX(-100%);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
  margin-left: 24px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  padding: 12px 0;
  font-weight: 700;
  position: relative;
  border-radius: var(--radius-sm);
  min-width: 180px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  outline: none;
}

/*-------------------------------
  FLEXBOX LAYOUTS & SECTIONS
-------------------------------*/
/* Flex spacing utility classes (required in project) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.17s;
  overflow: hidden;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(32,96,61,0.12);
}
.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;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 6px rgba(32, 96, 61, 0.09);
  margin-bottom: 20px;
  transition: box-shadow 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 16px 0 rgba(47,36,101,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Project-specific flex layouts */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0;
}
.features-grid > div {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  min-width: 230px;
  min-height: 210px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.14s, transform 0.14s;
  margin-bottom: 0;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 8px 28px 0 rgba(32,96,61,0.12);
  transform: translateY(-2px) scale(1.02);
}
.features-grid img {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
}
.features-grid h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.features-grid span {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 1rem;
}

/* Cards and grid alignment spacing */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/*-------------------------------
  TABLES
-------------------------------*/
table {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin: 28px 0;
  font-size: 1rem;
}
thead {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
thead th {
  font-weight: 700;
}
tbody tr:nth-child(odd) {
  background: #f5fbe9;
}
tbody tr:nth-child(even) {
  background: var(--color-bg-alt);
}
tbody td {
  border-bottom: 1px solid #e0e2cc;
  color: var(--color-text);
  font-size: 1rem;
}
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead { display: none; }
  tbody td {
    border: none;
    padding: 8px 0;
  }
  tbody tr { background: none; }
}

/*-------------------------------
  FOOTER
-------------------------------*/
footer {
  background: #eaf4e7;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 8px 0 rgba(32,96,61,0.03);
  padding: 36px 0 20px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  transition: color 0.14s;
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-brand img {
  width: 88px;
  height: 88px;
  margin-bottom: 12px;
}
.footer-contact {
  min-width: 220px;
  color: var(--color-muted);
  font-size: 0.98rem;
}

/*-------------------------------
  COOKIE CONSENT BANNER + MODAL
-------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1100;
  background: #eaf4e7;
  color: var(--color-primary);
  box-shadow: 0 -4px 18px 0 rgba(32,96,61,0.09);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.40s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
  opacity: 0.4;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 34px;
  padding: 10px 26px;
  margin: 0 2px;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 1px 5px rgba(32,96,61,0.10);
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-banner button.cookie-reject {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  outline: none;
  transform: scale(1.025);
}

/* Cookie modal overlay */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,96,61,0.43);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalIn 0.25s cubic-bezier(.3,.83,.6,.93);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: scale(0.88); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px 0 rgba(32,96,61,0.17);
  max-width: 410px;
  width: 92vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  opacity: 0.75;
  transition: color 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-accent);
  outline: none;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 35px; height: 20px;
  border-radius: 10px;
  background: #eaf4e7;
  position: relative;
  outline: none;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: var(--color-success);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(32,96,61,0.09);
  transition: transform 0.15s;
}
.cookie-toggle:checked::before {
  transform: translateX(15px);
}
.cookie-modal-content .cookie-btn-row {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  user-select: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.essential-info {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-left: 6px;
  font-style: italic;
}

/*-------------------------------
  MICRO-INTERACTIONS & ANIMATIONS
-------------------------------*/
section, .section {
  animation: fadeInUp 0.42s cubic-bezier(.33,.72,.44,.99);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none;}
}

a, .cta-btn, button, .features-grid > div, .card {
  transition: background 0.18s, color 0.18s, box-shadow 0.14s, transform 0.13s;
}

/*-------------------------------
  ORGANIC, EARTHY AESTHETIC
-------------------------------*/
.section, .features-grid > div, .testimonial-card, .card, .cookie-banner, .cookie-modal-content {
  border-radius: 44% 56% 46% 54% / 60% 55% 45% 50%; /* organic blob shape (subtle)*/
}
.features-grid > div:nth-child(2n) {
  border-radius: 53% 47% 55% 45% / 59% 61% 39% 50%;
}

.section {
  background: linear-gradient(90deg, #eaf4e7 0%, #f9f6e4 100%);
  border: 1.5px solid #e2dece;
}

.features-grid > div {
  background: linear-gradient(100deg, #f0f8ef 60%, #f6efdb 100%);
  border: 1px solid #e4e4d2;
}

.testimonial-card {
  background: #f6fbed;
  border: 1.5px solid #dae5d6;
}

/* Organic decorative SVG accent (if available) */
.organic-deco {
  position: absolute;
  width: 110px; height: 80px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
  left: -32px; bottom: -16px;
}

/*-------------------------------
  ACCESSIBLE CONTRAST FOR TESTIMONIAL (REQUIRED)
-------------------------------*/
.testimonial-card {
  color: #222e1f;
  background: #f6fbed;
}
.testimonial-card cite {
  color: #20603d;
}

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

/*-------------------------------
  RESPONSIVE DESIGN
-------------------------------*/
@media (max-width: 1180px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .features-grid { flex-direction: column; }
  .features-grid > div { min-width: 0; width: 100%; }
  footer .container { gap: 20px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 11px; }
  header .container { flex-direction: row; gap: 12px; padding: 12px 7px; }
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; margin-right: 6px; padding: 12px 16px; font-size: 1rem; }
  .mobile-menu-toggle { display: flex !important; }
  .features-grid { flex-direction: column; gap: 16px; }
  .features-grid > div { min-width: 0; width: 100%; min-height: 0; padding: 18px 10px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 9px; }
  .section, section { padding: 32px 4vw; margin-bottom: 38px; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.08rem; }
  .content-grid { flex-direction: column; gap: 12px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .footer-brand img { width: 68px; height: 68px; }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 14px; margin-bottom: 18px; }
}
@media (max-width: 500px) {
  .section, section { padding: 18px 2vw; }
  .cta-btn { width: 100%; min-width: 0; padding: 12px; }
  .cookie-banner { padding: 14px 7px; font-size: 0.97rem; border-radius: 15px 15px 0 0; }
}

/*-------------------------------
  FORM ELEMENTS, LISTS & MISC
-------------------------------*/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  border: 1.3px solid var(--color-border);
  background: #fff;
  color: var(--color-primary);
  padding: 9px 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-bg-alt);
}
label { font-weight: 600; font-family: 'Montserrat', Arial, sans-serif; }

strong { font-weight: bold; color: var(--color-secondary); }
em { font-style: italic; }

hr {
  border: none;
  border-top: 1.2px dashed var(--color-border);
  margin: 36px 0;
}

/*-------------------------------
  SCROLLBAR APPEARANCE (Thin, organic)
-------------------------------*/
::-webkit-scrollbar {width: 9px;}
::-webkit-scrollbar-thumb {
  background: #dbeddc;
  border-radius: 7px;
}
::-webkit-scrollbar-track {background: transparent;}

/*-------------------------------
  HOVER/FOCUS OUTLINES
-------------------------------*/
:focus-visible {
  outline: 2.2px solid var(--color-accent);
  outline-offset: 2px;
}

/*-------------------------------
  PRINT FRIENDLY
-------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none !important; }
  section, .section { box-shadow: none; background: #fff; border: none; padding: 0; margin-bottom: 20px; }
}
