/* 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, main, menu, nav, output, ruby, 
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #faf8f5;
  color: #283f2b;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* VARIABLES / COLOR PALETTE by fallback */
:root {
  --color-primary: #215173;
  --color-secondary: #F7EAD7;
  --color-accent: #FCA311;
  --color-body: #283f2b;
  --color-earth-light: #eae5d7;
  --color-earth-medium: #a1a58c;
  --color-bg-section: #fffefb;
  --color-card: #fdfaf2;
  --color-success: #3e6947;
  --color-error: #b23d2a;
  --radius-l: 24px;
  --radius-m: 12px;
  --radius-s: 6px;
  --shadow-m: 0 2px 12px rgba(73, 89, 55, 0.10);
  --shadow-l: 0 4px 24px rgba(45, 52, 25, 0.10);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1a3f59;
  letter-spacing: -0.5px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  color: #215173;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #215173;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  color: #2d683c;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 14px;
  color: #283f2b;
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #283f2b;
}
strong { font-weight: 700; color: #215173; }
blockquote {
  font-style: italic;
  color: #215173;
  background: var(--color-earth-light);
  border-left: 5px solid var(--color-accent);
  padding: 15px 24px;
  border-radius: var(--radius-m);
  margin-bottom: 8px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}

/* HEADER & NAV */
header {
  background: #fff;
  box-shadow: var(--shadow-m);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 15px 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #215173;
  border-radius: var(--radius-s);
  padding: 7px 14px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
header nav a.button-primary {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-m);
  font-weight: 700;
  font-size: 1.09rem;
  padding: 11px 24px;
  margin-left: auto;
  box-shadow: 0 2px 6px rgba(252,163,17,0.08);
  transition: box-shadow 0.2s, background 0.2s;
}
header nav a.button-primary:hover, header nav a.button-primary:focus {
  background: #cf850a;
  box-shadow: 0 4px 14px rgba(252,163,17,0.17);
  color: #fff;
}
header nav img {
  width: 44px;
  height: auto;
  margin-right: 8px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: var(--radius-m);
  padding: 9px 14px;
  font-size: 1.8rem;
  color: #215173;
  margin-right: 12px;
  box-shadow: var(--shadow-m);
  z-index: 1201;
  transition: background 0.14s, color 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33,81,115,0.97);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.49,.33,.18,.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-bottom: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.15rem;
  border-radius: var(--radius-m);
  align-self: flex-end;
  margin: 0 20px 18px 0;
  padding: 6px 18px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 12px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: var(--radius-m);
  padding: 14px 18px;
  margin: 0 -10px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #215173;
}
@media (max-width: 1024px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 5px;
    font-size: 0.95rem;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* MAIN LAYOUTS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}
.text-section {
  margin-bottom: 16px;
  background: var(--color-card);
  border-radius: var(--radius-m);
  padding: 28px 22px;
  box-shadow: var(--shadow-m);
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 25px 4px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-section {
    padding: 16px 8px;
  }
}

/* FLEX-BASED CONTENT GRIDS (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-card);
  padding: 28px 18px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 250px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-l);
  transform: translateY(-2px) scale(1.018);
}
.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: 900px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* List styling (feature/service/topic icons) */
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 36px;
  margin-bottom: 14px;
  font-size: 1.07rem;
  background: transparent;
  border-radius: var(--radius-s);
  padding: 0;
}
ul li img, ol li img, .text-section a img {
  width: 28px;
  height: 28px;
  filter: grayscale(35%) hue-rotate(-30deg) saturate(120%) brightness(92%);
  opacity: 0.98;
}

/* Testimonial Card Layout/Color Contrast */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: 0 2px 16px 0 rgba(33,81,115,.14);
  margin-bottom: 20px;
  border-left: 8px solid var(--color-accent);
  max-width: 640px;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  color: #215173;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #283f2b;
  font-size: 0.97rem;
  margin: 0 0 0 10px;
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px 7px;
    border-radius: var(--radius-m);
    margin-bottom: 15px;
  }
}

/* BUTTONS & INTERACTIVE ELEMENTS */
.button-primary,
.button-secondary {
  display: inline-block;
  border: none;
  border-radius: var(--radius-m);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 12px 28px;
  margin-top: 6px;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(252,163,17,0.07);
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.13s;
  outline: none;
  letter-spacing: 0.01em;
}
.button-primary:hover,
.button-primary:focus {
  background: #cf850a;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(252,163,17,0.16);
  transform: translateY(-3px);
}
.button-secondary {
  background: #215173;
  color: #fff;
}
.button-secondary:hover, .button-secondary:focus {
  background: #18354c;
  color: #f7ead7;
}
.button-accent {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  font-weight: 700;
}
.button-accent:hover {
  background: var(--color-accent);
  color: #fff;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #eae5d7;
  margin-top: 40px;
  padding: 30px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  justify-content: center;
}
footer nav {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  color: #215173;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: var(--radius-s);
  padding: 6px 10px;
  opacity: 0.94;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.legal-links a {
  color: #215173;
  opacity: 0.76;
  text-decoration: underline;
}
.legal-links a:hover, .legal-links a:focus {
  color: var(--color-accent);
  opacity: 0.99;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 46px;
  border-radius: 50%;
  background: #ecf2e1;
  box-shadow: 0 1px 2px rgba(44,60,43,0.06);
}
.brand p {
  color: #5c6955;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 700px) {
  footer .container {
    gap: 10px;
    padding: 0 4px;
  }
  footer nav {
    gap: 7px;
    flex-wrap: wrap;
    font-size: 0.92rem;
  }
  .brand img {
    width: 36px;
  }
}

/* ORGANIC DECORATIVE SHAPES */
.section, .card, .testimonial-card, header, footer {
  /* add subtle organic border to accentuate the nature style */
  border-radius: 32px 42px 34px 30px/23px 38px 30px 42px;
}
@media (max-width: 768px) {
  .section, .card, .testimonial-card, header, footer {
    border-radius: 18px 24px 20px 16px/14px 22px 14px 20px;
  }
}

/* SECTION ALTERNATING BACKGROUNDS */
main section:nth-child(even) .container {
  background: #f7ead7;
  border-radius: 36px 28px 42px 32px/31px 33px 30px 35px;
  box-shadow: none;
  padding-bottom: 32px;
  padding-top: 32px;
}

/* SPACING/RESPONSIVE TUNE-UP */
@media (max-width: 520px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
}

/* MICRO-ANIMATIONS */
.button-primary, .button-secondary, .button-accent {
  transition: background 0.17s, color 0.13s, transform 0.13s;
}
a, button, .button-primary, .button-secondary, .mobile-menu-toggle {
  transition: color 0.17s, background 0.13s, box-shadow 0.13s, transform 0.11s;
}
.card, .testimonial-card, .text-section {
  transition: box-shadow 0.13s, background 0.13s, transform 0.13s;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  background: var(--color-secondary);
  box-shadow: 0 -2px 22px rgba(64,53,29,0.11);
  color: #215173;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  font-size: 1rem;
  border-radius: 30px 30px 0 0/22px 22px 0 0;
  min-height: 44px;
  gap: 24px;
  animation: slideUp 0.38s cubic-bezier(0.4,0,0.2,1);
  box-sizing: border-box;
}
.cookie-banner__text {
  flex: 1 1 auto;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
}
.cookie-banner button {
  min-width: 115px;
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: var(--radius-s);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  color: #fff;
  cursor: pointer;
  margin: 0;
  transition: background 0.12s, color 0.12s;
}
.cookie-banner .accept {
  background: var(--color-accent);
}
.cookie-banner .accept:hover { background: #cf850a; }
.cookie-banner .reject {
  background: #3e6947;
}
.cookie-banner .reject:hover { background: #265933; }
.cookie-banner .settings {
  background: #215173;
}
.cookie-banner .settings:hover { background: #163552; }

@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px;
    gap: 14px;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
}

/* Cookie Modal Overlay */
.cookie-modal__backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,81,115,0.74);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.23s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal {
  background: #fff;
  min-width: 320px;
  max-width: 95vw;
  border-radius: 22px 26px 10px 16px / 20px 30px 24px 16px;
  box-shadow: 0 6px 50px rgba(33,81,115,0.19);
  padding: 35px 28px 28px 28px;
  z-index: 1701;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: scaleUp 0.24s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #215173;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: #215173;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--color-accent);
  width: 18px;
  height: 18px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 24px;
}
.cookie-modal .close-cookie-modal {
  background: #b23d2a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  margin-left: auto;
}
.cookie-modal .close-cookie-modal:hover {
  background: #871a0a;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 13px 6px 14px 6px;
  }
}

@keyframes slideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes scaleUp {
  from { transform: scale(.93); opacity: 0.4; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ORGANIC TEXTURE EFFECT FOR ORGANIC STYLE */
body {
  background: repeating-linear-gradient(141deg, #faf8f5, #faf8f5 92px, #f7ead7 93px, #faf8f5 125px);
}
.section, .card, .testimonial-card {
  background-image: linear-gradient(123deg, rgba(230,235,214,.03) 68%, rgba(170,186,120,.08) 100%);
}
main section:nth-child(even) .container {
  background-image: linear-gradient(90deg, #f7ead7 72%, #fffefb 100%);
}

/* FORMS & INPUTS */
input, textarea, select {
  border-radius: var(--radius-s);
  border: 1.5px solid #b9b6a4;
  padding: 9px 13px;
  font-size: 1rem;
  margin-bottom: 14px;
  min-width: 180px;
  transition: border 0.16s;
  background: #fdfde7;
  color: #283f2b;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #fffdf5;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #215173;
  margin-bottom: 8px;
  display: inline-block;
}

/* UTILITY CLASSES */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 18px !important; }
.mb-3 { margin-bottom: 30px !important; }

/* SOCIAL ICONS (FOOTER, CONTACT) */
.text-section a img {
  margin-right: 8px;
  width: 29px;
  height: 29px;
  transition: filter 0.15s;
  border-radius: 100px;
  background: #f7ead7;
  padding: 4px;
  box-shadow: 0 1px 4px rgba(44, 60, 43, .08);
}
.text-section a img:hover {
  filter: grayscale(0%) sepia(30%) hue-rotate(35deg) brightness(1.1) drop-shadow(0 0 2px #FCA311);
}

/* FOCUS STYLE FOR ACCESSIBILITY */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus {
  box-shadow: 0 0 0 3px var(--color-accent), 0 2px 10px rgba(48,89,27,0.05);
  outline: none;
}

/* SCROLLBAR STYLE for webkit browsers */
::-webkit-scrollbar {
  width: 13px;
}
::-webkit-scrollbar-thumb {
  background: #C4BEA7;
  border-radius: 13px;
}
::-webkit-scrollbar-track {
  background: #faf8f5;
}
/* For modern Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #C4BEA7 #faf8f5;
}

/* ORGANIC HOVER SHADOWS*/
.section:hover, .text-section:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 46px 0 rgba(140,139,69,0.09), 0 2px 13px 0 rgba(39, 77, 35, 0.11);
}

/* MISC. SPACING */
main section, main .section {
  margin-bottom: 60px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  main section, main .section {
    margin-bottom: 34px;
  }
}

/* ENFORCE FLEXBOX EVERYWHERE! */
/* All .container, .content-wrapper, .card-container etc. already set to flex or block as needed above */