/* 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 {
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F6F1ED;
  color: #255148;
  min-height: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #F6F1ED;
  color: #255148;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A3724B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #34645D;
  text-decoration: underline;
}
ul {
  list-style-type: none;
}

/* TYPOGRAPHY & HEADINGS --------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin: 0 0 16px 0;
  color: #255148;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 14px;
  color: #34645D;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.28rem;
  margin-bottom: 10px;
  color: #A3724B;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #255148;
}
p, .subheadline {
  font-size: 1.125rem;
  margin-bottom: 16px;
}
.subheadline {
  color: #34645D;
  font-weight: 500;
}
strong {
  font-weight: 700;
}

/* CONTAINERS & SECTIONS ---------------------------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(52,100,93,0.07);
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 14px;
  }
  h1 {
    font-size: 1.60rem;
  }
  h2 {
    font-size: 1.17rem;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

ul {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}

li {
  font-size: 1.05rem;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CARD & FLEX LAYOUTS ----------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(163,114,75,0.09);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 250px;
  padding: 24px;
  transition: box-shadow 0.22s, transform 0.24s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 #A3724B55;
  transform: translateY(-7px) scale(1.03);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(52,100,93,0.12);
  padding: 22px 20px;
  min-width: 200px;
}
@media (max-width: 768px) {
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
}

/**** CTA, BUTTONS & LINKS *************************/
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 16px 30px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cta.primary {
  background: #A3724B;
  color: #fff;
  box-shadow: 0 3px 12px #A3724B27;
}
.cta.primary:hover, .cta.primary:focus {
  background: #34645D;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cta.secondary {
  background: #fff;
  color: #34645D;
  border: 2px solid #A3724B;
  box-shadow: 0 2px 10px #34645D17;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #34645D;
  color: #fff;
  border-color: #34645D;
  transform: translateY(-2px) scale(1.04);
}
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 24px;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  background: #34645D;
  color: #fff;
  transition: background 0.17s, transform 0.18s, box-shadow 0.18s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #A3724B;
  color: #fff;
  box-shadow: 0 2px 14px #34645D2A;
  transform: translateY(-2px) scale(1.04);
}

/* HEADER & NAVBAR *********************************/
header {
  background: #255148;
  color: #fff;
  box-shadow: 0 2px 14px rgba(52,100,93,0.09);
  padding: 0;
  z-index: 10;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 12px 0;
  justify-content: flex-start;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.105rem;
  padding: 9px 13px;
  border-radius: 22px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #A3724B;
  color: #fff;
}
header nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

.mobile-menu-toggle {
  display: none;
  background: #A3724B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.16s;
  position: relative;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #255148;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 12px;
    z-index: 35;
  }
}

/* MOBILE MENU OVERLAY *****************************/
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #255148F6;
  flex-direction: column;
  justify-content: start;
  align-items: flex-end;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(.89,1.26,.36,1), opacity 0.2s;
  opacity: 0;
  z-index: 1002;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 8px 0;
  font-size: 2rem;
  background: #A3724B;
  color: #fff;
  border: none;
  border-radius: 30px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #A3724B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 10px;
  padding: 24px 38px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 17px 12px;
  border-radius: 21px;
  margin: 0 0 6px 0;
  background: none;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3724B;
  color: #fff;
}
@media (max-width: 550px) {
  .mobile-nav {
    padding: 16px 8px 0 12px;
  }
}

/* MAIN & HEROES ----------------------------------- */
main {
  margin-top: 0px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
}
section .container {
  width: 100%;
}
@media (max-width: 900px) {
  main {
    margin-top: 0;
  }
  section {
    margin-bottom: 36px;
    padding: 28px 0;
  }
}

/* VALUE & ICON GRIDS ------------------------------ */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.values-grid > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 18px #34645D13;
  padding: 24px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.values-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.values-grid strong {
  color: #34645D;
  font-size: 1.13rem;
}
.values-grid p {
  font-size: 1rem;
  color: #255148;
}
@media (max-width: 900px) {
  .values-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.service-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
}
.service-icons img {
  height: 36px;
  width: 36px;
}
@media (max-width: 650px) {
  .service-icons {
    gap: 13px;
  }
  .service-icons img {
    height: 28px;
    width: 28px;
  }
}

.tips-list {
  background: #FFEFDF;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 24px;
}
.tips-list h3 {
  margin-bottom: 8px;
}
.tips-list ul {
  gap: 10px;
  margin-bottom: 0;
}

/***** TESTIMONIAL CARDS ***************************/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(52,100,93,0.11);
  margin: 0 0 24px 0;
  flex-direction: row;
  max-width: 690px;
  color: #255148;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0;
  color: #34645D;
  quotes: '“' '”';
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #A3724B;
  font-size: 2.2rem;
  vertical-align: top;
}
.testimonial-meta {
  font-size: 1rem;
  font-style: italic;
  color: #A3724B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
  }
  .testimonial-card:last-child {
    margin-bottom: 0;
  }
}

/* FOOTER ----------------------------------------- */
footer {
  background: #255148;
  color: #fff;
  padding: 28px 0 18px 0;
  box-shadow: 0 -4px 10px #34645D12;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 3.5px 12px;
  border-radius: 9px;
  transition: color 0.16s, background 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: #A3724B;
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin: 9px 0 0 0;
}
@media (max-width: 600px) {
  footer nav {
    flex-direction: column;
    gap: 4px;
  }
  .footer-brand img {
    height: 34px;
  }
}

/* VISUAL ENHANCEMENTS: VIBRANT ENERGETIC LAYERS ----------- */
section {
  position: relative;
}
section::before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  left: -32px;
  width: 100px;
  height: 100px;
  background: #A3724B22;
  border-radius: 60% 36% 78% 52%/63% 58% 76% 60%;
  z-index: 0;
  pointer-events: none;
}
section:nth-child(even)::before {
  left: unset;
  right: -32px;
  top: unset;
  bottom: -32px;
  background: #25514822;
}
.section, .card, .feature-item, .testimonial-card, .tips-list, .values-grid > div {
  box-shadow: 0 3px 18px #A3724B0D, 0 1.5px 5px #34645D0f;
}

/* ADDITIONAL MICRO-INTERACTIONS -------------------------- */
a, .cta, button, .button {
  outline: none;
}
a:focus-visible, .cta:focus-visible, button:focus-visible, .button:focus-visible {
  outline: 2px solid #34645D;
  outline-offset: 2px;
}

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #A3724B50;
  padding: 10px 13px;
  caret-color: #A3724B;
}
input:focus, textarea:focus, select:focus {
  border-color: #A3724B;
  outline: none;
  box-shadow: 0 2px 9px #A3724B25;
}

/* MOBILE RESPONSIVENESS & FLEX FLOW ---------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper, .text-section, .card-container, .card, .content-grid, .values-grid, .service-icons {
    flex-direction: column !important;
    gap: 14px;
  }
}
@media (max-width: 550px) {
  .container, .section {
    padding-left: 0;
    padding-right: 0;
  }
}

/* COOKIE BANNER + MODAL **********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #255148;
  box-shadow: 0 -5px 18px #34645D1F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 10000;
  border-radius: 24px 24px 0 0;
  animation: cbfadein 0.8s cubic-bezier(.36,1.3,.24,1);
  padding: 20px 8px 14px 8px;
}
@keyframes cbfadein {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1;   }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  padding: 9px 22px;
  margin: 0 0 0 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.1s;
}
.cookie-banner .accept {
  background: #A3724B;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #A3724B;
  border: 2px solid #A3724B;
}
.cookie-banner .settings {
  background: #34645D;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #34645D;
  color: #fff;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10100;
  background: #255148b4;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s, visibility 0s 0.34s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.23s;
}
.cookie-modal-content {
  background: #fff;
  color: #255148;
  border-radius: 20px;
  box-shadow: 0 4px 32px #34645D1B, 0 1px 10px #A3724B13;
  padding: 36px 26px 22px 26px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 8px;
  color: #34645D;
  font-size: 1.3rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #A3724B;
  width: 19px; height: 19px;
  border-radius: 5px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 17px;
  background: #A3724B;
  color: #fff;
  border: none;
  border-radius: 26px;
  font-size: 1.4rem;
  width: 38px; height: 38px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: #34645D;
  color: #fff;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 18px 8px 14px 8px;
    min-width: 0;
  }
  .cookie-modal-close {
    top: 4px; right: 6px;
    width: 32px; height: 32px;
  }
}

/**** ACCESSIBILITY ENHANCEMENTS ********************/
:focus {
  outline: 2px dashed #A3724B;
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/**** VIBRANT ENERGETIC STYLE SPICE ***************/
body {
  /* Add a subtle colored border for energy! */
  border-top: 6px solid #A3724B;
  border-bottom: 6px solid #34645D;
}

/* Electric accent colored underline for h2/h3 */
h2, h3 {
  position: relative;
}
h2::after, h3::after {
  content: '';
  display: block;
  margin-top: 7px;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: #A3724B;
}

/**** SCROLLBAR STYLE ENERGETIC *******************/
::-webkit-scrollbar {
  width: 12px;
  background: #F6F1ED;
}
::-webkit-scrollbar-thumb {
  background: #A3724B66;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #34645D99;
}

/* Hide any native grid or columns if present (absolute safeguard) */
[class*='grid-'], [class*='columns'],
[class*='column-'], [class*='grid_'], [class*='g-'] {
  /* FORBIDDEN: do not apply grid or columns layouts */
}
