/* ============================================
   CSS RESET & BASELINE 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F5F7FA;
  color: #181b1c;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #144F20;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DAA520;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 18px;
}
th {
  background: #154f2033;
  color: #144F20;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
}
td {
  font-size: 16px;
}
tbody tr:nth-child(even) {
  background: #F5F7FA;
}
tbody tr:nth-child(odd) {
  background: #ffffff;
}

/* ============================================
   BRAND COLORS & FONTS
=============================================== */
:root {
  --brand-primary: #144F20;
  --brand-secondary: #F5F7FA;
  --brand-accent: #DAA520;
  --accent2: #A67C00;
  --white: #fff;
  --black: #181b1c;
  --gray: #e6e9ef;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #144F20;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.10rem;
  margin-bottom: 10px;
}

p, li, cite, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20em;
  color: #181b1c;
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.5;
  border-left: 4px solid #DAA520;
  padding-left: 18px;
  background: #fffdfa;
  border-radius: 4px;
}
cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: #144F20;
  font-weight: 600;
  font-size: 1em;
}
strong {
  font-weight: bold;
  color: #144F20;
}

/* ============================================
   CONTAINER & LAYOUT
=============================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.text-section {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(250,248,245,0.7);
  border-radius: 18px;
  padding: 24px 20px 20px 28px;
  box-shadow: 0 2px 10px 0 rgba(20,79,32,0.03);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(20,79,32,0.09);
  padding: 30px 24px 28px 24px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(20,79,32,0.14);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
  border-color: #DAA520;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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: center;
  gap: 20px;
  padding: 20px 24px 20px 30px;
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(20, 79, 32, 0.10);
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 240px;
  border: 2px solid #DAA52022;
  transition: box-shadow 0.18s, border 0.18s;
  z-index: 1;
}
.testimonial-card:hover {
  border-color: #DAA520;
  box-shadow: 0 6px 32px 0 rgba(166, 124, 0, 0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.feature-item img {
  width: 36px;
  height: 36px;
}

/* ============================================
   HEADER & NAVIGATION (DESKTOP)
=============================================== */
header {
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(90deg, #F5F7FA 90%, #DAA52010 100%);
  box-shadow: 0 1px 16px 0 rgba(166,124,0,0.05);
  z-index: 5;
  position: relative;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}
header img {
  height: 54px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #144F20;
  font-size: 1rem;
  letter-spacing: 0.015em;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #DAA520;
  color: #144F20;
}
.cta-primary {
  background: #DAA520;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 34px;
  padding: 12px 30px;
  margin-left: 20px;
  box-shadow: 0 2px 10px 0 rgba(166,124,0,0.10);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #A67C00;
  color: #fff;
  box-shadow: 0 5px 20px 0 rgba(166,124,0,0.17);
}

/* Hide mobile button by default */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* ============================================
   HERO SECTIONS & BUTTONS
=============================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:nth-child(odd) {
  background: #F5F7FA;
}
section:nth-child(even) {
  background: #FFF;
}
section .container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.content-wrapper > a.cta-primary {
  margin-top: 14px;
}

ul li, ol li {
  font-size: 1.06rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}
ul li img,
ol li img {
  height: 28px;
  width: 28px;
  margin-right: 5px;
  vertical-align: middle;
}

/* Feature/strength/offer lists in artistic bubble styles */
ul li, .feature-item {
  position: relative;
  padding-left: 0.3em;
  border-radius: 18px;
}
ul li strong {
  color: #A67C00;
}

/* ============================================
   FOOTER
=============================================== */
footer {
  background: #144F20;
  color: #fff;
  padding: 40px 0 24px 0;
  border-top: 6px solid #DAA520;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #DAA520;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact img {
  width: 21px;
  height: 21px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ============================================
   TABLES (for prices etc)
=============================================== */
table {
  margin: 18px 0;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fffdfa;
  box-shadow: 0 2px 8px 0 rgba(166,124,0,0.04);
  border: 2px solid #e6e9ef;
}
th, td {
  padding: 18px 16px;
  border-bottom: 1px solid #e6e9ef;
}
thead th {
  background: #F5F7FA;
  color: #144F20;
  font-size: 1.14rem;
  border-bottom: 3px solid #DAA52044;
}
tbody tr:hover td {
  background: #fdfdf8;
}

/* ============================================
   COOKIE CONSENT BANNER
=============================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 25000;
  background: #144F20;
  color: #fff;
  padding: 18px 16px 16px 16px;
  box-shadow: 0 -3px 20px 0 rgba(166,124,0,0.18);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.55,1.65,0.48,0.44);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner__text {
  flex: 1 1 270px;
  font-size: 1.08rem;
}
.cookie-banner__btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  background: #DAA520;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 9px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 4px 0 rgba(20,79,32,0.07);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A67C00;
  color: #fff;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #144F20;
  border: 2px solid #DAA520;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #DAA520;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #ffffff99;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #DAA520;
  color: #fff;
  border-color: #DAA520;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 26000;
  background: #fffdfa;
  color: #181b1c;
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(20,79,32,0.25);
  min-width: 330px;
  max-width: 97vw;
  padding: 38px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.27s, visibility 0.27s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal h2 {
  color: #144F20;
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  margin-right: 0;
}
.cookie-modal .cookie-category.essential {
  font-weight: bold;
  color: #A67C00;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  pointer-events: none;
  opacity: 0.4;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-backdrop {
  position: fixed;
  z-index: 25995;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,79,32,0.18);
  backdrop-filter: blur(2px);
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 18px;
  background: #DAA520;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
}
.cookie-toggle.off {
  background: #e6e9ef;
}
.cookie-toggle::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.17s, background 0.18s;
  box-shadow: 0 1px 2px rgba(20,79,32,0.13);
}
.cookie-toggle.on::before {
  left: 18px;
  background: #A67C00;
}
.cookie-toggle.off::before {
  left: 2px;
}

/* ============================================
   MOBILE MENU
=============================================== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #144F20;
  font-size: 2.2rem;
  border: none;
  border-radius: 10px;
  padding: 4px 13px 1px 13px;
  box-shadow: 0 2px 10px 0 rgba(20,79,32,0.10);
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.18s, color 0.13s, box-shadow 0.12s;
  z-index: 102;
  position: relative;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #DAA520;
  color: #fff;
  box-shadow: 0 3px 24px 0 rgba(166,124,0,0.13) !important;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #144F20;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 28px 30px 28px;
  transition: transform 0.36s cubic-bezier(0.68,-0.55,0.27,1.55);
  transform: translateX(-100%);
  box-shadow: 0 0px 32px 0 rgba(20,79,32,0.28);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #DAA520;
  font-size: 2.3rem;
  font-weight: bold;
  align-self: flex-end;
  margin-bottom: 14px;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 600;
  background: none;
  padding: 14px 0 14px 6px;
  border-bottom: 1.5px solid #fff2;
  transition: color 0.2s, background 0.14s;
  border-radius: 9px;
  min-width: 160px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #DAA520;
  background: #fff1;
}

/* Backdrop for mobile menu (optional) */
.mobile-menu-backdrop {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 100;
  background: rgba(20,79,32,0.18);
  touch-action: none;
}


/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
=============================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 99vw;
    padding: 0 12px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  h1 {
    font-size: 2rem;
  }
  .container {
    padding: 0 7px;
    max-width: 100vw;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 11px;
    min-height: 64px;
    padding: 0 7px;
  }
  header nav {
    display: none !important;
  }
  .cta-primary {
    margin-left: 0;
    margin-top: 8px;
    padding: 11px 22px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
  .container {
    padding: 0 2vw;
    max-width: 99vw;
  }
  .section {
    margin-bottom: 36px;
    padding: 23px 5px 28px 5px;
  }
  .content-wrapper, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 0;
    font-size: 0.95em;
    padding: 12px 9px 15px 13px;
  }
  .text-image-section, .features {
    flex-direction: column;
    align-items: stretch;
    gap: 19px;
  }
  .card {
    padding: 16px 8.5vw;
    min-width: 0;
  }
  .text-section {
    padding: 14px 8vw 12px 8vw;
    gap: 8px;
  }
  table th, table td {
    padding: 11px 5px;
    font-size: 0.97rem;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 2vw;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 13px;
  }
  h2 {
    font-size: 1.17rem;
    margin-bottom: 12px;
  }
  .text-section, .testimonial-card, .card {
    padding: 8px 2vw !important;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 20px 6vw 17px 6vw;
    font-size: 0.96em;
  }
}

/* ============================================
   MICRO-INTERACTIONS & ANIMATIONS
=============================================== */
.cta-primary, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.08s, transform 0.12s;
}
.cta-primary:active, .cookie-btn:active {
  transform: scale(0.98);
}
nav a:focus-visible, .mobile-nav a:focus-visible {
  outline: 2px solid #DAA520;
  outline-offset: 2px;
}
.card:focus-visible, .testimonial-card:focus-visible {
  outline: 2.5px solid #A67C00;
  outline-offset: 2px;
}
.testimonial-card {
  transition: border 0.16s, box-shadow 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 34px 0 rgba(166,124,0,0.17);
  border-color: #DAA520;
}

/* Add some fun hover parallax on list icons for artistic flair */
ul li img, ol li img {
  transition: transform 0.22s;
}
ul li:hover img, ol li:hover img {
  transform: rotate(-7deg) scale(1.17);
  filter: brightness(1.16);
}

/* ============================================
   FORM ELEMENTS
=============================================== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border: 2px solid #e6e9ef;
  border-radius: 7px;
  background: #fff;
  padding: 11px 13px;
  margin-bottom: 19px;
  font-size: 1rem;
  min-width: 180px;
  transition: border 0.2s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #DAA520;
  box-shadow: 0 2px 8px 0 rgba(20,79,32,0.10);
}
button, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
}

/* ============================================
   MISC.
=============================================== */
::-webkit-scrollbar {
  width: 11px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #DAA52099;
  border-radius: 14px;
}

/* Artistic divider: hand-drawn style (svg-like) */
.hr-artistic {
  height: 5px;
  background: repeating-linear-gradient(90deg,#DAA520,#F5F7FA 22px,#DAA520 50px);
  border: none;
  margin: 32px 0;
  border-radius: 11px;
  box-shadow: 0 1px 5px 0 rgba(20,79,32,0.07);
}

/* Artistic quotation decoration */
.testimonial-card blockquote:before {
  content: '“';
  color: #DAA520;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-size: 2.2em;
  vertical-align: -0.2em;
  margin-right: 6px;
  font-weight: bold;
}

/* Decorative spray in hero (simulate with before) */
.content-wrapper:before {
  content: '';
  position: absolute;
  left: -18px;
  top: -24px;
  width: 48px; height: 48px;
  pointer-events: none;
  background: radial-gradient(circle, #DAA52077 0%, transparent 68%);
  z-index: 0;
  border-radius: 100%;
  display: none;
}
@media (min-width: 900px) {
  .content-wrapper { position: relative; }
  .content-wrapper:before {
    display: block !important;
  }
}

/* ============================================
   ACCESSIBILITY & FOCUS
=============================================== */
:focus-visible {
  outline: 2.5px dashed #DAA520 !important;
  outline-offset: 2px;
}

/* ============================================
   ARTISTIC FONTS (fallbacks provided)      
=============================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

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