/* 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,
main, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F4F2ED;
  color: #273C5B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, select, textarea { font: inherit; outline: none; }

/* BASE COLORS & THEMING */
:root {
  --color-primary: #273C5B;
  --color-secondary: #16A085;
  --color-accent: #FAFAFA;
  --color-bg: #F4F2ED;
  --color-earth: #CFC1AC;
  --color-leaf: #A2C386;
  --color-bark: #836953;
  --color-heading: #273C5B;
  --color-link: #16A085;
  --color-link-hover: #235843;
  --color-text: #273C5B;
  --color-subtle: #605943;
  --color-surface: #fff;
  --shadow-main: 0 2px 12px 0 rgba(133,136,115,0.08);
}

/* TYPOGRAPHY */
h1, .display, .hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--color-heading);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 2rem; }
}

h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
p, ul, li, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text);
}
.text-section h2, .text-section h3 {
  margin-top: 24px;
}
strong {
  color: var(--color-secondary);
  font-weight: 600;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: var(--color-earth);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
.logo img {
  display: block;
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}
.main-nav a {
  font-size: 1rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 0.22s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
}
.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 25px 25px 18px 25px/23px 18px 25px 20px; /* Organic shape */
  padding: 11px 30px;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(22,160,133,0.12);
  transition: background 0.21s, box-shadow 0.21s, transform 0.16s;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.04em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #10745E;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 15px rgba(22,160,133,0.24);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 17px;
  right: 22px;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 102;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 6px rgba(22,160,133,0.08);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  z-index: 120;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,60,91,0.98);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px 24px 24px;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 121;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 11px 0;
  transition: color 0.2s, background 0.18s;
  border-radius: 12px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(22,160,133,0.18);
  color: #A2C386;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 20px;
    margin-left: 12px;
  }
  .cta-btn { margin-left: 12px; padding: 9px 16px; }
  header .container { min-height: 60px; }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (max-width: 440px) {
  .mobile-menu { padding: 22px 8px 22px 8px; }
  .mobile-menu-close { top: 14px; right: 14px; font-size: 1.8rem; }
}

/* SECTIONS, HERO, ORGANIC BACKGROUNDS */
.section, .features, .faq, .services, .cta, .contact, .contact-details, .testimonials, .about, .team, .legal, .guide-categories, .hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: 28px 34px 20px 32px/34px 20px 28px 24px; /* Organic shape */
  box-shadow: var(--shadow-main);
  position: relative;
}
.hero {
  background: linear-gradient(112deg, var(--color-leaf) 0%, var(--color-bg) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 3px 18px 0 rgba(130, 180, 80, 0.10);
}
.features, .services, .faq, .guide-categories {
  background: var(--color-bg);
} 
.cta {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  border-radius: 36px 24px 32px 28px/24px 36px 28px 32px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #fff;
  color: var(--color-secondary);
  font-weight: 700;
  margin-top: 20px;
  border-radius: 29px 24px 17px 28px/20px 28px 25px 22px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.0);
  transition: background .2s, color .2s;
}
.cta .cta-btn:hover { background: var(--color-leaf); color: var(--color-primary); }

@media (max-width: 900px) {
  .section, .features, .faq, .services, .cta, .testimonials, .about, .team, .legal, .guide-categories, .contact, .contact-details, .hero {
    padding: 32px 10px;
    margin-bottom: 38px;
    border-radius: 18px 16px 16px 10px/15px 20px 18px 9px;
  }
}

/* FLEXBOX UTILITIES FOR LAYOUTS */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: var(--color-surface); margin-bottom: 20px; border-radius: 22px; box-shadow: var(--shadow-main); padding: 26px; position: relative; transition: box-shadow 0.15s; }
.card:hover { box-shadow: 0 8px 26px rgba(39,60,91,0.13); }
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 21px 28px 20px 18px/20px 20px 28px 21px;
  box-shadow: 0 1px 8px rgba(161, 207, 134, 0.09);
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--color-primary);
  flex: 1;
  font-style: italic;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-left: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* FEATURE GRID - PRODUCT & SERVICE ICON CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 28px 0 0 0;
}
.feature-grid li {
  flex: 1 1 220px;
  background: var(--color-surface);
  border-radius: 14px 22px 14px 18px/19px 22px 13px 17px;
  box-shadow: var(--shadow-main);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 210px;
  transition: box-shadow 0.16s, transform 0.12s;
  margin-bottom: 0;
  border: 1.5px solid #e2e9dc;
}
.feature-grid li:hover {
  box-shadow: 0 8px 22px rgba(22,160,133,0.12);
  transform: translateY(-2px) scale(1.02);
  border-color: var(--color-leaf);
}
.feature-grid img {
  width: 38px;
  height: 38px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ICON LIST IN GUIDES */
.icon-list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 16px;
}
.icon-list img {
  width: 31px;
  height: 31px;
  opacity: 0.89;
}

/* BLOG TAGS */
.blog-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.blog-tags .tag {
  background: var(--color-leaf);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 3px 10px;
  border-radius: 13px;
  margin-right: 6px;
}
.blog-meta {
  color: var(--color-secondary);
  font-size: 0.97rem;
  margin-top: 4px;
  display: block;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.87;
}

/* CARD STYLES */
.product-highlights ul, .text-section ul {
  margin-left: 22px;
  margin-bottom: 0;
}
.product-highlights ul li, .text-section ul li {
  list-style: disc;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 1rem;
}

/* CONTACT/TEAM/LEGAL SECTION */
.text-section > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.text-section img {
  width: 21px;
  height: 21px;
  margin-right: 6px;
  opacity: 0.85;
}

/* FOOTER */
footer {
  background: var(--color-earth);
  padding: 38px 0 24px 0;
  border-radius: 36px 36px 0 0/30px 34px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(39,60,91,0.06);
  margin-top: 44px;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 23px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 13px;
  justify-content: center;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  font-weight: 500;
  border-radius: 9px;
  padding: 2.5px 6px;
  transition: color 0.18s, background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  background: #e7f3e8;
}
.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.97rem;
  color: var(--color-subtle);
  opacity: 0.89;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img { width: 16px; height: 16px; opacity: 0.8; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--color-primary);
}
.footer-brand img { width: 32px; height: 32px; }
footer span { font-size: 1rem; color: var(--color-primary); }

@media (max-width: 800px) {
  .footer-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* RESPONSIVE FLEXBOX BEHAVIOUR */
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 16px; }
  .feature-grid { flex-direction: column; gap: 16px; }
  .feature-grid li { min-width: unset; width: 100%; }
  .card-container { flex-direction: column; gap: 16px; }
  .footer-contact { flex-direction: column; gap: 9px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 7px; }
  .testimonials .content-wrapper { gap: 14px; }
  .cta, .hero, .section, .about, .team, .legal, .faq, .contact-details { padding: 21px 5px; }
}

/* GENERAL SPACING FOR SECTIONS AND CARDS */
.section, .card, .testimonial-card, .feature-grid li, .cta, .about, .team, .legal, .guide-categories, .hero {
  margin-bottom: 60px;
}
.card, .testimonial-card, .feature-grid li {
  margin-bottom: 20px;
}

/* HOVER/FOCUS TRANSITIONS */
button, .cta-btn, a, .feature-grid li, .card, .testimonial-card {
  transition: background 0.14s, color 0.17s, box-shadow 0.15s, transform 0.14s;
}
button:active, a:active, .cta-btn:active {
  transform: scale(0.97);
}
a:focus { outline: 2px solid var(--color-secondary); outline-offset: 1px; }

/* MICRO-INTERACTIONS */
.feature-grid li {
  cursor: pointer;
}
.feature-grid li:hover {
  background: #F2FBF6;
}

/* FORMS (if any, style for contact pages) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F2ED;
  border: 1.5px solid #e2e9dc;
  border-radius: 9px 9px 15px 9px/8px 10px 13px 9px;
  padding: 10px 15px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: var(--color-primary);
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 16px;
  background: var(--color-surface);
  box-shadow: 0 4px 26px rgba(39,60,91,0.13);
  border-radius: 20px 29px 24px 18px/21px 22px 28px 17px;
  padding: 28px 18px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  z-index: 3001;
  font-size: 1rem;
  max-width: 99vw;
  animation: cookieSlideIn 0.45s cubic-bezier(.49,.24,.28,.93) 1;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner p {
  color: #273C5B;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex; gap: 17px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  padding: 9px 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 21px 17px 13px 17px/17px 19px 15px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.15s, box-shadow 0.11s;
  box-shadow: 0 1px 7px 0 rgba(22,160,133,0.10);
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .accept:hover { background: #10745E; }
.cookie-banner .reject {
  background: var(--color-earth);
  color: var(--color-primary);
  border: 1.5px solid var(--color-leaf);
}
.cookie-banner .reject:hover { background: #F0E7DE; color: #A2C386; }
.cookie-banner .settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid #e2e9dc;
}
.cookie-banner .settings:hover { background: #F7FFFA; color: #16A085; }

@media (max-width:700px) {
  .cookie-banner { padding: 17px 7px 12px 8px; bottom: 9px; left: 2px; right: 2px; font-size: .97rem; }
  .cookie-banner .cookie-btns { flex-direction: column; gap: 7px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-bg {
  position: fixed; left:0; top:0; right:0; bottom:0;
  background: rgba(39,60,91,0.42);
  z-index: 4001;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.open { display: flex; }
.cookie-modal {
  background: #fff;
  border-radius: 22px 21px 19px 20px/20px 20px 22px 19px;
  box-shadow: 0 10px 40px rgba(22,160,133,0.19);
  padding: 38px 28px 23px 28px;
  max-width: 95vw;
  width: 430px;
  animation: cookieModalIn 0.34s cubic-bezier(.65,.13,.22,.96) 1;
}
@keyframes cookieModalIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.21rem;
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  font-size: 1rem;
  flex: 1 1 60%;
}
.cookie-toggle {
  width: 46px;
  height: 26px;
  background: #e2e9dc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-toggle.active { background: var(--color-secondary); }
.cookie-toggle .slider {
  position: absolute;
  top: 3px; left: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1px 3px rgba(39,60,91,0.11);
}
.cookie-toggle.active .slider { left: 22px; background: var(--color-leaf); }
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 25px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #a2c386;
  cursor: pointer;
}
.cookie-modal .modal-btns {
  margin-top: 16px;
  display: flex; gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .modal-btns button {
  padding: 9px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  background: var(--color-secondary);
  color: #fff;
  transition: background 0.14s;
}
.cookie-modal .modal-btns button.reject { background: var(--color-leaf); color: var(--color-primary); }
.cookie-modal .modal-btns button.reject:hover { background: #cbefd6; }
.cookie-modal .modal-btns button.accept:hover { background: #10745E; }

@media (max-width:560px) {
  .cookie-modal { padding: 19px 5px 12px 8px; width: 99vw; min-width: unset; }
}

/* UTILITIES */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-20 { gap: 20px; }

/* CUSTOM ORGANIC BUTTON (used in some sections) */
.organic-btn {
  background: var(--color-earth);
  color: var(--color-primary);
  border-radius: 19px 15px 22px 14px/13px 18px 19px 17px;
  padding: 10px 29px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 7px 0 rgba(130, 180, 80, 0.11);
  cursor: pointer;
  transition: background 0.12s, color 0.15s;
}
.organic-btn:hover, .organic-btn:focus {
  background: var(--color-leaf);
  color: var(--color-secondary);
}

/* ---------
   COLOR BLINDNESS & CONTRAST ASSIST
*/
@media (forced-colors: active) {
  body, header, footer, .section, .hero, .cta, .card, .testimonial-card {
    forced-color-adjust: auto !important;
  }
}

/* END OF STYLE */
