/* ====================================================================
   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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F8FAFB;
  color: #222336;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F5F5F1;
  font-size: 16px;
  scroll-behavior: smooth;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
input, button, textarea, select {
  font: inherit;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}


/* ====================================================================
   SOFT PASTEL THEME COLORS
==================================================================== */
:root {
  --primary: #181A1B;
  --secondary: #E2C97D;
  --accent: #F5F5F1;
  --pastel-blue: #b8d8fa;
  --pastel-lilac: #e3d4fa;
  --pastel-pink: #fdeaea;
  --pastel-green: #cbf3d2;
  --pastel-yellow: #fff7da;
  --pastel-mint: #defcf9;
  --pastel-grey: #f7faff;
  --shadow: 0 4px 16px 0 rgba(67, 55, 102, 0.10);
}


/* ====================================================================
   TYPOGRAPHY & HEADINGS
==================================================================== */
body, .body-font {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: var(--primary);
}
.display-font, h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p, li, dl, dd {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary);
}
.subheadline {
  font-size: 1.125rem;
  color: #50548b;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  font-family: 'Roboto', Arial, sans-serif;
}
strong { font-weight: 600; }

/* Emphasized links */
a:focus, a:hover, .footer-nav a:focus, .footer-nav a:hover {
  color: var(--secondary);
  transition: color .3s;
}


/* ====================================================================
   FLEXBOX CONTAINER UTILITIES
==================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 calc(33% - 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(91, 75, 149, 0.17);
  transform: translateY(-4px) scale(1.012);
}

.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: var(--pastel-blue);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  transition: box-shadow .3s;
}
.testimonial-card .testimonial-meta {
  font-size: 0.95rem;
  color: #666a80;
  font-style: italic;
}

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

/* Feature grid for icons/lists */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div {
  background: var(--pastel-grey);
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 215px;
  flex: 1 1 calc(25% - 24px);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(49,117,151,0.09);
  transform: translateY(-4px) scale(1.013);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}
.price {
  margin-top: 8px;
  font-size: .98rem;
  color: var(--secondary);
  font-weight: 500;
}

.highlight {
  background: var(--pastel-yellow);
  border-radius: 13px;
  padding: 18px 20px;
  margin: 32px 0 22px 0;
  color: #2c2c3d;
  box-shadow: var(--shadow);
}

.location-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 14px 0;
  background: var(--pastel-mint);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  box-shadow: 0 2px 10px 0 rgba(85,92,206,.08);
}
.location-placeholder img {
  width: 32px; height: 32px; opacity: 0.9;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ====================================================================
   BUTTONS & CTAS
==================================================================== */
.cta-btn {
  display: inline-block;
  padding: 13px 38px;
  color: var(--primary);
  background: linear-gradient(85deg, var(--pastel-blue) 35%, var(--secondary) 100%);
  border-radius: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 2px 13px 0 rgba(67, 55, 102, 0.07);
  margin-top: 14px;
  margin-bottom: 12px;
  transition: background 0.35s, color 0.25s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(95deg, var(--secondary) 65%, var(--pastel-blue) 100%);
  color: #2c284e;
  transform: scale(1.035);
  outline: none;
}
.cta-btn.secondary {
  background: linear-gradient(75deg, var(--pastel-lilac) 70%, var(--pastel-yellow) 100%);
  color: var(--primary);
  font-weight: 500;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: linear-gradient(90deg, var(--secondary) 75%, var(--pastel-lilac) 100%);
  color: var(--primary);
}

/* ====================================================================
   HEADER & NAVIGATION (DESKTOP & MOBILE)
==================================================================== */
header {
  width: 100%;
  background: linear-gradient(140deg, #F5F5F1 70%, var(--pastel-blue) 100%);
  box-shadow: 0 3px 18px 0 rgba(170, 180, 255, 0.08);
  padding: 0 0 0 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  padding: 26px 0 16px 0;
  justify-content: flex-start;
  position: relative;
  font-size: 1.08rem;
}
.main-nav .logo {
  margin-right: 34px;
  display: flex;
  align-items: center;
}
.main-nav img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav a {
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.27s, color 0.25s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-yellow);
  color: var(--secondary);
  outline: none;
}

/* Hamburger for mobile */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: var(--primary);
  border-radius: 8px;
  font-size: 2rem;
  position: absolute;
  top: 19px;
  right: 24px;
  z-index: 1020;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 12px 0 rgba(90, 109, 124, .08);
  border: 1px solid #e3e3eb;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-yellow);
  color: var(--secondary);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--pastel-blue) 60%, var(--pastel-pink) 100%);
  z-index: 1050;
  transform: translateX(-100vw);
  transition: transform .4s cubic-bezier(.56, .08, .25, 1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform .44s cubic-bezier(.45,1.4,.6,1.05);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--primary);
  margin: 12px 24px 25px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(128,135,175,0.09);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .2s, color .2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 13px 12px;
  border-radius: 12px;
  background: none;
  color: var(--primary);
  margin-right: 16px;
  transition: background-color .21s, color .21s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-yellow);
  color: var(--secondary);
}

/* Hide desktop nav, show mobile hamburger on small screens */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* ====================================================================
   FOOTER
==================================================================== */
footer {
  font-size: 0.99rem;
  background: linear-gradient(100deg, #f7faff 80%, var(--pastel-lilac) 100%);
  border-top: 1px solid #e3e3eb;
  margin-top: 60px;
  padding: 26px 0 20px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #57597e;
  padding: 5px 9px;
  border-radius: 7px;
  transition: color .23s, background .26s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: var(--pastel-yellow);
  outline: none;
}
.footer-info {
  text-align: center;
  color: #7a7a91;
  margin-top: 3px;
  line-height: 1.5;
  font-size: .98rem;
}


/* ====================================================================
   GENERAL RESPONSIVE RULES
==================================================================== */
@media (max-width: 1100px) {
  .container { max-width: 980px; }
  .feature-grid > div, .card {
    min-width: 190px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 90vw; }
  .feature-grid,
  .card-container,
  .content-grid {
    gap: 16px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.375rem; }
  h3 { font-size: 1.12rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper {
    gap: 9px;
  }
  .section {
    padding: 22px 3px;
    margin-bottom: 25px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .card {
    min-width: unset;
    width: 100%;
    flex: 1 1 100%;
    padding: 16px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}


/* ====================================================================
   MOBILE & TABLET ONLY RULES
==================================================================== */
@media (max-width: 600px) {
  h1 { font-size: 1.32rem; }
  .footer-nav {
    gap: 14px;
    font-size: .98rem;
  }
  .footer-info { font-size: .91rem; }
  .container { padding-left: 2.5vw; padding-right: 2.5vw; }
}

/* ====================================================================
   WHITE CARD / INFO BLOCKS (UNIVERSAL)
==================================================================== */
.card, .feature-grid > div, .testimonial-card, .location-placeholder, .highlight {
  /* All get subtle shadow and soft corners */
  box-shadow: var(--shadow);
  border-radius: 14px;
}


/* ====================================================================
   UL/OL STYLES IN CONTENT
==================================================================== */
ul, ol {
  margin-left: 22px;
  margin-bottom: 13px;
  color: var(--primary);
  font-size: 1rem;
  /* Only classic styles, no pastel here to preserve readability */
}
ul li, ol li {
  margin-bottom: 7px;
  padding-left: 0;
  list-style: disc inside;
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }
dt { font-weight: 600; margin-top: 8px; }
dd { margin-left: 16px; margin-bottom: 8px; }

/* ====================================================================
   TABLES & DL IN FAQ/CONTENT
==================================================================== */
dl {margin-bottom: 16px;}
dt {margin-top: 10px;}

/* ====================================================================
   FORMS (future extension)
==================================================================== */
input, textarea, select {
  border: 1px solid #c9cee3;
  background: #fff;
  border-radius: 9px;
  min-height: 38px;
  padding: 8px 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: border .24s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}

/* ====================================================================
   ANIMATIONS & MICRO-INTERACTIONS
==================================================================== */
.card, .feature-grid > div, .cta-btn, .testimonial-card, .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
  transition: box-shadow .25s, background .28s, color .18s, transform .13s;
}

/* Animate main buttons */
.cta-btn {
  transition: background .3s, color .23s, transform .11s;
}

/* ====================================================================
   COOKIE CONSENT BANNER: FIXED BOTTOM, MODAL
==================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, var(--pastel-yellow) 75%, var(--pastel-blue) 100%);
  box-shadow: 0 -4px 18px 0 rgba(209, 205, 175, 0.09);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 24px 18px 18px 18px;
  min-height: 80px;
  width: 100vw;
  font-size: 1rem;
  color: #38372a;
  animation: cookie-banner-slide-up .9s cubic-bezier(.72,.03,.27,.91);
}
@keyframes cookie-banner-slide-up {
  0% { transform: translateY(120%); }
  50% { transform: translateY(-12px); }
  90% { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 760px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
  width: 100%;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 16px;
  border: none;
  font-size: 1.02rem;
  font-family: 'Roboto', sans-serif;
  transition: background .2s, color .16s;
  font-weight: 600;
  margin-bottom: 4px;
  background: var(--pastel-grey);
  color: var(--primary);
  outline: none;
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 16px;
  font-weight: bold;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--pastel-yellow);
  color: var(--primary);
}
.cookie-banner button.reject {
  background: #fff;
  color: #994849;
  border: 1px solid #e09c86;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #fbeded;
  color: #994849;
}
.cookie-banner button.settings {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 1px solid #b8d8fa;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #eef7fb;
  color: var(--primary);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,46,98,0.16);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein .33s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(105deg, #fff 79%, var(--pastel-blue) 100%);
  min-width: 320px;
  width: 95vw;
  max-width: 480px;
  padding: 34px 24px 24px 28px;
  border-radius: 17px;
  box-shadow: 0 8px 44px rgba(67,73,120,0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-pop .17s cubic-bezier(.24,.78,.57,1.22);
}
@keyframes cookie-modal-pop {
  0% { transform: scale(.82); }
  100% { transform: scale(1); }
}
.cookie-modal-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  margin-bottom: 9px;
}
.cookie-category label {
  flex: 1 1 auto;
  color: #48486e;
  font-weight: 500;
  margin-left: 2px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 13px;
  background: #ece7f7;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background .15s;
}
.cookie-toggle input {
  width: 0; height: 0;
  opacity: 0;
  position: absolute;
}
.cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pastel-blue);
  transition: left .17s cubic-bezier(.58,.38,.43,1);
}
.cookie-toggle input:checked + span {
  left: 22px;
  background: var(--secondary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal button.close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: #fff;
  border-radius: 8px;
  width: 32px; height: 32px;
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.38rem;
  color: #57597e;
  border: 1px solid #eceaff;
  transition: background 0.18s;
}
.cookie-modal button.close:hover, .cookie-modal button.close:focus {
  background: var(--pastel-yellow);
  color: var(--secondary);
}

@media (max-width: 600px) {
  .cookie-modal { min-width: unset; padding: 20px 8px 14px 16px; }
  .cookie-category { font-size: 1rem; }
}

/* ====================================================================
   SPECIALS (THANK YOU, HIGHLIGHTS, ETC.)
==================================================================== */
@media (max-width: 600px) {
  .highlight { font-size: .97rem; }
}

/* ====================================================================
   OVERRIDE AUTOFILL (for forms if needed)
==================================================================== */
input:-webkit-autofill,
input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #fff inset !important;
}

/* ====================================================================
   ACCESSIBILITY
==================================================================== */
:focus-visible {
  outline: 2px solid var(--secondary) !important;
  outline-offset: 2px;
}

/* ====================================================================
   PRINT
==================================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #111; }
}
