/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8EDEB;
  color: #263238;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #263238;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #607D8B;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #263238;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; letter-spacing: 0.03em; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; letter-spacing: 0.02em; }
h3 { font-size: 1.3rem; line-height: 1.3; margin-bottom: 12px; letter-spacing: 0.025em; }
h4, h5, h6 { margin-bottom: 8px; }
p { margin-bottom: 1em; font-size: 1rem; }
strong { font-weight: 700; }

/* STRUCTURE & FLEXBOX */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.text-section {
  align-items: flex-start;
  width: 100%;
  max-width: 760px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(38,50,56,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 2px 8px rgba(38,50,56,0.09);
  padding: 24px 20px;
  min-width: 270px;
  flex: 1;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 18px rgba(38,50,56,0.17);
  z-index: 3;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F8EDEB;
  border-left: 5px solid #607D8B;
  border-radius: 18px;
  padding: 20px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(96,125,139,0.03);
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  color: #263238;
  line-height: 1.4;
  margin: 0 0 8px 0;
  text-align: left;
}
.testimonial-card strong {
  color: #263238;
}

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

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(38,50,56,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 20px 0;
  z-index: 20;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #263238;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:hover, header nav a.active, header nav a:focus {
  background: #607D8B;
  color: #fff;
}
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  background: #263238;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 36px;
  letter-spacing: 0.04em;
  margin-left: 30px;
  box-shadow: 0 2px 10px rgba(38,50,56,0.07);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.14s;
}
.primary-btn:hover, .primary-btn:focus {
  background: #607D8B;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #607D8B;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  cursor: pointer;
  z-index: 102;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #263238;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 30px rgba(38,50,56,0.23);
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-left: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #263238;
  font-size: 2rem;
  margin-left: auto;
  margin-right: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #607D8B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #263238;
  padding: 16px 8px;
  border-radius: 9px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8EDEB;
  color: #607D8B;
}

@media (max-width: 1120px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
  }
  header nav {
    gap: 10px;
    margin-left: 10px;
  }
  .primary-btn {
    margin-left: 10px;
    padding: 12px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 850px) {
  header nav, .primary-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    padding: 15px 0;
  }
  .container {
    padding-left: 8px; padding-right: 8px;
  }
}

/* MAIN PAGE HERO & CTA SECTIONS */
.content-wrapper h1, .content-wrapper h2 {
  text-align: center;
}
.content-wrapper h2 {
  margin-bottom: 0.2em;
}
.content-wrapper a.primary-btn {
  margin-left: 0;
  margin-top: 10px;
}
/* Features icons/grid */
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
  margin: 32px 0 0 0;
  padding: 0;
}
section ul li {
  background: #fff;
  border: 1.5px solid #F8EDEB;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(38,50,56,0.04);
  flex: 1 1 225px;
  min-width: 220px;
  padding: 20px 18px;
  text-align: left;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  transition: box-shadow 0.21s, border 0.17s;
}
section ul li:hover {
  border: 1.5px solid #607D8B;
  box-shadow: 0 6px 18px rgba(38,50,56,0.15);
  z-index: 4;
}
section ul li img {
  width: 39px;
  height: 39px;
  margin-bottom: 8px;
}

/* CTA button stand-alone */
section .primary-btn {
  margin-top: 18px;
}

/* FOOTER STYLES */
footer {
  background: #263238;
  color: #fff;
  padding: 36px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 26px;
}
footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
footer nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 0;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover,footer nav a:focus {
  color: #F8EDEB;
}
footer .text-section {
  color: #F8EDEB;
  font-size: 0.98rem;
}
footer img {
  filter: invert(1) brightness(1.9);
  max-width: 150px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }
  footer nav {
    flex-direction: row;
    gap: 18px;
    justify-content: center;
  }
}

/* ICONS IN TEXT SECTION (CONTACT) */
.text-section img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 9px;
  margin-bottom: 3px;
  display: inline-block;
}
.text-section a {
  text-decoration: underline;
  color: #607D8B;
  transition: color 0.1s;
}
.text-section a:hover {
  color: #263238;
}

/* TYPOGRAPHY GEOMETRIC/STRUCTURED */
body, p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-stretch: expanded;
}
@media (max-width: 650px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}

/* SPACING & FLEX RESPONSIVENESS */
@media (max-width: 800px) {
  .content-wrapper, .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 18px;
  }
  section ul {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .section {
    margin-bottom: 35px;
    padding: 23px 4px;
  }
  .testimonial-card {
    padding: 14px 8px;
  }
}
@media (max-width: 540px) {
  .card, section ul li {
    padding: 11px 6px;
    font-size: 0.96rem;
  }
  .container {
    padding: 0 4px;
  }
}

/* BUTTONS & INTERACTIVE ELEMENTS */
button, .primary-btn {
  outline: none;
  border: none;
  font-family: inherit;
}
button:focus-visible, .primary-btn:focus-visible {
  box-shadow: 0 0 0 3px #607D8B2F;
}

/* MICRO-INTERACTIONS/EFFECTS */
.primary-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(38,50,56,0.07), 0 0px 0px transparent;
}
.primary-btn:active {
  transform: scale(0.98);
  box-shadow: 0 0px 0px transparent;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1000;
  background: #263238;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 18px;
  box-shadow: 0 -4px 25px rgba(38,50,56,0.13);
  gap: 18px;
  min-height: 98px;
  font-size: 1.03rem;
  animation: cookieFadeIn 0.4s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button {
  background: #607D8B;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #263238;
}
.cookie-banner button.cookie-settings {
  background: #F8EDEB;
  color: #263238;
  border: 1px solid #607D8B;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #607D8B;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,50,56,0.28);
  z-index: 1200;
  animation: cookieModalFadeIn 0.2s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #263238;
  border-radius: 18px;
  max-width: 480px;
  margin: 60px auto 0 auto;
  padding: 28px 26px;
  z-index: 1300;
  box-shadow: 0 6px 40px rgba(38,50,56,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalPop 0.33s;
}
@keyframes cookieModalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid #F8EDEB;
  font-size: 1rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-title {
  font-weight: bold;
  min-width: 148px;
}
.cookie-modal .toggle-switch {
  width: 44px;
  height: 26px;
  border-radius: 20px;
  background: #F8EDEB;
  position: relative;
  transition: background 0.18s;
  margin-left: auto;
}
.cookie-modal .toggle-switch.enabled {
  background: #607D8B;
}
.cookie-modal .toggle-dot {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #263238;
  transition: left 0.18s;
}
.cookie-modal .toggle-switch.enabled .toggle-dot {
  left: 22px;
  background: #fff;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.cookie-modal button {
  background: #607D8B;
  color: #fff;
  border-radius: 18px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal button:last-child {
  background: #F8EDEB;
  color: #263238;
  border: 1px solid #607D8B;
}
.cookie-modal button:last-child:hover, .cookie-modal button:last-child:focus {
  background: #607D8B;
  color: #fff;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #263238;
}

@media (max-width: 520px) {
  .cookie-modal {
    max-width: 97vw;
    margin: 30px auto;
    padding: 12px 7px;
  }
}

/* GEOMETRIC STRUCTURED ACCENTS */
.section, .testimonial-card, .card, section ul li {
  /* geometric accent border radius */
  border-radius: 18px 50px 16px 18px / 16px 36px 18px 16px;
}

h1, h2, h3, .primary-btn {
  text-transform: none;
  font-variant-caps: normal;
  /* Montserrat is geometric, but bold, angular. */
}

/* ANGULAR DIVIDERS (optional geometric accent) */
.section::after {
  content: "";
  display: block;
  width: 64px;
  height: 5px;
  background: #607D8B;
  margin: 32px auto 0 auto;
  border-radius: 2px;
  opacity: 0.14;
}

/* Remove divider from last section/CTA */
.section:last-of-type::after {
  display: none;
}

/* VISUAL / ACCESSIBILITY */
.testimonial-card, .testimonial-card blockquote, .testimonial-card strong {
  color: #263238;
  background: #F8EDEB;
}
[tabindex]:focus {
  outline: 2px solid #607D8B;
}

/* CUSTOM GEOMETRIC SHAPES */
.section .primary-btn {
  position: relative;
  /* Triangle accent at button edge */
}
.section .primary-btn:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #607D8B;
  clip-path: polygon(0 100%, 100% 50%, 0 0);
  transform: translateY(-50%);
  opacity: 0.19;
}
@media (max-width: 650px) {
  .section .primary-btn:after {
    display: none;
  }
}

/* END OF STYLE.CSS */
