/* =========================
   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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #3F334D;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #3F334D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B895C5;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button:focus, a:focus {
  outline: 2px solid #B895C5;
  outline-offset: 2px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  text-align: left;
  padding: 10px 18px 10px 0;
  border-bottom: 1px solid #E7DFEC;
}
th {
  font-weight: 600;
  background: #F6F4F9;
}
/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
  color: #3F334D;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
p, .text-section p, blockquote {
  color: #443557;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 820px;
}
.subheadline {
  font-size: 1.2rem;
  color: #88739C;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}
blockquote {
  font-style: italic;
  background: #F6F4F9;
  border-left: 4px solid #B895C5;
  margin: 0 0 12px 0;
  padding: 18px 24px;
  color: #3F334D;
}
strong {
  font-weight: 700;
  color: #3F334D;
}
.text-section h3 {
  margin-top: 22px;
  font-size: 1.13rem;
}
.text-section ul {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
.text-section li {
  margin-bottom: 8px;
}
/* =========================
   LAYOUT CONTAINERS
========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(63,51,77,0.045);
  padding: 32px 26px 24px 26px;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.24s, transform 0.22s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
  opacity: 0.95;
  pointer-events: none;
}
.feature-item h3 {
  font-size: 1.08rem;
  margin-bottom: 0px;
}
.feature-item p {
  font-size: 1rem;
  margin-bottom: 2px;
  color: #52397A;
}
.feature-item span {
  font-size: 1.01rem;
  font-weight: 700;
  color: #B895C5;
  margin-top: 0px;
}
.feature-item:hover {
  box-shadow: 0 4px 20px rgba(63,51,77,0.09);
  transform: translateY(-4px) scale(1.015);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(63,51,77,0.045);
  padding: 30px 23px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.card:hover {
  box-shadow: 0 6px 25px rgba(63,51,77,0.11);
  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;
  background: #F6F4F9;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(63,51,77,0.045);
  margin-bottom: 28px;
  margin-top: 10px;
  min-width: 210px;
  max-width: 670px;
  transition: box-shadow 0.22s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(135,115,156,0.13);
  transform: translateY(-2px) scale(1.011);
}
.testimonial-card blockquote {
  font-size: 1.09rem;
  margin-bottom: 8px;
  color: #3F334D;
  border-left: 3px solid #B895C5;
  background: none;
  padding: 0 0 0 20px;
}
.testimonial-card p {
  font-size: 0.99rem;
  font-style: normal;
  color: #3F334D;
  margin-bottom: 0;
}

/****************************
 NAVIGATION
****************************/
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(63,51,77,0.025);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  justify-content: flex-start;
  height: 78px;
  padding: 0 18px;
  font-size: 1rem;
  position: relative;
}
.main-nav a {
  color: #3F334D;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 7px;
  transition: color 0.23s, background 0.21s;
  margin-bottom: 0;
}
.main-nav a.primary-cta {
  background: #B895C5;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(184,149,197,0.06);
  transition: background 0.2s, color 0.13s, box-shadow 0.2s;
  margin-left: 8px;
}
.main-nav a.primary-cta:hover,
.main-nav a.primary-cta:focus {
  background: #3F334D;
  color: #fff;
  box-shadow: 0 2px 18px rgba(63,51,77,0.18);
}
.main-nav a.active {
  color: #B895C5;
  text-decoration: underline;
  font-weight: 600;
  background: #F6F4F9;
}
.main-nav a img {
  height: 37px;
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
  display: inline-block;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #3F334D;
  padding: 11px 18px 8px 10px;
  cursor: pointer;
  z-index: 2001;
  border-radius: 10px;
  align-self: flex-end;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover {
  background: #F6F4F9;
}
/***************************
 MOBILE NAVIGATION OVERLAY
***************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(63,51,77, 0.92);
  color: #fff;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.34s,
              transform 0.32s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 22px 10px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  cursor: pointer;
  opacity: .81;
  transition: opacity 0.21s, background 0.14s;
  z-index: 2511;
  border-radius: 10px;
  padding: 3px 13px 3px 10px;
}
.mobile-menu-close:hover {
  opacity: 1;
  background: #443557;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 15px;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  padding: 13px 0 11px 2px;
  border-radius: 8px;
  transition: background 0.22s;
  margin-bottom: 2px;
  min-width: 190px;
  display: block;
}
.mobile-nav a.active,
.mobile-nav a:hover {
  background: #B895C5;
  color: #fff;
}
/*******************************
      FOOTER
*******************************/
footer {
  background: #F6F4F9;
  padding: 28px 0 15px 0;
  border-top: 1px solid #E7DFEC;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 15px;
}
.footer-nav a {
  color: #3F334D;
  padding: 6px 4px;
  font-size: 1rem;
  transition: color 0.22s;
}
.footer-nav a:hover {
  color: #B895C5;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.footer-branding img {
  width: 39px;
  height: auto;
  margin-bottom: 1px;
}
.footer-branding p {
  color: #7A6A8D;
  font-size: .99rem;
  letter-spacing: 0.006em;
}
/*****************************
 PRIMARY CTA BUTTONS
*****************************/
.primary-cta,
.text-section a.primary-cta,
.content-wrapper a.primary-cta {
  display: inline-block;
  border-radius: 22px;
  padding: 10px 30px;
  background: #B895C5;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(184,149,197, 0.07);
  text-align: center;
  cursor: pointer;
  border: none;
  margin-top: 10px;
  margin-bottom: 12px;
  transition: background 0.22s, color 0.15s, box-shadow 0.21s, transform 0.16s;
}
.primary-cta:hover, .primary-cta:focus {
  background: #3F334D;
  color: #fff;
  box-shadow: 0 8px 30px rgba(63,51,77,0.16);
  transform: translateY(-2px) scale(1.022);
  outline: none;
}
/*******************************
       FAQ ACCORDION
*******************************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(63,51,77,0.04);
  padding: 18px 20px 12px 20px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s, background 0.15s;
}
.faq-item h3 {
  font-size: 1.06rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 9px;
  color: #B895C5;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.faq-item .faq-content {
  font-size: 0.99rem;
  color: #3F334D;
  padding-left: 10px;
  display: block;
  margin-bottom: 2px;
  transition: max-height 0.18s, opacity 0.21s;
}
.faq-item.open {
  box-shadow: 0 6px 24px rgba(184,149,197,0.11);
  background: #F6F4F9;
}
.faq-item.open .faq-content {
  color: #3F334D;
}
/*******************************
     COOKIE CONSENT BANNER
*******************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFF;
  color: #3F334D;
  box-shadow: 0 -2px 24px rgba(184,149,197,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 27px 26px;
  gap: 20px;
  z-index: 3000;
  border-top: 1px solid #E7DFEC;
  min-height: 28px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.33s, transform 0.33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner p {
  font-size: 1.01rem;
  color: #443557;
  max-width: 540px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: #B895C5;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 22px 7px 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.18s;
  box-shadow: 0 2px 7px rgba(184,149,197,0.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #3F334D;
  color: #fff;
  transform: scale(1.05);
}
.cookie-btn.secondary {
  background: #E7DFEC;
  color: #3F334D;
}
.cookie-btn.secondary:hover {
  background: #B895C5;
  color: #fff;
}
.cookie-banner a {
  color: #B895C5;
  text-decoration: underline;
  font-size: 0.99rem;
}
/*******************************
   COOKIE MODAL (SETTINGS)
*******************************/
.cookie-modal {
  position: fixed;
  z-index: 3200;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63,51,77,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 8px 44px rgba(63,51,77,0.17);
  padding: 38px 30px 24px 30px;
  min-width: 295px;
  max-width: 95vw;
  min-height: 110px;
  color: #3F334D;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 13px; top: 9px;
  background: none;
  border: none;
  font-size: 1.77rem;
  color: #3F334D;
  opacity: 0.73;
  cursor: pointer;
  z-index: 3212;
  border-radius: 9px;
}
.cookie-modal-close:hover {
  opacity: 1;
  background: #E7DFEC;
}
.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #3F334D;
  font-size: 1.4rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #52397A;
  margin-right: 5px;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 46px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E7DFEC;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #B895C5;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 2px 8px rgba(184,149,197,0.07);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-modal .cookie-btn {
  padding: 8px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 18px;
  background: #B895C5;
  color: #fff;
}
.cookie-modal .cookie-btn.secondary {
  background: #E7DFEC;
  color: #3F334D;
}
.cookie-modal .cookie-btn.secondary:hover {
  background: #B895C5;
  color: #fff;
}
/*****************************
   GENERAL COMPONENT SPACING
******************************/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
/******************************
       RESPONSIVE LAYOUT
******************************/
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px 17px;
    font-size: 0.97rem;
  }
  .feature-grid {
    flex-wrap: wrap;
    gap: 15px;
  }
  .feature-item {
    min-width: 170px;
    flex: 1 1 220px;
    padding: 19px 14px 15px 17px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .footer-nav a {
    font-size: .99rem;
  }
  .footer-branding {
    gap: 5px;
    font-size: 0.98rem;
  }
  .section {
    margin-bottom: 34px;
    padding: 26px 5vw;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .subheadline { font-size: 1.01rem; }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    padding: 17px 9px 13px 13px;
  }
  .testimonial-card {
    padding: 18px 12px 14px 12px;
    max-width: 98vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 20px 10px;
  }
  .cookie-banner p { font-size: 0.97rem; }
  .cookie-modal-content {
    padding: 17px 7px 12px 10px;
    min-width: 0;
    max-width: 97vw;
  }
}
@media (max-width: 570px) {
  .section { padding: 13px 0 13px 0; }
  .testimonial-card {
    padding: 9px 6px 9px 9px;
    margin-bottom: 18px;
  }
  .cookie-banner { padding: 16px 4px 11px 7px; font-size: .95rem; }
}
/*****************************
        CARD + SPACING
******************************/
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-grid {
  justify-content: space-between;
}
/*****************************
        MICRO-INTERACTIONS
******************************/
.feature-item, .card, .testimonial-card, .faq-item {
  transition: box-shadow 0.19s, transform 0.18s, background 0.14s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover, .faq-item.open {
  box-shadow: 0 8px 32px rgba(184,149,197,0.13);
  transform: translateY(-2px) scale(1.011);
}
/*****************************
      FORM (simple styles)
******************************/
input, textarea, select {
  border: 1px solid #E7DFEC;
  background: #FBFAFC;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.16s, background 0.13s;
  width: 100%;
  max-width: 600px;
  color: #3F334D;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid #B895C5;
  background: #fff;
  outline: none;
}
label {
  display: block;
  color: #3F334D;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
/*****************************
        MISCELLANEOUS
******************************/
::-webkit-input-placeholder { color:#88739C; }
::-moz-placeholder { color:#88739C; }
:-ms-input-placeholder { color:#88739C; }
::placeholder { color:#88739C; opacity:1; }

/******************************
      PRINT & ACCESSIBILITY
******************************/
@media print {
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  a, a:visited { text-decoration: underline; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container { padding: 0 !important; margin: 0 !important; }
  .content-wrapper, .text-section, .feature-grid, .feature-item, .card, .testimonial-card { box-shadow: none !important; border: none !important; }
}
/*******************************
       FONT LOADERS (WEBFONTS)
*******************************/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;500;700&display=swap');