/* 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 {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F5F5;
  color: #263238;
  font-size: 16px;
  line-height: 1.6;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}
a {
  color: #8D6E63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #263238;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263238;
  font-weight: 900;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 800;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-weight: 700;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/* SECTION SPACING, CONTAINER, CONTENT WRAPPER */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgb(41 41 41 / 4%);
}
.container {
  display: flex;
  flex-direction: column;
  max-width: 1070px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FLEX LAYOUT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(33,34,54,0.12);
}
.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: #F5F5F5;
  border-radius: 20px;
  box-shadow: 0 2px 8px #0000000d;
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px #8D6E6333;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  background: #263238;
  color: #fff;
  box-shadow: 0 2px 12px #26323811;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 8px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F5F5F5;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.25s, color 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #8D6E63;
  color: #fff;
}

header img {
  height: 40px;
  margin-right: 16px; 
}

.cta-btn {
  background: #8D6E63;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 32px;
  box-shadow: 0 2px 12px #8D6E6344;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.11s, box-shadow 0.21s;
  border: none;
  margin-left: 16px;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #263238;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 32px #26323833;
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  padding: 8px 14px;
  font-size: 2rem;
  border-radius: 8px;
  background: #8D6E63;
  color: #fff;
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 14px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #263238;
  box-shadow: 0 4px 16px #8D6E6388;
  outline: none;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #263238ee;
  z-index: 90;
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.49,.04,.51,.97), opacity 0.24s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 12px 18px 12px 6px;
  margin-bottom: 22px;
  margin-right: 7vw;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #8D6E63;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 7vw;
}
.mobile-nav a {
  color: #F5F5F5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.97;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 12px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #8D6E63;
  color: #fff;
}

/* MAIN SECTIONS & CARDS */
main section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  border-radius: 16px;
}
main section .container {
  padding: 0 8px;
}

/* LISTS IN CONTENT */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 13px;
}
ul li img {
  width: 30px;
  min-width: 30px;
  max-height: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px #26323813;
  margin-right: 8px;
}

/* TESTIMONIALS */
.content-wrapper .testimonial-card {
  background: #fff;
  color: #263238;
  border-left: 6px solid #8D6E63;
  box-shadow: 0 4px 24px #8D6E6320;
  min-height: 110px;
  padding: 26px 28px 20px 22px;
  margin-bottom: 24px;
  gap: 18px;
  font-size: 1.1rem;
  transition: box-shadow 0.2s, transform 0.17s;
}
.content-wrapper .testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  margin-bottom: 5px;
  color: #263238;
}
.content-wrapper .testimonial-card span {
  color: #8D6E63;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

/* FOOTER */
footer {
  background: #263238;
  color: #F5F5F5;
  padding: 30px 0 16px;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
footer img {
  height: 46px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
  padding-top: 10px;
}
footer nav a {
  color: #F5F5F5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.77;
  transition: color 0.2s, opacity 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #8D6E63;
  opacity: 1;
}
footer p {
  font-size: 0.96rem;
  color: #F5F5F5;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #263238;
  box-shadow: 0 -4px 28px #26323815;
  z-index: 101;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 18px 8vw 18px 8vw;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  animation: bannerIn 0.6s cubic-bezier(.8,.15,.5,1);
}
@keyframes bannerIn {
  from { transform: translateY(140%); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 0 0 0;
  flex: 1;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: #8D6E63;
  color: #fff;
}
.cookie-btn.reject {
  background: #263238;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  border: 2px solid #8D6E63;
  color: #8D6E63;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #263238;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8D6E63;
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F5F5F5;
  color: #263238;
  border-color: #263238;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 120;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #263238BB;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeinModal 0.5s cubic-bezier(.8,.14,.5,1);
}
@keyframes fadeinModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #263238;
  border-radius: 24px;
  padding: 34px 36px 28px 36px;
  max-width: 95vw;
  width: 400px;
  box-shadow: 0 10px 44px #26323838;
  z-index: 121;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn 0.42s cubic-bezier(.67,.17,.38,1.02);
}
@keyframes cookieModalIn {
  from { transform: translateY(50px) scale(0.92); opacity: 0.4; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 11px;
  color: #8D6E63;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f1edea;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #263238;
}
.cookie-toggle {
  width: 50px;
  height: 30px;
  background: #E0E0E0;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  margin-left: 18px;
  appearance: none;
}
.cookie-toggle:checked {
  background: #8D6E63;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 5px; top: 5px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s;
}
.cookie-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  padding-top: 18px;
  justify-content: flex-end;
}

/* CLOSE BUTTON (cookie modal) */
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 24px;
  font-size: 1.6rem;
  font-weight: 900;
  color: #8D6E63;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #263238;
}

/* BUTTONS UNIVERSAL */
button, .cta-btn, .cookie-btn {
  outline: none;
}

/* CARD STYLES */
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px #26323810;
  padding: 24px 26px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* VISUALS */
hr {
  border: none;
  border-top: 2px solid #8D6E63;
  margin: 32px 0;
}

/* GEOMETRIC/DECORATIVE ELEMENTS */
.section {
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 20px;
  width: 72px;
  height: 6px;
  background: #8D6E63;
  border-radius: 6px;
  opacity: 0.27;
}
.section:nth-child(even)::before {
  left: auto; right: 16px;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1020px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .container, .section, main section {
    padding-left: 0;
    padding-right: 0;
  }
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .section::before {
    left: 16px;
    width: 56px;
  }
}
@media (max-width: 768px) {
  /* Header */
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 10px 2vw;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 3px;
    padding: 10px 18px;
    font-size: 0.98rem;
    border-radius: 22px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 8px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .card, .testimonial-card {
    padding: 15px 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 15px;
  }
  header img {
    height: 30px;
  }
  .section {
    margin-bottom: 28px;
    padding: 14px 0;
  }
  h1 {
    font-size: 1.45rem;
    margin-bottom: 19px;
  }
  h2 {
    font-size: 1.19rem;
    margin-bottom: 11px;
  }
  .testimonial-card {
    padding: 14px 9px 13px 11px;
  }
  .cookie-modal {
    max-width: 99vw;
    width: 97vw;
    padding: 17px 7vw 15px 7vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 4vw 16px 4vw;
    gap: 13px;
    font-size: 0.99rem;
  }
}

/* MICROINTERACTIONS, EFFECTS */
.cta-btn, .cookie-btn, .cookie-settings-btn {
  box-shadow: 0 2px 14px #8D6E6335;
  will-change: transform;
}
.cta-btn:active, .cookie-btn:active, .cookie-settings-btn:active {
  transform: scale(0.98);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px #26323826;
  transform: translateY(-1px) scale(1.02);
}

/* GEOMETRIC SHADOWS ON CARDS */
.card, .testimonial-card {
  border-radius: 2.1rem;
}

/* INPUTS (for forms consistency, used for cookie toggles etc.) */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 11px;
  border: 1.5px solid #8D6E6338;
  padding: 10px 12px;
  margin-bottom:16px;
  background: #fff;
  color: #263238;
  transition: border 0.2s;
  box-shadow: 0 1px 6px #26323813;
}
input:focus, select:focus, textarea:focus {
  border-color: #8D6E63;
  outline: none;
}

/* Hide Cookie Banner/Modal by Default (add .show in JS to show) */
.cookie-banner, .cookie-modal-backdrop {
  display: none;
}
.cookie-banner.show {
  display: flex;
}
.cookie-modal-backdrop.show {
  display: flex;
}

/* Accessibility focus styles */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #8D6E63;
  outline-offset: 2px;
  z-index: 9;
}

/* High contrast accessibility for testimonials */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  background: #fff;
  color: #263238;
}

/* Extra: Scrollbar Style for Modern Bold Look */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #8D6E63;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:active {
  background: #263238;
}

/* Strong color callouts - modern_bold accents */
.highlight, .accent {
  color: #8D6E63;
  font-weight: 700;
}

/* End of CSS */