/*==========================================================================*/
/* 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;
  box-sizing: border-box;
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  background-color: #F5F3EE;
  color: #212328;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/*==========================================================================*/
/* BRAND TYPOGRAPHY */
/*==========================================================================*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');

h1, h2, h3, h4 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  color: #2B3A42;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.11;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.275rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.05rem;
}
p, li, div, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #9cc082;
}
p, .text-section p, ul li, ol li {
  font-size: 1rem;
  margin-bottom: 10px;
}

strong {
  font-weight: 700;
  color: #2B3A42;
}

/*==========================================================================*/
/* CONTAINER & SECTIONS (SPACING/STRUCTURE) */
/*==========================================================================*/
.container {
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1200px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.text-section {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .content-wrapper {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
  }
  .text-section {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

/*==========================================================================*/
/* HEADER/NAVIGATION & MOBILE BURGER MENU */
/*==========================================================================*/
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(30,40,50,0.04);
  border-bottom: 1.5px solid #EBE9E3;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 10px;
  color: #2B3A42;
  transition: color 0.18s, background 0.22s;
  border-radius: 4px;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #9DC183;
}

.btn-primary {
  background: #2B3A42;
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 24px;
  border: none;
  margin-left: 20px;
  box-shadow: 0 2px 12px rgba(43,58,66,0.10);
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.20s, color 0.16s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #9DC183;
  color: #2B3A42;
  box-shadow: 0 4px 14px rgba(43,58,66,0.14);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9DC183;
  color: #2B3A42;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  border: none;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 104;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2B3A42;
  color: #fff;
}

/* Hide hamburger on desktop */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}
/* Hide navigation on mobile by default */
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,58,66,0.97);
  transition: transform 0.36s cubic-bezier(.77,0,.177,1), opacity 0.32s;
  transform: translateX(-100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px 0 32px;
  z-index: 200;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 32px;
  margin-bottom: 12px;
  background: #9DC183;
  color: #2B3A42;
  border-radius: 7px;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5F3EE;
  color: #2B3A42;
}
.mobile-nav {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #F5F3EE;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 0;
  border-radius: 4px;
  transition: background 0.19s, color 0.18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9DC183;
  color: #2B3A42;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/*==========================================================================*/
/* HERO & GENERAL BUTTON STYLES */
/*==========================================================================*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

a, button {
  transition: color 0.16s, background 0.18s, box-shadow 0.17s;
}

/*==========================================================================*/
/* CONTENT CARDS, FLEXBOX UTILS & GENERAL PATTERNS */
/*==========================================================================*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(43,58,66,0.05);
  padding: 26px 24px;
  min-width: 240px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.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;
  width: 100%;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(43,58,66,0.07);
  padding: 20px 18px;
}

/*==========================================================================*/
/* LISTS & ICON-LISTS: CORPORATE BULLETS */
/*==========================================================================*/
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 2px;
  color: #2B3A42;
}
ul li span {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==========================================================================*/
/* TESTIMONIALS (HIGH CONTRAST, VISUAL CARD) */
/*==========================================================================*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  color: #2B3A42;
  padding: 20px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(30,48,78,0.08);
  min-width: 220px;
  max-width: 480px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.testimonial-card p {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  color: #2B3A42;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.testimonial-card div {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: #7C8A97;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(43,58,66,0.17);
  transform: translateY(-3px) scale(1.025);
}
.rating-summary {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #2B3A42;
  font-weight: 700;
}

/*==========================================================================*/
/* TRUST BADGES (ABOUT/INDEX) */
/*==========================================================================*/
.trust-badges {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #2B3A42;
}
.trust-badges img {
  width: 32px;
  height: 32px;
  margin-right: 7px;
  vertical-align: middle;
}

/*==========================================================================*/
/* HIGHLIGHTS/DYNAMIC DESCRIPTIONS */
/*==========================================================================*/
.highlight-descriptions, .do-and-dont, .faq-preview {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px 12px 18px;
  box-shadow: 0 1px 6px rgba(43,58,66,0.07);
  margin-bottom: 16px;
}
.highlight-descriptions h3, .do-and-dont h3, .faq-preview h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

/*==========================================================================*/
/* FOOTER */
/*==========================================================================*/
footer {
  background: #2B3A42;
  color: #fff;
  font-size: 0.97rem;
  border-top: 1.5px solid #EBE9E3;
  margin-top: 40px;
  padding-top: 24px;
  padding-bottom: 18px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2px;
}
footer nav a {
  color: #fff;
  opacity: 0.85;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.16s, color 0.11s;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: #2B3A42;
  background: #9DC183;
  opacity: 1;
}
.footer-contact {
  display: flex;
  color: #fff;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  opacity: 0.88;
}
.footer-legal {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin-top: 8px;
}

@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    gap: 46px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/*==========================================================================*/
/* COOKIE CONSENT BANNER & MODAL */
/*==========================================================================*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #2B3A42;
  color: #fff;
  padding: 28px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 999;
  box-shadow: 0 -2px 16px rgba(43,58,66,0.11);
  transition: transform 0.35s, opacity 0.16s;
  transform: translateY(100%);
  opacity: 0;
}
#cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
#cookie-banner .cookie-text {
  font-size: 1.04rem;
  margin-bottom: 16px;
  max-width: 540px;
}
#cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 22px;
  padding: 9px 26px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.18s, color 0.18s;
}
.cookie-accept {
  background: #9DC183;
  color: #2B3A42;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #fff;
  color: #2B3A42;
}
.cookie-reject {
  background: #fff;
  color: #2B3A42;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #9DC183;
  color: #2B3A42;
}
.cookie-settings {
  background: #F5F3EE;
  color: #2B3A42;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #9DC183;
  color: #2B3A42;
}

#cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 420px;
  min-height: 246px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(30,48,78,0.18);
  border-radius: 18px;
  padding: 32px 28px 24px 28px;
  z-index: 1003;
  transform: translate(-50%,-50%) scale(0.88);
  opacity: 0;
  transition: opacity 0.18s, transform 0.21s;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
#cookie-modal.show {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: all;
}
#cookie-modal h2 {
  color: #2B3A42;
  font-size: 1.22rem;
  margin-bottom: 9px;
}
#cookie-modal .cookie-category {
  border-bottom: 1px solid #EBE9E3;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
#cookie-modal .category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  font-weight: 500;
}
#cookie-modal .category-toggle {
  margin-left: auto;
}
#cookie-modal .cookie-modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
#cookie-modal .cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 18px;
  background: transparent;
  color: #2B3A42;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background 0.18s;
}
#cookie-modal .cookie-modal-close:hover {
  background: #ECF4EA;
}

/* Toggle Switch Style (Analytics/Marketing) */
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  margin-left: 7px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EBE9E3;
  border-radius: 16px;
  transition: background .19s;
}
.switch input:checked + .slider {
  background: #9DC183;
}
.slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 2.5px;
  bottom: 3px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(40,56,66,0.07);
  transition: transform 0.19s;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
}

#cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #2B3A42;
  margin-top: 6px;
  opacity: 0.85;
}

/* Modal Overlay */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(45, 45, 60, 0.23);
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.18s;
}
#cookie-modal.show ~ #cookie-modal-overlay {
  display: block;
  opacity: 1;
}

/*==========================================================================*/
/* RESPONSIVE ADJUSTMENTS */
/*==========================================================================*/
@media (max-width: 1023px) {
  .container {
    max-width: 97vw;
  }
  .section, section {
    padding: 24px 9px;
    margin-bottom: 42px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  section, .section { padding: 18px 6px; }
  .card, .testimonial-card {
    padding: 16px 10px;
  }
  .trust-badges {
    gap: 16px;
  }
  footer .container {
    gap: 18px;
  }
}
@media (max-width: 460px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.01rem; }
  .btn-primary, .cookie-accept, .cookie-reject, .cookie-settings {
    padding: 10px 10vw;
    font-size: 0.97rem;
  }
}

/*==========================================================================*/
/* ANIMATIONS AND MICRO-INTERACTIONS */
/*==========================================================================*/
.btn-primary, .cookie-accept, .cookie-reject, .cookie-settings {
  transition: background 0.18s, color 0.17s, box-shadow 0.14s, transform 0.17s;
}
.btn-primary:active, .cookie-accept:active, .cookie-reject:active, .cookie-settings:active {
  transform: scale(0.97);
}
.card, .testimonial-card, .feature-item, .highlight-descriptions, .do-and-dont, .faq-preview {
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .feature-item:hover, .highlight-descriptions:hover {
  box-shadow: 0 8px 30px rgba(30,48,78,0.13);
  transform: translateY(-2px) scale(1.012);
}

/*==========================================================================*/
/* GENERAL FORM ELEMENTS */
/*==========================================================================*/
input, textarea, select {
  border: 1.5px solid #E5E8EA;
  background: #F5F3EE;
  border-radius: 7px;
  padding: 10px 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  color: #2B3A42;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #9DC183;
}

/*==========================================================================*/
/* UTILS: VISIBILITY, Z-INDEX */
/*==========================================================================*/
.hide {
  display: none !important;
}

/*==========================================================================*/
/* A11Y: Focus Buttons */
/*==========================================================================*/
a:focus-visible, button:focus-visible {
  outline: 2px solid #9DC183;
  outline-offset: 2px;
  background: #F5F3EE;
}

/*==========================================================================*/
/* SCROLLBAR STYLING FOR DESKTOP */
/*==========================================================================*/
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #E5E8EA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9DC183;
}

/*==========================================================================*/
/* CODE END */
/*==========================================================================*/
