/* CSS RESET & NORMALIZE */
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, picture {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
}
*:focus-visible {
  outline: 2px solid #D39B2C;
  outline-offset: 2px;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #235A32;
  background-color: #F6F6F6;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #235A32;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {font-size: 2.5rem;margin-bottom:24px;}
h2 {font-size: 2rem;margin-bottom:20px;}
h3 {font-size: 1.4rem;margin-bottom:12px;}
h4 {font-size:1.2rem;}
h5, h6 {font-size:1rem;}

p, ul, ol, blockquote {
  margin-bottom: 16px;
}

strong, b {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* SECTION & SPACING PATTERNS */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(35,90,50,0.07);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  background: #FFF9F1;
  box-shadow: 0 2px 12px rgba(211,155,44,0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(211,155,44,0.07);
  flex: 1 1 320px;
  min-width: 280px;
  margin-bottom: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(35,90,50,0.10);
}

.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;
  background: #FFF9F1;
  border-radius: 24px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(211,155,44,0.07);
  color: #235A32;
  font-style: normal;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(211,155,44,0.17);
}
.testimonial-card blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #235A32;
  background: none;
  border-left: 5px solid #D39B2C;
  padding-left: 18px;
  margin-bottom: 12px;
}
.testimonial-card .stars {
  color: #D39B2C;
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img {
  margin-right: 12px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.price {
  color: #936A12;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* HEADER and NAVIGATION */
header {
  background: #FFFFFF;
  border-bottom: 2px solid #F6F6F6;
  box-shadow: 0 2px 16px rgba(35,90,50,0.045);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 20px 16px 20px;
}
.logo img {
  height: 52px;
  width: auto;
  border-radius: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: #235A32;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.16s, color 0.16s;
  font-weight: 600;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF9F1;
  color: #936A12;
}

.cta-button {
  background: #D39B2C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 1.05rem;
  box-shadow: 0 2px 6px rgba(211,155,44,0.12);
  transition: background 0.18s, box-shadow 0.16s, transform 0.09s;
  cursor: pointer;
  margin-left: 20px;
  border: none;
  outline: none;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #936A12;
  color: #fff;
  box-shadow: 0 5px 14px rgba(211,155,44,0.20);
  transform: translateY(-2px) scale(1.03);
}

/* ----- MOBILE NAVIGATION BURGER ----- */
.mobile-menu-toggle {
  background: #FFF9F1;
  border: none;
  color: #235A32;
  font-size: 2rem;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFF0D1;
  color: #936A12;
  box-shadow: 0 2px 10px rgba(211,155,44,0.08);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFF9F1;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.5,1.35,.5,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  border: none;
  background: #D39B2C;
  color: #fff;
  border-radius: 16px;
  font-size: 1.7rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 20px 16px 20px;
  align-self: flex-end;
  transition: background 0.16s;
  cursor: pointer;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #936A12;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px 36px;
  width: 100%;
  margin-top: 12px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  background: none;
  color: #235A32;
  padding: 15px 0;
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #D39B2C11;
  color: #936A12;
}

/* FOOTER */
footer {
  background: #FFF;
  border-top: 2px solid #F6F6F6;
  box-shadow: 0 -2px 18px rgba(35,90,50,0.10);
  padding: 40px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #235A32;
  font-size: 1rem;
  opacity: 0.85;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D39B2C;
  opacity: 1;
}
footer p {
  color: #5E7954;
  font-size: 0.97rem;
  text-align: center;
  opacity: 0.7;
}

/* LINKS */
a {
  color: #235A32;
  transition: color .2s;
}
a:hover, a:focus {
  color: #936A12;
}

/* MEDIA QUERIES - RESPONSIVE */
@media (max-width: 1020px) {
  .container { max-width: 100%; }
  .content-wrapper { padding: 32px 12px; }
}

@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    padding: 12px 8px 12px 8px;
    gap: 12px;
  }
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {
    padding: 24px 6px;
  }
  .section, section {
    padding: 24px 0 0 0;
    margin-bottom: 40px;
  }
  .footer-nav {
    gap: 10px;
    font-size: 0.92rem;
    flex-wrap: wrap;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .content-wrapper, .text-section {
    padding: 14px 2px;
  }
}

/* BUTTONS & INTERACTIVE EFFECTS */
button, .cta-button {
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.16s;
}

/* Card hover micro-interactions */
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(35,90,50,0.12);
  transition: box-shadow 0.17s;
}

/* Inputs (generic styles for future forms) */
input, select, textarea {
  border-radius: 12px;
  border: 1.5px solid #E2D8C5;
  padding: 12px 15px;
  margin-bottom: 14px;
  background: #FFFEFC;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D39B2C;
}
label {
  margin-bottom: 8px;
  display: inline-block;
  color: #235A32;
  font-size: 0.97rem;
  font-weight: 500;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF9F1;
  color: #235A32;
  border-top: 2px solid #D39B2C;
  box-shadow: 0 -3px 22px rgba(35,90,50,0.08);
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 5000;
  transition: transform 0.3s, opacity 0.23s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-banner button {
  background: #D39B2C;
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 2px;
  transition: background .12s;
  border: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #936A12;
}
.cookie-banner .secondary {
  background: #FFF0D1;
  color: #936A12;
  border: 1.5px solid #D39B2C;
}
.cookie-banner .secondary:hover, .cookie-banner .secondary:focus {
  background: #FFF5E5;
  color: #235A32;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,90,50,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5010;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #FFF9F1;
  border-radius: 28px;
  padding: 38px 30px 30px 30px;
  width: 95%;
  max-width: 400px;
  box-shadow: 0 8px 44px rgba(35,90,50,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  background: #D39B2C;
  color: #fff;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.32rem;
  cursor: pointer;
  transition: background 0.1s;
  z-index: 5020;
}
.cookie-modal .cookie-modal-close:hover {
  background: #936A12;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-radius: 11px;
}
.cookie-category-row .category-label {
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #235A32;
  font-weight: 500;
}
.cookie-category-row .category-switch {
  margin-left: auto;
}
.category-switch input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
}
.category-switch label {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  background: #F6F6F6;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.15s;
}
.category-switch label:after {
  content: '';
  position: absolute;
  left: 5px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #D39B2C;
  transition: left 0.17s, background 0.17s;
}
.category-switch input[type=checkbox]:checked + label {
  background: #FFD789;
}
.category-switch input[type=checkbox]:checked + label:after {
  left: 25px;
  background: #936A12;
}
.category-switch input[type=checkbox]:disabled + label {
  background: #DFDFDF;
  opacity: 0.7;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  background: #D39B2C;
  color: #fff;
  border-radius: 999px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 0 2px;
  transition: background .12s;
}
.cookie-modal .cookie-modal-actions .secondary {
  background: #FFF0D1;
  color: #936A12;
  border: 1.2px solid #D39B2C;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: #936A12;
  color: #fff;
}

/* Miscellaneous tags */
blockquote {
  margin: 0 0 16px 0;
  padding-left: 9px;
  border-left: 4px solid #D39B2C;
  background: none;
}
ahref, a[href] {
  color: #D39B2C;
  text-decoration: underline;
}

table {
  border-collapse: collapse;
  width: 100%;
  background: #FFF9F1;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 1rem;
}
tr, td, th {
  border: 1px solid #FFD789;
  padding: 10px 18px;
}
th {
  background: #FFEDC6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  color: #936A12;
}

code, pre {
  font-family: 'Roboto Mono', monospace;
  background: #FFF5E5;
  color: #936A12;
  padding: 1px 4px;
  border-radius: 6px;
}

/* Accessibility improvement on contrast for testimonials/reviews */
.testimonial-card, .testimonial-card blockquote, .testimonial-card span {
  color: #235A32 !important;
  background: #FFF9F1 !important;
}
/* END */
