/* 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background-color: #F6EFE9;
  color: #37203B;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #9D3971;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #37203B;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #37203B;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.05rem;
}
.subtitle {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.13rem;
  color: #9D3971;
  margin-bottom: 20px;
  font-weight: 500;
}
p {
  margin-bottom: 16px;
}
strong {
  color: #9D3971;
  font-weight: 600;
}

/* BUTTON STYLES */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #9D3971;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(157, 57, 113, 0.11);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: center;
}
.button-primary:hover, .button-primary:focus {
  background: #37203B;
  color: #FFF;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(55, 32, 59, 0.15);
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: #fff;
  color: #9D3971;
  border: 2px solid #9D3971;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 6px rgba(157, 57, 113, 0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #f3deed;
  color: #37203B;
  border-color: #37203B;
}
.button-tertiary {
  background: none;
  color: #37203B;
  border: none;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.17s, color 0.15s;
  cursor: pointer;
}
.button-tertiary:hover,
.button-tertiary:focus {
  background-color: #f3deed;
  color: #9D3971;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(157, 57, 113, 0.04);
  padding: 0;
  position: relative;
  z-index: 101;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 24px;
  padding: 18px 0 18px 0;
  margin: 0 auto;
  max-width: 1060px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #37203B;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 2px;
  transition: color 0.16s, background 0.14s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: #f3deed;
  color: #9D3971;
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
}
.main-nav .button-primary {
  margin-left: auto;
  margin-right: 0;
  font-size: 1rem;
  padding: 10px 26px;
}

/* Hamburger / Mobile Menu Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #9D3971;
  border: 2px solid #9D3971;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 103;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
  box-shadow: 0 1px 8px rgba(157,57,113,0.09);
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #9D3971;
  color: #fff;
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246, 239, 233, 0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.7,0,0.4,1);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #9D3971;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 203;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #9D3971;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 76px;
  width: 100%;
  padding: 0 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #37203B;
  padding: 10px 0;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.18s, color 0.14s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f3deed;
  color: #9D3971;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none;
  }
}

/* Hide main-nav on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

/* SECTION DEFAULTS */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  box-sizing: border-box;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(157,57,113,0.09);
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 320px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(157, 57, 113, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(157, 57, 113, 0.08);
  min-width: 240px;
  max-width: 380px;
  margin-bottom: 0px;
  border-left: 6px solid #9D3971;
  transition: box-shadow 0.19s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #37203B;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #9D3971;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 7px 30px rgba(55, 32, 59, 0.15);
  transform: translateY(-2px) scale(1.02);
}

.feature-grid, .trend-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  list-style: none;
  margin: 32px 0 0 0;
}
.feature-grid li, .trend-grid li {
  background: #ffffffdd;
  border-radius: 17px;
  box-shadow: 0 2px 14px rgba(157, 57, 113, 0.06);
  flex: 1 1 220px;
  max-width: 265px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 20px 28px 20px;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.feature-grid li:hover, .trend-grid li:hover {
  box-shadow: 0 6px 18px rgba(157, 57, 113, 0.16);
  transform: scale(1.03);
}
.feature-grid li img {
  width: 34px;
  margin-bottom: 8px;
}
.feature-grid h3, .trend-grid h3 {
  margin-top: 0;
  margin-bottom: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
}
.service-list li {
  background: #f6f0f7;
  border-radius: 12px;
  border-left: 4px solid #9D3971;
  padding: 18px 20px;
  font-size: 1.03rem;
  box-shadow: 0 1px 10px rgba(157, 57, 113, 0.07);
}

.contact-details {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
}
.text-section h2, .text-section h3 {
  margin-bottom: 8px;
  margin-top: 12px;
}

/* FOOTER STYLES */
footer {
  background: #ffffffeb;
  box-shadow: 0 -2px 18px rgba(157, 57, 113, 0.03);
  padding: 36px 10px 24px 10px;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #9D3971;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
  padding: 4px 8px;
  border-radius: 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #37203B;
  background: #f3deed;
}
.footer-info {
  text-align: center;
  color: #b69cbb;
  font-size: 0.97rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff6fa;
  color: #37203B;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 22px 16px;
  box-shadow: 0 -8px 22px rgba(157, 57, 113, 0.08);
  gap: 26px;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(0.7,0,0.2,1);
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn-accept {
  background: #9D3971;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.16s, color 0.12s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #37203B;
}
.cookie-btn-reject {
  background: #fff;
  color: #9D3971;
  border: 2px solid #9D3971;
  border-radius: 24px;
  padding: 9px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #f3deed;
  color: #37203B;
}
.cookie-btn-settings {
  background: none;
  color: #9D3971;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 0;
  cursor: pointer;
  border-radius: 18px;
  padding: 7px 14px;
  transition: background 0.17s, color 0.10s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #f3deed;
  color: #37203B;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(55,32,59,0.15);
  z-index: 6000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.show {
  display: flex;
}
.cookie-modal {
  background: #fff6fa;
  border-radius: 20px;
  padding: 34px 26px 26px 26px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 6px 36px rgba(157,57,113,0.12);
  z-index: 6001;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalBounce 0.38s cubic-bezier(0.6, 1.05, 0.2, 1.0);
}
@keyframes modalBounce {
  0% { transform: scale(0.8) translateY(95px); opacity: 0; }
  65%{ transform: scale(1.04) translateY(-8px); opacity: 1; }
  100%{ transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: none;
  border: none;
  color: #9D3971;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 12px;
  transition: background 0.14s, color 0.10s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #9D3971;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.99rem;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0px;
  border-bottom: 1px solid #f3deed;
}
.cookie-category-row:last-child {border-bottom: none;}
.cookie-category-label {
  flex: 1 1 auto;
  font-weight: 500;
  color: #37203B;
}
.cookie-category-switch {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #f3deed;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-category-switch:checked {
  background: #9D3971;
}
.cookie-category-switch:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.19s cubic-bezier(0.7,0,0.4,1);
}
.cookie-category-switch:checked:before {
  transform: translateX(16px);
}
.cookie-category-description {
  font-size: 0.95rem;
  color: #9d3971;
  margin-left: 5px;
}

.cookie-modal-footer {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}


/* BREAKPOINTS & FLEXBOX RESPONSIVENESS */
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .main-nav .button-primary {
    display: none;
  }
  .card-container,
  .testimonial-list,
  .feature-grid,
  .trend-grid {
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .feature-grid li, .trend-grid li {
    max-width: 98vw;
    min-width: 60vw;
    flex-basis: 98vw;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .main-nav { display: none; }
  .container { padding: 0 7px; }
  .card-container,
  .testimonial-list,
  .feature-grid,
  .trend-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .contact-details {
    padding-left: 2px;
  }
  section, .section {
    padding: 30px 0px;
  }
  .service-list li {font-size: 0.97rem;}
}

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.25rem; }
  .container { padding: 0 2.5vw; }
  .card {padding: 19px; min-width: 0; max-width: 95vw;}
  .testimonial-card {padding: 14px 12px; min-width: 0; max-width: 97vw;}
  .feature-grid li, .trend-grid li {
    padding: 17px 10px;
    min-width: 0;
    max-width: 98vw;
    font-size: 0.98rem;
  }
}

/* FLEX ROW --> COL on Mobile for text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* UTILITIES */
.mt-32 {margin-top:32px;}
.mb-32 {margin-bottom:32px;}
.mt-24 {margin-top:24px;}
.mb-24 {margin-bottom:24px;}
.mt-16 {margin-top:16px;}
.mb-16 {margin-bottom:16px;}

/* SUBTLE PASTEL BACKGROUNDS & SHADOWS FOR SECTIONS */
section:nth-child(odd) {
  background: #F6EFE9;
}
section:nth-child(even) {
  background: #FEFAF7;
}

/* DREAMY PASTEL DECORATIVE ELEMENTS (OPTIONAL) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -68px;
  right: -98px;
  width: 182px;
  height: 182px;
  background: radial-gradient(circle at 55% 60%, #ffe3f9 40%, transparent 100%);
  z-index: 1;
  opacity: 0.21;
  pointer-events: none;
}

/* ADJUST Z-INDEX LAYERING ON HEADER, MENU, BANNER */
header {z-index: 101;}
.mobile-menu {z-index: 200;}
.cookie-banner {z-index: 5000;}

/* FOCUS STATES */
a:focus, button:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px solid #9D3971;
  outline-offset: 2px;
}

/* SCROLLBAR (light touch)*/
body {
  scrollbar-color: #e6c6e2 #ffe3f9;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: #ffe3f9;
}
::-webkit-scrollbar-thumb {
  background: #e6c6e2;
  border-radius: 5px;
}

/***** END OF STYLES *****/
