/* RESET & BASE -------------------------------------------------- */
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;
}
body {
  line-height: 1.5;
  font-family: 'Lato', Arial, sans-serif;
  background: #F3F6F8;
  color: #254150;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #254150;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 18px; letter-spacing: -0.5px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, blockquote {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #3a4b54;
}
ul, ol { padding-left: 24px; }
ul li, ol li { margin-bottom: 8px; }
a {
  color: #765c3e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #254150;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  border-radius: 12px;
}
strong { font-weight: 700; }
em { font-style: italic; }
blockquote {
  border-left: 4px solid #765c3e;
  padding-left: 18px;
  color: #5E3D13;
  margin: 0 0 10px 0;
  font-style: italic;
  font-size: 1.1rem;
}
cite {
  font-style: normal;
  color: #908377;
  font-size: 0.98rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 34px 0 rgba(180, 144, 75, 0.09);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 18px 0;
}

/* FLEXBOX LAYOUTS -------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 300px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(120, 92, 62, 0.07);
  position: relative;
  min-width: 260px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(120, 92, 62, 0.19);
  transform: translateY(-4px) scale(1.01);
}
.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;
  background: #fff9f4;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(120, 92, 62, 0.10);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAF4ED;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(120,92,62,0.06);
  margin-bottom: 20px;
}

/* HERO -------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #f9e1d1 0%, #f3ede7 100%);
  padding: 60px 0 60px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 36px 0 rgba(180,144,75,0.07);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.hero h1 {
  color: #254150;
}
.hero p {
  font-size: 1.25rem;
  color: #291C11;
}

/* BUTTONS -------------------------------------------------- */
.cta-btn {
  display: inline-block;
  background: #765c3e;
  color: #fff !important;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 13px 36px;
  box-shadow: 0 2px 14px 0 rgba(120, 92, 62, 0.13);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A0733F;
  box-shadow: 0 6px 32px 0 rgba(120,92,62,0.17);
  transform: translateY(-2px) scale(1.03);
  color: #fff !important;
}
.button, button, input[type="submit"], input[type="button"] {
  background: #254150;
  border: none;
  color: #fff;
  border-radius: 26px;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(37, 65, 80, 0.14);
  transition: background 0.2s, box-shadow 0.18s;
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover,
.button:focus, button:focus, input[type="submit"]:focus, input[type="button"]:focus {
  background: #908377;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(120,92,62,0.19);
  outline: none;
}

/* NAVIGATION -------------------------------------------------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  background: transparent;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  align-items: center;
  justify-content: center;
}
.main-nav > a {
  color: #254150;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 14px;
  transition: background 0.15s, color 0.18s;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: #f3ede7;
  color: #765c3e;
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 18px;
  border-radius: 11px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 16px 0;
}
.footer-nav a {
  color: #908377;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.00rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #765c3e;
}

header {
  background: #fff;
  box-shadow: 0 0 18px rgba(37, 65, 80, 0.03);
  position: relative;
  z-index: 10;
}
footer {
  background: #F3F6F8;
  padding: 38px 0 16px 0;
  border-top: 2px solid #F7ECE1;
  box-shadow: 0 -4px 18px 0 rgba(180,144,75,0.06);
}
footer .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: flex;
  gap: 12px;
}
footer img {
  height: 38px;
  width: auto;
}
footer p {
  color: #A29F9C;
  font-size: 0.97rem;
  margin-top: 6px;
}

/* MOBILE NAVIGATION --------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.5rem;
  color: #66543c;
  padding: 8px 18px 8px 8px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  z-index: 302;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fdeede;
  color: #765c3e;
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff6e8;
  box-shadow: 0 0 50px rgba(120,92,62,0.22);
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.28s, transform 0.32s cubic-bezier(.83,-0.01,0,.99);
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #765c3e;
  margin: 16px 24px 0 0;
  cursor: pointer;
  border-radius: 40px;
  padding: 6px 16px;
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #efe2d1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
}
.mobile-nav a {
  color: #254150;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 38px;
  border-radius: 24px;
  text-align: center;
  transition: background 0.15s, color 0.18s;
  width: 75vw;
  max-width: 340px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #efe2d1;
  color: #765c3e;
}

@media (max-width: 1100px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .main-nav {
    gap: 12px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 5px;
    top: 14px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
  .hero {
    padding: 38px 0 38px 0;
    border-radius: 0 0 20px 20px;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 14px;
  }
  .testimonial-card, .feature-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 15px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 13px;
    align-items: flex-start !important;
  }
  footer .container {
    gap: 6px;
    padding-top: 14px;
  }
}

/* Spacing ensure no overlap */
.section + .section, .card + .card, .testimonial-card + .testimonial-card {
  margin-top: 24px;
}
.text-section + .text-section {
  margin-top: 12px;
}

/* TESTIMONIALS -------------------------------------------------- */
#testimonials, #testimonial {
  padding: 0;
}
.testimonial-card {
  background: #fff9f4;
  color: #254150;
  box-shadow: 0 4px 18px rgba(120,92,62,0.13);
  border-radius: 18px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  color: #66543c;
  font-size: 1.13rem;
}
.testimonial-card cite {
  color: #908377;
  margin-left: 14px;
}

/* FORMS -------------------------------------------------- */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid #eedcbc;
  background: #fff;
  font-size: 1rem;
  color: #3a4b54;
  width: 100%;
  margin-bottom: 20px;
  transition: border 0.16s;
  font-family: 'Lato', Arial, sans-serif;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #a0733f;
  outline: none;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: #254150;
  margin-bottom: 4px;
}

/* LISTS & MARKS -------------------------------------------------- */
ul {
  list-style: disc inside;
}
ul li::marker, ol li::marker {
  color: #a0733f;
  font-weight: bold;
}

/* MISC -------------------------------------------------- */
::-webkit-input-placeholder { color: #bda177; }
::-moz-placeholder { color: #bda177; }
:-ms-input-placeholder { color: #bda177; }
::placeholder { color: #bda177; }

hr {
  border: none;
  border-bottom: 1px solid #eedcbc;
  margin: 24px 0;
}


/* COOKIE CONSENT BANNER ------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #fff8ed;
  color: #254150;
  box-shadow: 0 -8px 32px 0 rgba(120,92,62,0.16);
  padding: 25px 24px 21px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 18px 18px 0 0;
  animation: bannerSlideUp 0.45s cubic-bezier(.64,-0.01,.49,1.17);
}
@keyframes bannerSlideUp {
  from { transform: translateY(70px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: #254150;
  color: #fff;
  border: none;
  padding: 11px 25px;
  border-radius: 24px;
  font-size: 1rem;
  margin-right: 0;
  margin-bottom: 0;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.16s;
  box-shadow: 0 2px 7px 0 rgba(37,65,80,0.14);
}
.cookie-btn.accept {
  background: #765c3e;
}
.cookie-btn.reject {
  background: #fff;
  color: #765c3e;
  border: 1.5px solid #765c3e;
}
.cookie-btn.settings {
  background: #fff7e1;
  color: #254150;
  border: 1.5px solid #eedcbc;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #a0733f;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(120,92,62,0.17);
  outline: none;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f3ede7;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f9e9ce;
  color: #765c3e;
}

@media (max-width: 600px) {
  .cookie-banner {
    font-size: 1.0rem;
    padding: 20px 10px 18px 10px;
    gap: 11px;
    border-radius: 16px 16px 0 0;
  }
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .cookie-banner { padding: 16px 0 10px 0; }
}

/* COOKIE PREFERENCES MODAL ------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(37,65,80,0.18);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.36s;
}
.cookie-modal {
  background: #fff7e1;
  border-radius: 22px;
  padding: 36px 30px 32px 30px;
  box-shadow: 0 7px 44px 0 rgba(120,92,62,0.13);
  min-width: 310px; 
  max-width: 98vw;
  color: #254150;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalPopIn 0.32s cubic-bezier(.53,.07,.37,1.15);
}
@keyframes modalPopIn {
  from { transform: scale(0.88) translateY(25px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__header {
  font-size: 1.35rem; font-family: 'Montserrat',Arial,sans-serif; font-weight: 700; margin-bottom: 18px; color: #a0733f;
}
.cookie-modal__category {
  margin-bottom: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #eedcbc;
  width: 100%;
}
.cookie-modal__category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #eedcbc;
  border-radius: 20px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  vertical-align: middle;
  margin-right: 10px;
}
.cookie-toggle:checked {
  background: #765c3e;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-toggle:checked:before {
  left: 21px;
}
.cookie-toggle[disabled] {
  opacity: 0.56;
  cursor: not-allowed;
}
.cookie-modal__footer {
  display: flex;
  gap: 17px;
  margin-top: 15px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal__footer .cookie-btn {
  min-width: 110px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 19px;
  right: 23px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #765c3e;
  cursor: pointer;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-modal .close-btn:focus, .cookie-modal .close-btn:hover {
  background: #fbe6cd;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px 6vw 18px 6vw;
    min-width: 0;
  }
  .cookie-modal__footer {
    gap: 8px;
  }
}

/* VISUAL HIERARCHY, SHADOWS, RADIUS ----------------------------- */
.card, .section, .hero, .testimonial-card, .cookie-banner, .cookie-modal {
  border-radius: 20px;
}
.card, .feature-item, .testimonial-card {
  box-shadow: 0 2px 20px 0 rgba(120, 92, 62, 0.08);
}
.section {
  box-shadow: 0 6px 34px 0 rgba(180, 144, 75, 0.07);
}

/* FOCUS STYLES -------------------------------------------------- */
:focus {
  outline: 2.5px solid #facd93;
  outline-offset: 1.5px;
  transition: outline 0.1s;
}
[tabindex="-1"]:focus { outline: none; }

/* SELECTION -------------------------------------------------- */
::selection {
  background: #ffe5bd;
  color: #254150;
}

/* UTILITIES -------------------------------------------------- */
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }
gap-20 { gap: 20px !important; }
.rounded-12 { border-radius: 12px; }

/* PRINT -------------------------------------------------- */
@media print {
  .cookie-banner,
  .cookie-modal-overlay,
  .mobile-menu, 
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* END OF CSS */