/*=== CSS RESET & BASE 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, 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #FCFAF6;
  color: #2B3A42;
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
 
  /* Elegant spacing */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
}
a {
  color: #2B3A42;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7CA982;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}

/*=== TYPOGRAPHY ===*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  color: #2B3A42;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.2rem;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: #7CA982;
}
p, li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/*=== CONTAINER & LAYOUTS ===*/
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Section Spacing Pattern */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section, .section {
    padding: 28px 0;
  }
  .container {
    padding: 0 12px;
  }
}

/*=== FLEXBOX UTILITIES & SPACE ===*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(43,58,66,0.07);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(124,169,130,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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
  border-left: 4px solid #7CA982;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(43,58,66,0.07);
  color: #2B3A42;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(124,169,130,0.08);
  border-left-color: #F2CD5C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* [Spacing enforcement for all content cards/sections] */
.card-container > *, .content-grid > *, .text-image-section > *, .section > *, .content-wrapper > *, .feature-item > * {
  margin-bottom: 0;
}

/*=== HEADER & NAVIGATION ===*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(43,58,66,0.06);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}
header a img {
  height: 48px;
  margin: 12px 0 12px 8px;
  transition: filter 0.2s;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 24px;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 8px;
  border-radius: 6px;
  color: #2B3A42;
  transition: background 0.16s;
}
header nav a.active, header nav a:focus, header nav a:hover {
  background: #F2CD5C;
  color: #2B3A42;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  font-size: 1.08rem;
  padding: 12px 36px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
  text-align: center;
  margin-left: 24px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(43,58,66,0.05);
}
.cta-primary {
  background: #2B3A42;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #7CA982;
  color: #fff;
  box-shadow: 0 4px 22px rgba(124,169,130,0.12);
}
.cta-secondary {
  background: #F2CD5C;
  color: #2B3A42;
  margin-left: 0;
  margin-top: 18px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #7CA982;
  color: #fff;
  box-shadow: 0 4px 22px rgba(124,169,130,0.17);
}
.header .cta-primary + .cta-secondary {
  margin-left: 10px;
}

@media (max-width: 1024px) {
  header nav {
    gap: 10px;
    margin-left: 10px;
  }
  .cta-primary {
    margin-left: 10px;
  }
}
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    min-height: 54px;
    justify-content: flex-start;
    gap: 0;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
}

/*=== MOBILE MENU ===*/
.mobile-menu-toggle {
  background: #fff;
  color: #2B3A42;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
  cursor: pointer;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F2CD5C;
  color: #2B3A42;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,58,66,.96);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.86,0,.07,1);
  z-index: 1200;
  padding-top: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F2CD5C;
  font-size: 2.2rem;
  line-height: 1;
  margin-left: auto;
  margin-right: 24px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #7CA982;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 12px 0;
  width: 90vw;
  text-align: left;
  border-radius: 6px;
  transition: background 0.2s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2CD5C;
  color: #2B3A42;
}

/* Hide desktop nav and primary button on mobile */
@media (max-width: 768px) {
  header nav, .cta-primary {
    display: none;
  }
}

/*=== SECTION & CONTENT ===*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
ul {
  margin-bottom: 16px;
  margin-left: 0;
}
ul li, .text-section ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 0;
  list-style-type: none;
  position: relative;
}
ul li:before, .text-section ul li:before {
  content: '\2022';
  color: #7CA982;
  font-family: 'Montserrat', serif;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* Checkmark-style for main features */
section:first-of-type ul li:before {
  content: '✔️';
  color: #7CA982;
}

.price-highlight {
  background: #F2CD5C;
  color: #2B3A42;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 7px;
  display: inline-block;
  margin: 8px 0 0 0;
  font-size: 1.1rem;
}

/* Hero paragraph */
section .content-wrapper > p, .text-section > p {
  font-size: 1.17rem;
}

/*=== FOOTER ===*/
footer {
  width: 100%;
  background: #2B3A42;
  color: #fff;
  padding: 38px 0 30px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer a {
  color: #fff;
  margin-right: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.86;
  transition: opacity 0.19s, color 0.17s;
}
footer a:hover, footer a:focus {
  color: #F2CD5C;
  opacity: 1;
}
footer img {
  height: 42px;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
}

/*=== TESTIMONIALS ===*/
.testimonial-card p {
  font-style: italic;
  color: #2B3A42;
  font-size: 1.15rem;
}
.testimonial-card strong {
  color: #7CA982;
  font-size: 1rem;
}

/*=== BLOG LIST STYLE ===*/
section ul li h3 {
  margin-bottom: 5px;
  color: #2B3A42;
  font-family: 'Montserrat', serif;
  font-size: 1.18rem;
  font-weight: 600;
}
section ul li p {
  margin-bottom: 4px;
  font-size: 1.04rem;
}

/*==== BUTTONS GENERAL ====*/
button {
  font-family: 'Montserrat', serif;
  border-radius: 7px;
  border: none;
  background: #2B3A42;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  margin: 0 6px 0 0;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
button:focus, button:hover {
  background: #7CA982;
  color: #fff;
}

/*=== COOKIE CONSENT BANNER ===*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #2B3A42;
  color: #fff;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.06);
  z-index: 2002;
  gap: 28px;
  font-size: 1rem;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 450px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  background: #F2CD5C;
  color: #2B3A42;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  margin: 0;
  outline: none;
  transition: background 0.18s, color 0.14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #7CA982;
  color: #fff;
}

/* Hide cookie banner when closed */
.cookie-banner.hide {
  display: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 6px 15px 6px;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}

/*=== COOKIE CONSENT MODAL ===*/
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(43,58,66,0.55);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 40px rgba(43,58,66,0.12);
  max-width: 420px;
  width: 94vw;
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 3100;
  animation: fadeInScale 0.27s cubic-bezier(.83,-0.01,.42,1.07);
}
@keyframes fadeInScale {
  0% {opacity:0; transform:scale(.97);}
  100%{opacity:1;transform:scale(1);}
}
.cookie-modal h3 {
  color: #2B3A42;
  font-size: 1.35rem;
  margin: 0 0 12px 0;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  border-radius: 13px;
  width: 38px;
  height: 22px;
  background: #E9E4D8;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 9px;
  transition: background 0.15s;
}
.cookie-modal .cookie-toggle:checked {
  background: #7CA982;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(43,58,66,0.16);
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal .cookie-category-desc {
  color: #2B3A42;
  font-size: 0.97rem;
  opacity: 0.84;
}
.cookie-modal .category .required {
  font-size: .92em;
  color: #7CA982;
  margin-left: 7px;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: none;
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 1.5rem;
  color: #7CA982;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: #2B3A42;
}
.cookie-modal button {
  min-width: 94px;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  color: #fff;
  background: #7CA982;
  margin: 0;
  transition: background 0.17s;
}
.cookie-modal button:focus, .cookie-modal button:hover {
  background: #F2CD5C;
  color: #2B3A42;
}

/*=== RESPONSIVE LAYOUT & UTILITIES ===*/
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 780px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.65rem;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 1.28rem;
    margin-bottom: 14px;
  }
  h3 {
    font-size: 1.04rem;
    margin-bottom: 8px;
  }
  .card, .testimonial-card {
    padding: 17px 9px;
    min-width: 120px;
    font-size: 0.98rem;
  }
  .price-highlight {
    padding: 6px 10px;
    font-size: 1rem;
  }
  .cta-primary, .cta-secondary {
    font-size: 0.97rem;
    padding: 10px 22px;
    margin-left: 0;
  }
  .content-wrapper {
    gap: 12px;
  }
}

/*=== MICRO-INTERACTIONS ===*/
.card, .testimonial-card, .cookie-modal, .cta-primary, .cta-secondary {
  transition: box-shadow 0.19s, border-color 0.14s, transform 0.18s, filter 0.16s;
}
.card:active, .testimonial-card:active, .cta-primary:active, .cta-secondary:active {
  filter: brightness(.98);
}

/*=== ANIMATIONS ===*/
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu,
  .cookie-modal,
  .card,
  .testimonial-card {
    transition: transform 0.22s cubic-bezier(.86,0,.07,1), box-shadow 0.16s, border 0.14s, color 0.13s;
  }
  .mobile-menu.open {
    transition: transform 0.33s cubic-bezier(.86,0,.07,1);
  }
}

/*=== MISCELLANEOUS ===*/
::-webkit-input-placeholder { color: #8A877B; }
::-moz-placeholder { color: #8A877B; }
:-ms-input-placeholder { color: #8A877B; }
::placeholder { color: #8A877B; }

/* Hide scrollbars in overlays (mobile menu, modals) for neatness */
.mobile-menu, .cookie-modal-backdrop {
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal-backdrop::-webkit-scrollbar {
  display: none;
}
