/* ===============================
   CSS RESET & NORMALIZATION
   =============================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body {
  line-height: 1.5;
  background: #F7F2E2;
  color: #21295C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a { color: #7D5BA6; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #21295C; text-decoration: underline; }
ul, ol { padding-left: 1.5em; }
strong { font-weight: 700; }
img { max-width: 100%; display: block; border: 0; }

/* ===============================
   TYPOGRAPHY & BRAND FONTS
   =============================== */
@import url('https://fonts.googleapis.com/css?family=Cinzel:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  color: #21295C;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 24px; font-weight: 700; }
h2 { font-size: 2rem; margin-bottom: 20px; font-weight: 700; }
h3 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 700; }
h4 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; }
.subheadline {
  font-size: 1.22rem;
  color: #7D5BA6;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
p, li, ul, ol {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.65;
}

/* ===============================
   CONTAINERS & LAYOUTS
   =============================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Section spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 14px;
  box-shadow: none;
}
@media (min-width: 768px) {
  section {
    padding: 60px 0 60px 0;
  }
  .content-wrapper {
    gap: 32px;
  }
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(33,41,92,0.06);
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
  gap: 16px;
}
header img {
  max-height: 52px;
  margin-right: 24px;
}
.main-nav {
  display: none;
}
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    color: #21295C;
    font-weight: 500;
    padding: 6px 0 4px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.23s, color 0.2s;
  }
  .main-nav a:hover,
  .main-nav a:focus {
    color: #7D5BA6;
    border-bottom: 2px solid #7D5BA6;
  }  
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  font-family: 'Cinzel', serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #7D5BA6;
  color: #fff;
  border: none;
  border-radius: 30px;
  outline: none;
  box-shadow: 0 2px 6px 0 rgba(125,91,166,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  cursor: pointer;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 2px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #21295C;
  color: #F7F2E2;
  box-shadow: 0 4px 18px 0 rgba(33,41,92,0.12);
}

/* ===============================
   MOBILE NAVIGATION
   =============================== */
.mobile-menu-toggle {
  display: inline-flex;
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 1001;
  background: #7D5BA6;
  color: #FFF;
  font-size: 2.1rem;
  border: none;
  border-radius: 7px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(125,91,166,0.12);
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #21295C;
  color: #F7F2E2;
}
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: rgba(33,41,92,0.96);
  z-index: 1500;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 2px 0 18px 2px rgba(33,41,92,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 26px;
  margin-left: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F7F2E2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 36px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.28rem;
  color: #fff;
  padding: 8px 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.18s, background 0.15s;
  border-radius: 5px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #7D5BA6;
  color: #F7F2E2;
}
@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* ===============================
   HERO & PRIMARY HEADLINES
   =============================== */
section:first-of-type {
  min-height: 280px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px 0 rgba(33,41,92,0.04);
  border-radius: 15px;
}

/* ===============================
   FLEX LAYOUTS FOR CARDS/FEATURES
   =============================== */
.features-grid,
.features-list,
.content-grid,
.testimonial-list,
.service-list,
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}
.features-grid > div,
.features-list > .feature-item,
.content-grid > *,
.service-list > .service-item,
.faq-list > .faq-item {
  flex: 1 1 295px;
  min-width: 220px;
  max-width: 1fr;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #F7F2E2;
  box-shadow: 0 1px 8px 0 rgba(125,91,166,0.06);
  padding: 28px 22px 24px 22px;
  transition: box-shadow 0.22s, transform 0.23s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.features-grid > div:hover,
.features-grid > div:focus,
.features-list > .feature-item:hover,
.features-list > .feature-item:focus,
.service-list > .service-item:hover,
.service-list > .service-item:focus {
  box-shadow: 0 6px 34px 0 rgba(33,41,92,0.12);
  transform: translateY(-4px) scale(1.02);
}
@media (max-width: 900px) {
  .features-grid, .content-grid, .features-list, .testimonial-list, .service-list, .faq-list {
    gap: 18px;
  }
  .features-grid > div, .features-list > .feature-item, .service-list > .service-item, .faq-list > .faq-item {
    padding: 20px 14px;
  }
}
@media (max-width: 768px) {
  .features-grid, .content-grid, .features-list, .testimonial-list, .service-list, .faq-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .features-grid > div, .features-list > .feature-item, .service-list > .service-item, .faq-list > .faq-item {
    width: 100%;
    min-width: unset;
    padding: 18px 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(33,41,92,0.08);
  padding: 28px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 30px 0 rgba(125,91,166,0.11);
  transform: translateY(-3px) scale(1.01);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===============================
   TESTIMONIALS & REVIEW SECTIONS
   =============================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 22px 22px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(33,41,92,0.11);
  color: #21295C;
  min-width: 250px;
  max-width: 420px;
  flex: 1 1 280px;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-style: italic;
  color: #4A507E;
}
.testimonial-card strong {
  font-family: 'Cinzel', serif;
  color: #7D5BA6;
  font-size: 1rem;
}
.testimonial-card:before {
  content: '\201C';
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: #E3D3F9;
  position: absolute;
  top: 10px; left: 18px;
  opacity: 0.43;
  z-index: 0;
}

/* ===============================
   LISTS, ICON ROWS, AND FEATURES
   =============================== */
.selling-points,
.calendar-section ul,
.tips-section ul {
  list-style-type: disc;
  font-size: 1rem;
  margin: 0 0 16px 18px;
}
.icon-row {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin: 16px 0;
}
.icon-row img {
  height: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 26px 20px;
  background: #F7F2E2;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(125,91,166,0.07);
}
.feature-item h2 { margin-bottom: 7px; }

/* ===============================
   FORMS & INPUTS (where present)
   =============================== */
input, textarea, select{
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #7D5BA6;
  border-radius: 6px;
  padding: 11px 13px;
  background: #f8f7f2;
  color: #21295C;
  transition: border 0.17s;
  margin-bottom: 12px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #21295C;
  outline: none;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #7D5BA6;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(125,91,166,0.11);
  transition: background 0.16s, color 0.16s;
}
button:hover, button:focus {
  background: #21295C;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #21295C;
  color: #fff;
  padding: 48px 0 16px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .footer-brand img {
  max-height: 44px;
}
.footer-contact {
  font-size: 1rem;
  color: #F7F2E2;
  line-height: 1.6;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  color: #F7F2E2;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color 0.15s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  color: #D9B6F7;
  text-decoration: underline;
}
.footer-social {
  display: flex; gap: 18px; align-items: center; margin-top: 10px;
}
.footer-social img {
  height: 24px; transition: filter 0.2s;
}
.footer-social img:hover, .footer-social img:focus {
  filter: brightness(1.5);
}
@media (max-width: 900px) {
  footer .container {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-social { margin-top: 20px; }
}

/* ===============================
   LEGAL & COOKIE POLICY MODALS
   =============================== */
.legal-section {
  background: #fffffd;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(33,41,92,0.06);
  padding: 28px 22px;
  margin-bottom: 16px;
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 3001;
  background: #fff;
  color: #21295C;
  box-shadow: 0 -1px 18px 1px rgba(33,41,92,0.10);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.22s, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 10px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #7D5BA6;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 18px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #21295C;
  color: #F7F2E2;
}
.cookie-btn.cookie-reject {
  background: #E6E2DC;
  color: #21295C;
}
.cookie-btn.cookie-reject:hover {
  background: #B1A097;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #D2CED7;
  color: #21295C;
}
.cookie-btn.cookie-settings:hover {
  background: #7D5BA6;
  color: #FFF;
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,41,92,0.50);
  z-index: 3100;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.30s;
}
.cookie-modal.open { display: flex; }
.cookie-modal-content {
  background: #fff;
  color: #21295C;
  border-radius: 15px;
  box-shadow: 0 2px 32px 0 rgba(125,91,166,0.16);
  padding: 36px 26px 24px 26px;
  max-width: 370px;
  width: 93vw;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: slideUp 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-modal-content h3 { font-size: 1.35rem; margin-top: 0; margin-bottom: 16px; font-family: 'Cinzel', serif; color: #21295C; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category label { font-size: 1rem; color: #21295C; }
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px; accent-color: #7D5BA6;
}
.cookie-modal-content .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #21295C;
  font-size: 1.4rem;
  position: absolute;
  top: 14px; right: 18px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #7D5BA6;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
   =============================== */
@media (max-width: 768px) {
  header .container { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  section { padding: 30px 5px; margin-bottom: 36px; }
  h1 { font-size: 1.8rem; margin-bottom: 16px; }
  h2 { font-size: 1.25rem; margin-bottom: 12px; }
  .cta-btn { padding: 12px 22px; font-size: 1rem; }
  .testimonial-card { min-width: unset; max-width: unset; padding: 18px 10px; }
  .footer-social img { height: 22px; }
  footer { padding: 36px 0 10px 0; }
  .cookie-modal-content { padding: 28px 8px 15px 8px; }
}
@media (max-width: 500px) {
  .container { padding: 0 5px; }
  .cta-btn { padding: 10px 12px; font-size: 0.99rem; }
  .mobile-menu-toggle { width: 38px; height: 38px; font-size: 1.7rem; }
}

/* ===============================
   CARD & SECTION MINIMUM GAPS
   =============================== */
.features-grid > div, .service-list > .service-item, .testimonial-card, .faq-list > .faq-item {
  margin-bottom: 20px !important;
}
section + section { margin-top: 0; }

/* ===============================
   VISUAL ELEMENTS - SHADOWS, RADIUS
   =============================== */
.card, .features-grid > div, .feature-item, .testimonial-card, .faq-item, .legal-section {
  box-shadow: 0 2px 14px 0 rgba(125,91,166,0.06);
  border-radius: 14px;
}

/* ===============================
   UTILITY & ACCESSIBILITY
   =============================== */
[tabindex]:focus, a:focus-visible, button:focus-visible {
  outline: 2.5px solid #7D5BA6;
  outline-offset: 1.5px;
}

/* ===============================
   ANIMATIONS & MICRO-INTERACTIONS
   =============================== */
.cta-btn, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.20s, color 0.18s, box-shadow 0.18s, filter 0.15s;
}
.features-grid > div, .testimonial-card, .service-item {
  will-change: transform, box-shadow;
}

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