/* =====================
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F4F7FA;
  color: #2A2B2A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #27653b;
  text-decoration: none;
  transition: color .15s;
}
a:hover, a:focus {
  color: #16304A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: #27653b;
}

/* =========================
     BRAND & ORGANIC COLORS
   ========================= */
:root {
  --primary: #16304A;
  --secondary: #8EB9E1;
  --accent: #F4F7FA;
  --organic-green: #27653B;
  --soft-beige: #F6F3EE;
  --text-body: #2A2B2A;
  --text-muted: #526055;
  --earth-brown: #B39B73;
  --cream: #FFFDF8;
  --shadow: rgba(38,80,52,0.06);
}

/* ==========================
      TYPOGRAPHY & HEADINGS
   ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--organic-green);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 1rem;
}
address {
  font-style: normal;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===============
   FLEXBOX LAYOUT
   =============== */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.centered {
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Dedicated patterns from instructions */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--cream);
  border-radius: 28px;
  box-shadow: 0 2px 16px var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 1px 6px var(--shadow);
  padding: 28px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow .2s, transform .22s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(38,80,52,0.12);
  transform: translateY(-4px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--soft-beige);
  border-radius: 22px;
  box-shadow: 0 1px 10px rgba(38,80,52,0.10);
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(38,80,52,0.13);
  transform: translateY(-2px) scale(1.012);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, .card {
    padding: 22px 10px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .footer-columns {
    flex-direction: column !important;
    gap: 26px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================
      HEADER & NAVIGATION
   ========================= */
header {
  background: var(--cream);
  box-shadow: 0 2px 10px var(--shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1010;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
header img {
  height: 54px;
}
header nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--organic-green);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border .15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
  border-bottom: 2px solid var(--organic-green);
  text-decoration: none;
}
.cta-btn {
  background: var(--organic-green);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  margin-left: 22px;
  cursor: pointer;
  transition: background .20s, transform .14s, box-shadow .18s;
  box-shadow: 0 2px 10px rgba(38,80,52,0.08);
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: #194724;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  text-decoration: none;
}

/* Hamburger menu */
.mobile-menu-toggle {
  background: var(--organic-green);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .16s;
  cursor: pointer;
  z-index: 1021;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #194724;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(246,243,238,.99);
  width: 100vw;
  height: 100vh;
  z-index: 1050;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.74,.15,.42,1.19);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(38,80,52,0.22);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--organic-green);
  font-size: 2.4rem;
  padding: 24px 24px 8px 0;
  line-height: 1;
  cursor: pointer;
  transition: color .15s;
  z-index: 1060;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  margin: 36px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 14px 0;
  color: var(--organic-green);
  border-bottom: 1px solid var(--soft-beige);
  background: none;
  border-radius: 0;
  box-shadow: none;
  transition: color .19s, background .12s, padding-left .17s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  padding-left: 16px;
  text-decoration: none;
}

@media (max-width: 990px) {
  nav.main-nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================
         HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #e9f6ee 70%, #f5ecda 100%);
  min-height: 340px;
  border-radius: 0 0 45px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  box-shadow: 0 4px 32px rgba(38,80,52,0.06);
}
.hero .container,
.hero .content-wrapper {
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  margin-bottom: 20px;
}
.hero .cta-btn {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero {
    padding: 34px 5px 22px 5px;
    min-height: 180px;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 {
    font-size: 1.55rem;
  }
}

/* =====================
        FEATURES
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 28px 0 18px 0;
  list-style: none;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 180px;
  background: var(--cream);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 12px rgba(38,80,52,0.07);
  margin-bottom: 0;
  transition: box-shadow .18s, transform .18s;
}
.feature-grid li:hover {
  box-shadow: 0 4px 28px rgba(38,80,52,0.17);
  transform: scale(1.025);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    min-width: 90px;
    padding: 18px 10px;
  }
}

/* Selling points (often key points in ul) */
.selling-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc inside;
  background: none;
  color: var(--organic-green);
  padding: 0;
  margin: 22px 0 14px 0;
  font-weight: 600;
}
.selling-points li {
  background: none;
  color: var(--organic-green);
  font-weight: 600;
}

/* ========================
        TESTIMONIALS
   ======================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: var(--soft-beige);
  color: #181b17;
  min-width: 240px;
  max-width: 350px;
}
.testimonial-card p {
  color: #181b17;
  font-size: 1rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 0.97rem;
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    width: 100%;
    max-width: none;
  }
}

/* FAQ Possible Pattern */
.faq {
  background: var(--accent);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 14px var(--shadow);
}
.faq h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--organic-green);
  font-weight: 600;
}
.faq div {
  margin-bottom: 12px;
}

/* =====================
         FOOTER
   ===================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 54px 0 30px 0;
}
.footer-columns > div {
  flex: 1 1 240px;
  min-width: 160px;
}
.footer-columns img[alt*='Lumen'] {
  height: 44px;
  margin-bottom: 18px;
}
.footer-columns h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1.12rem;
}
.footer-columns ul {
  list-style: none;
  padding: 0;
}
.footer-columns li {
  margin-bottom: 7px;
}
.footer-columns a {
  color: #fff;
  opacity: 0.93;
  font-size: 1rem;
  transition: color .14s, opacity .14s;
}
.footer-columns a:hover, .footer-columns a:focus {
  color: var(--secondary);
  opacity: 1;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1.5px solid #30613b;
  margin-top: 15px;
  text-align: center;
  padding: 15px 0 8px 0;
  color: #e3eed6;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.footer-bottom p{color: #fff;}
.footer-columns p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.7;
  color: #eef5e5;
  font-size: 0.97rem;
}
.footer-columns img[alt^="icon-"] {
  height: 19px;
  width: 19px;
}

@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-bottom {
    font-size: 0.9rem;
  }
}

/* ========================
  INFO BOX / ALERTS ETC
 ======================== */
.info-box {
  display: flex;
  align-items: center;
  background: #e9f6ee;
  color: var(--organic-green);
  border-radius: 15px;
  padding: 16px 22px;
  gap: 14px;
  font-size: 1rem;
  margin: 20px 0 0 0;
  box-shadow: 0 1px 8px rgba(38,80,52,0.07);
}
.info-box img {
  height: 28px;
}

/* ============================
  ORGANIC/NATURE VISUAL MOTIFS
 ============================ */
section, .card, .content-wrapper, .faq, .info-box {
  background-blend-mode: soft-light;
}
section {
  background: var(--cream);
}
@media (max-width: 768px) {
  section {
    border-radius: 14px;
    padding: 18px 6px;
  }
}

/* Decorative (could be improved for real SVG backgrounds) */
.section, .card, .testimonial-card {
  border-radius: 24px 32px 28px 24px / 30px 24px 30px 36px;
}
/* Organic Shadows */
.card, .card-container .feature-grid li, .testimonial-card, .info-box {
  box-shadow: 0 2px 16px rgba(38,80,52,0.09);
}

/* ========================
         BUTTONS
   ======================== */
button, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 26px;
  padding: 10px 26px;
  margin: 5px 0;
  background-color: var(--organic-green);
  color: #fff;
  transition: background .21s, box-shadow .17s, color .11s, transform .18s;
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #27653b;
  color: #fff;
  box-shadow: 0 4px 18px rgba(39,101,59,0.16);
  transform: translateY(-1px) scale(1.025);
}

/* ========================
       FORMS (if present)
   ======================== */
input, textarea, select {
  background: #fff;
  border: 2px solid var(--secondary);
  border-radius: 14px;
  padding: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 14px;
  margin-top: 2px;
  color: var(--text-body);
  transition: border .14s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid var(--organic-green);
  box-shadow: 0 2px 8px rgba(39,101,59,0.14);
  outline: none;
}

label {
  display: block;
  font-size: 1rem;
  color: var(--organic-green);
  margin-bottom: 8px;
  font-weight: 600;
}

/* =========================
       UTILITY CLASSES
   ========================= */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }

/* ========================
  COOKIE CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #f2efe6;
  color: #355531;
  box-shadow: 0 -2px 24px rgba(38,80,52,0.12);
  padding: 24px 12px 20px 12px;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: cookie-in .44s cubic-bezier(.62,0,.24,1);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@keyframes cookie-in {
  0% { opacity: 0; transform: translateY(70px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  max-width: 540px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--organic-green);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 22px;
  font-weight: 600;
  margin: 0 3px;
  min-width: 120px;
  transition: background .14s;
  box-shadow: 0 2px 6px rgba(39,101,59,.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #16304A;
  color: #fff;
}
.cookie-btn--reject {
  background: #B39B73;
  color: #fff;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #926536;
  color: #fff;
}
.cookie-btn--settings {
  background: #fff;
  color: var(--organic-green);
  border: 1.5px solid var(--organic-green);
  box-shadow: none;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: var(--soft-beige);
  color: #27653b;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(22, 48, 74, 0.23);
}
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: min(96vw, 440px);
  background: #F6F3EE;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 32px rgba(38,80,52,0.27);
  z-index: 10001;
  padding: 32px 24px 28px 24px;
  animation: cookieModalIn .48s cubic-bezier(.61,.14,.22,1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateY(100px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.36rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.cookie-category label {
  flex: 1 1 auto;
  color: var(--organic-green);
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  border: 2px solid var(--organic-green);
  border-radius: 6px;
  width: 23px;
  height: 23px;
  background: #FFF;
  margin-right: 8px;
  transition: border .13s;
  position: relative;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: var(--secondary);
  border-color: var(--primary);
}
.cookie-category input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--organic-green);
  border-radius: 2px;
  position: absolute;
  top: 5px; left: 5px;
}
.cookie-category .cookie-category-essential {
  opacity: 0.7;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .cookie-modal {
    width: 98vw;
    padding: 12px 5px 22px 5px;
  }
}

/* Hide banner or modal by default (js interaction can toggle display/opacity) */
.cookie-banner, .cookie-modal, .cookie-modal-backdrop {
  display: none;
}
.cookie-banner.show, .cookie-modal.show, .cookie-modal-backdrop.show {
  display: flex;
}

/* =======================
     Section Spacing
   ======================= */
main > section {
  margin-bottom: 48px;
  padding: 32px 0;
  background: none;
}
main > section:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  main > section {
    padding: 18px 0;
    margin-bottom: 32px;
  }
}

/* ========================
    TABLES (if present)
   ======================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
th, td {
  padding: 10px 18px;
  border-bottom: 1px solid #e0e3df;
  color: var(--primary);
}
th {
  background: var(--soft-beige);
}

/* =======================
     PRINT COLOR RESET
   ======================= */
@media print {
  body, .container {
    background: #fff !important;
    color: #000 !important;
  }
  .card, .testimonial-card, .footer-columns, .footer-bottom {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}
