/* RESET AND 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;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #fff;
  color: #2D3A46;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  border: none;
}
a {
  color: #2D3A46;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #E1BBC2;
  outline: none;
}
ol, ul {
  list-style: none;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  transition: background 0.2s, color 0.2s;
}
:focus {
  outline: 2px solid #E1BBC2;
  outline-offset: 3px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #2D3A46;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 14px; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }
strong { font-weight: 500; color: #2D3A46; }
em { font-style: italic; }

/* SPACING AND CONTAINER */
.container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 24px 0 rgba(45, 58, 70, 0.05);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.text-section {
  max-width: 700px;
}

/* FLEX UTILITY LAYOUTS FROM SYSTEM */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(45,58,70,0.06);
  padding: 24px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(45,58,70,0.18);
  transform: translateY(-3px);
}
.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;
  padding: 20px 28px;
  margin-bottom: 24px;
  background: #F8F5FA;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(45, 58, 70, 0.08);
  font-size: 1rem;
  color: #2D3A46;
}
.testimonial-card p {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: #2D3A46;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2D3A46;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* MAIN HEADER + NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1.5px 16px 0 rgba(45, 58, 70, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #2D3A46;
  padding: 6px 4px;
  position: relative;
  transition: color 0.15s;
}
header nav a:hover, header nav a.active {
  color: #E1BBC2;
}
header nav a img {
  height: 36px;
  margin-right: 9px;
  vertical-align: middle;
  display: inline-block;
  filter: grayscale(0.1) brightness(0.98) contrast(1.1);
}

/* CTA BUTTON */
.cta-btn {
  padding: 14px 34px;
  border-radius: 999px;
  background: #2D3A46;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  border: none;
  transition: background 0.18s, box-shadow 0.21s, color 0.18s, transform 0.12s;
  box-shadow: 0 4px 12px 0 rgba(45, 58, 70, 0.09);
  cursor: pointer;
  margin-top: 6px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E1BBC2;
  color: #2D3A46;
  box-shadow: 0 8px 28px 0 rgba(45, 58, 70, 0.13);
  transform: translateY(-2px) scale(1.035);
}

/* MAIN FOOTER */
footer {
  background: #F8F5FA;
  border-top: 1.5px solid #F1E8F0;
  padding: 38px 0 28px 0;
  margin-top: 60px;
}
footer .container {
  max-width: 960px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-branding img {
  height: 46px;
  margin-bottom: 8px;
  display: block;
}
.footer-contact {
  flex: 2 2 200px;
  min-width: 180px;
  font-size: 1rem;
}
.footer-contact a {
  color: #2D3A46;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2D3A46;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #E1BBC2;
}

/* LIST STYLES */
ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 11px;
}
ul li strong, ol li strong {
  color: #2D3A46;
}

/* ICONS IN LISTS */
ul li img {
  height: 28px;
  width: 28px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

/* Table styles (for possible future content consistency) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 rgba(45,58,70,0.05);
  margin-bottom: 28px;
}
th, td {
  padding: 14px 12px;
  border-bottom: 1px solid #f2f2f2;
  text-align: left;
  font-size: 1rem;
}

/* --- MOBILE MENU BUTTON AND OVERLAY MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  width: 44px;
  height: 44px;
  background: #2D3A46;
  color: #fff;
  border-radius: 50%;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  z-index: 210;
  transition: background 0.18s, color 0.13s;
  outline: none;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E1BBC2;
  color: #2D3A46;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 44px 0 rgba(45, 58, 70, 0.13);
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(0.78,0.04,0.26,0.98);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 27px 27px 8px 0;
  font-size: 2.3rem;
  background: #F8F5FA;
  color: #2D3A46;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E1BBC2;
  color: #2D3A46;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 14px 32px 0 32px;
}
.mobile-nav a {
  width: 100%;
  color: #2D3A46;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 0;
  border-bottom: 1px solid #F8F5FA;
  transition: color 0.18s;
}
.mobile-nav a:hover {
  color: #E1BBC2;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 32px 0 rgba(45, 58, 70, 0.10);
  padding: 20px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
  font-size: 1rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.32s, transform 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
}
.cookie-banner p {
  color: #2D3A46;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  padding: 10px 26px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 0;
  border: none;
  outline: none;
  background: #F8F5FA;
  color: #2D3A46;
  box-shadow: 0 2px 8px 0 rgba(45, 58, 70, 0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.14s;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: #2D3A46;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #E1BBC2;
  color: #2D3A46;
}
.cookie-banner button.reject {
  background: #F8F5FA;
  color: #2D3A46;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #E1BBC2;
  color: #fff;
}
.cookie-banner button.settings {
  background: #fff;
  border: 1px solid #E1BBC2;
  color: #2D3A46;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #E1BBC2;
  color: #2D3A46;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(45, 58, 70, 0.20);
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 12px 48px 0 rgba(45, 58, 70, 0.18);
  max-width: 420px;
  width: calc(100vw - 40px);
  padding: 32px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: #F8F5FA;
  color: #2D3A46;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  transition: background 0.16s, color 0.16s;
  outline: none;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E1BBC2;
  color: #2D3A46;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 6px;
}
.cookie-modal p {
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 10px 0;
  border-bottom: 1px solid #F8F5FA;
}
.cookie-modal .cookie-category-label {
  font-size: 1rem;
  color: #2D3A46;
  font-weight: 400;
}
.cookie-modal .cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal .cookie-toggle-switch {
  width: 38px;
  height: 22px;
  border-radius: 20px;
  border: 1.5px solid #E1BBC2;
  background: #F8F5FA;
  position: relative;
  cursor: pointer;
  transition: background 0.16s, border 0.16s;
}
.cookie-modal .cookie-toggle-switch[aria-checked="true"] {
  background: #E1BBC2;
  border-color: #E1BBC2;
}
.cookie-modal .cookie-toggle-knob {
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.5px;
  left: 2px;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle-switch[aria-checked="true"] .cookie-toggle-knob {
  left: 19px;
}
.cookie-modal .category-essential {
  opacity: 0.7;
}
.cookie-modal .cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-modal-footer button {
  min-width: 90px;
}

/* --- MEDIA QUERIES AND RESPONSIVE --- */
@media (max-width: 1080px) {
  .container {
    max-width: 92vw;
    padding: 0 14px;
  }
}
@media (max-width: 900px) {
  .footer-branding,
  .footer-contact,
  .footer-nav {
    min-width: 0;
    flex-basis: 100%;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 32px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1rem; }
  .card, .content-wrapper, .testimonial-card {
    padding: 15px !important;
    font-size: 0.98rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .cookie-banner {
    padding: 14px 4px 18px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 22px 7vw 18px 7vw;
    font-size: 0.98rem;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 7px; }
  .section { padding: 16px 2px; margin-bottom: 22px; }
  .testimonial-card { padding: 11px 9px; }
  .cookie-modal { padding: 11px 4vw 10px 4vw; }
}
@media (max-width: 900px) {
  .content-wrapper,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* --- TRANSITIONS --- */
header, .section, .card, .cta-btn, .testimonial-card, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.21s, background 0.23s, color 0.15s, transform 0.16s;
}

/* --- SCROLLBAR --- */
body::-webkit-scrollbar { width: 12px; background: #f7f7f7; }
body::-webkit-scrollbar-thumb { background: #E1BBC2; border-radius: 8px; }

/* --- SELECTION HIGHLIGHT --- */
::selection { background: #E1BBC2; color: #2D3A46; }

/* --- MODERN FORM STYLES (for future expandability) --- */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #E1BBC2;
  padding: 10px 13px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #2D3A46;
  margin-bottom: 16px;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #2D3A46;
  outline: none;
}

/* --- MISC: Hide visually but keep for A11Y --- */
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* --- Z-INDEX --- */
.mobile-menu, .cookie-modal, .cookie-banner {
  z-index: 2000;
}

/* --- UTILITIES FOR SPACING --- */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.gap-4 { gap: 4px !important; }
.gap-8 { gap: 8px !important; }
.gap-24 { gap: 24px !important; }

/* --- END --- */
