/* RESET & BASE TYPOGRAPHY */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #F2E7DE 0%, #FFFFFF 100%);
  color: #2D3A4A;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #733370;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A06B9A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
.table, table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(45,58,74,0.06);
}
table th, table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #F2E7DE;
}
table th {
  background: #F2E7DE;
  color: #2D3A4A;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}
table tr:last-child td {
  border-bottom: none;
}

/* BRAND FONTS */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #2D3A4A;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.7rem;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, ul, ol, li, table {
  font-size: 1rem;
  color: #2D3A4A;
}
strong {
  font-weight: 700;
  color: #733370;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* FLEXBOX LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.82);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(45,58,74,0.06);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 12px;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  background: #F9F7F3;
  border-radius: 16px;
  padding: 32px 22px;
  box-shadow: 0 2px 12px rgba(163,109,154,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px rgba(163,109,154,0.15), 0 2px 8px rgba(45,58,74,0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(45,58,74,0.07);
  padding: 28px 20px;
}
.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;
  background: linear-gradient(90deg, #F2E7DE 85%, #FFFFFF 100%);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(45,58,74,0.05);
  margin-bottom: 20px;
  transition: box-shadow 0.16s, background 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(115,51,112,0.10), 0 2px 8px rgba(163,109,154,0.08);
  background: linear-gradient(90deg, #F2E7DE 80%, #DCCFE9 100%);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 32px;
}
.text-section p,
.text-section ul,
.text-section ol {
  margin-bottom: 12px !important;
}
.text-section img {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

/* BUTTONS & CTA */
.cta-button {
  display: inline-block;
  background: linear-gradient(95deg, #A06B9A 50%, #733370 100%);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 0.85em 2.2em;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 16px rgba(115,51,112,0.08);
  margin-top: 24px;
  cursor: pointer;
  outline: none;
  transition: background 0.23s, box-shadow 0.18s, transform 0.11s;
  text-shadow: 0 2px 8px rgba(45,58,74,0.04);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(100deg, #733370 65%, #A06B9A 100%);
  box-shadow: 0 4px 28px rgba(115,51,112,0.17);
  transform: translateY(-2px) scale(1.03);
}

/* HEADER NAVIGATION */
header {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  box-shadow: 0 6px 28px -22px #7333702A;
  border-bottom: 1.5px solid #F2E7DE;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 18px 20px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #2D3A4A;
  font-size: 1rem;
  padding: 4px 2px;
  border-radius: 5px;
  transition: background 0.19s, color 0.21s;
}
header nav a:hover, header nav a:focus {
  background: #F2E7DE;
  color: #733370;
}

header img {
  height: 46px;
  width: auto;
  margin-right: 20px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #F2E7DE 80%, #E2DAEB 100%);
  border-top: 1.5px solid #E6DCE2;
  box-shadow: 0 -2px 20px rgba(163,109,154,0.09);
  padding: 40px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
footer nav a {
  color: #733370;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 2px 5px;
  border-radius: 4px;
}
footer nav a:hover, footer nav a:focus {
  background: #A06B9A18;
  color: #2D3A4A;
}
footer span {
  color: #2D3A4A;
  font-size: 14px;
}

/* SECTIONS DEFAULTS */
main {
  padding-top: 42px;
  padding-bottom: 36px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* TESTIMONIAL SECTION */
.testimonial-card {
  background: linear-gradient(95deg, #fff 85%, #F2E7DE 100%);
  color: #2D3A4A;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-left: 5px solid #A06B9A;
}
.testimonial-card strong {
  color: #2D3A4A;
  font-weight: 700;
}
.testimonial-card img {
  height: 26px;
  width: 120px;
  margin-bottom: 10px;
  margin-top: 4px;
}
.testimonial-card p {
  font-size: 1.07rem;
  margin: 0 0 0 0;
  color: #2D3A4A;
}

/* TEXT IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section img {
  border-radius: 18px;
  max-width: 340px;
  box-shadow: 0 3px 24px rgba(115,51,112,0.09);
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #F2E7DE 85%, #E1D3F3 100%);
  color: #2D3A4A;
  box-shadow: 0 -4px 30px rgba(115,51,112,0.10);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 20px 20px 20px;
  font-size: 1rem;
  flex-wrap: wrap;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  margin: 0 0 8px 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: #733370;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(115,51,112,0.06);
  margin-right: 0;
  transition: background 0.18s, box-shadow 0.17s;
}
.cookie-banner .cookie-btn.secondary {
  background: #A06B9A;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #2D3A4A;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #A06B9A;
  box-shadow: 0 6px 32px rgba(115,51,112,0.12);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,25,47, 0.50);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 44px rgba(45,58,74,0.19);
  padding: 32px 28px 28px 28px;
  max-width: 390px;
  width: 94vw;
  color: #2D3A4A;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInScale 0.28s cubic-bezier(.17,.67,.61,1.55);
  position: relative;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.94) translateY(30px);} 
  to   { opacity: 1; transform: scale(1) translateY(0);}
}
.cookie-modal h2 {
  font-size: 1.29rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
.cookie-modal ul {
  padding-left: 16px;
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex; 
  align-items: center;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  cursor: pointer;
}
.cookie-modal input[type=checkbox] {
  accent-color: #A06B9A;
  margin-right: 9px;
}
.cookie-modal .cookie-btn {
  margin-top: 18px;
  width: 100%;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 13px;
  right: 14px;
  font-size: 1.35rem;
  color: #733370;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.84;
  transition: color 0.19s;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  color: #A06B9A;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1100;
  background: #733370;
  color: #fff;
  border: none;
  border-radius: 40px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 18px rgba(115,51,112,0.10);
  transition: background 0.16s, box-shadow 0.16s;
  cursor: pointer;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A06B9A;
  box-shadow: 0 4px 22px rgba(163,109,154,0.16);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.44s cubic-bezier(.83,-0.06,.35,1.21);
  box-shadow: -8px 0 36px rgba(115,51,112,0.16);
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #733370;
  cursor: pointer;
  transition: color .16s;
  opacity: 0.86;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A06B9A;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 54px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #2D3A4A;
  padding: 14px 0 7px 0;
  border-bottom: 1.2px solid #F2E7DE;
  width: 100%;
  text-align: left;
  transition: color 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A06B9A;
  background: #F2E7DE;
  border-radius: 10px;
  padding-left: 8px;
}

/* Hide desktop nav on small screens */
@media (max-width: 1024px) {
  header nav { display: none; }
  .cta-button { margin-right: 0; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}

/* RESPONSIVE: FLEX DIRECTIONS AND SPACING */
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  header .container {
    padding: 16px 8px 14px 8px;
    flex-wrap: wrap;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: 0;
    padding: 22px 14px;
  }
  .section, section {
    padding: 28px 6px;
    margin-bottom: 35px;
  }
  main {
    padding-top: 21px;
    padding-bottom: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.16rem;
  }
  .cookie-banner {
    font-size: 0.96rem;
    padding: 20px 5px 16px 5px;
    gap: 12px;
  }
  .cookie-modal {
    padding: 17px 6px 16px 12px;
    font-size: 0.98rem;
  }
}

/* VISUAL HIERARCHY & SHADOWS */
.card, .feature-grid > div, .testimonial-card {
  box-shadow: 0 2px 14px rgba(115,51,112,0.08);
  border-radius: 15px;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(163,109,154,0.15), 0 2px 22px rgba(45,58,74,0.10);
}

/* INPUTS, FORMS (PREP FOR FUTURE) */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #F2E7DE;
  transition: border 0.17s, box-shadow 0.14s;
  outline: none;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #A06B9A;
  box-shadow: 0 2px 8px rgba(115,51,112,0.09);
}

/* MISC */
::-webkit-selection {
  background: #A06B9A22;
}
::selection {
  background: #A06B9A22;
}

/* SPACING & PREVENT OVERLAPPING */
.section + .section,
.content-wrapper + .content-wrapper,
.card + .card,
.testimonial-card + .testimonial-card,
.feature-grid > div + div {
  margin-top: 20px;
}

/**************************************************************************************
 *                              END OF CSS                                            *
 **************************************************************************************/
