/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26335B;
  background: linear-gradient(120deg, #F7F7F7 60%, #dbeAFE 100%);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: background 0.3s;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #26335B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D6A07E;
  outline: none;
}
ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 36px 0 rgba(38,51,91,0.05), 0 1.5px 8px 0 rgba(214,160,126,0.05);
}

/* =================
   TYPOGRAPHY
   ================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  color: #26335B;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 2rem;
  color: #26335B;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  color: #26335B;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #26335B;
}
.subtitle {
  font-size: 1.2rem;
  color: #5b6b9a;
  margin-bottom: 16px;
}
p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}
strong {
  color: #26335B;
}
em {
  color: #D6A07E;
  font-style: normal;
}

/* ===============
   FLEX CONTAINERS
   =============== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(38,51,91,0.10);
  padding: 24px 30px;
  position: relative;
  transition: transform 0.15s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card:hover, .card:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px 0 rgba(214,160,126,0.15), 0 2px 12px 0 rgba(38,51,91,0.12);
}

.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: center;
  gap: 20px;
  background: #fff;
  color: #26335B;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(38,51,91,0.09);
  padding: 20px 28px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 600px;
  transition: box-shadow 0.2s, transform 0.18s;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #26335B;
  margin-bottom: 8px;
  text-align: center;
  font-size: 1.11rem;
}
.testimonial-card strong {
  color: #D6A07E;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 40px 0 rgba(214,160,126,0.16);
  transform: translateY(-2px) scale(1.01);
}

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

ul > li, ol > li {
  margin-bottom: 14px;
  line-height: 1.7;
  position: relative;
  padding-left: 0;
}

/* ===========
   BUTTONS & CTA
   =========== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  border-radius: 32px;
  background: linear-gradient(90deg, #26335B 78%, #D6A07E 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(38,51,91,0.07);
  margin-top: 8px;
  margin-bottom: 8px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.26s, box-shadow 0.21s, transform 0.14s;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #26335B 55%, #D6A07E 100%);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(214,160,126,0.14);
  transform: translateY(-1px) scale(1.035);
}

button.mobile-menu-toggle {
  display: none;
  background: #D6A07E;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 4px 14px 4px 14px;
  margin-left: 16px;
  transition: background 0.18s, color 0.16s;
  z-index: 2002;
}
button.mobile-menu-toggle:hover,
button.mobile-menu-toggle:focus {
  background: #26335B;
  color: #D6A07E;
}

/* ===============
   HEADER & NAVIGATION
   =============== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(38,51,91,0.06);
  position: sticky;
  top: 0;
  z-index: 2100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  max-height: 54px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #26335B;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F7F7;
  color: #D6A07E;
}

/* ===============
   MOBILE NAVIGATION
   =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #26335B;
  z-index: 3200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,.2,.39,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 34px;
  padding-right: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -8px 0 40px 0 rgba(38,51,91,0.18);
}
.mobile-menu-close {
  background: #fff;
  border-radius: 50%;
  color: #26335B;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.16s, color 0.13s;
  margin-right: 3px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D6A07E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  gap: 12px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  background: none;
  padding: 12px 16px;
  border-radius: 10px;
  width: 220px;
  text-align: right;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D6A07E;
  color: #26335B;
}

@media (max-width: 1022px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.96rem;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 900px) {
  header img {
    max-height: 42px;
  }
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #26335B;
  color: #fff;
  width: 100%;
  box-shadow: 0 -2px 18px 0 rgba(38,51,91,0.05);
  padding-top: 28px;
}
footer .container {
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #D6A07E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 10px;
  transition: color 0.14s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #26335B;
}
.footer-text {
  font-size: 0.97rem;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 0;
  text-align: center;
}

/* ===============
   RESPONSIVE LAYOUTS
   =============== */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
 }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .cta-btn { font-size: 1rem; padding: 11px 22px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section {
    padding: 24px 10px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 13px 14px;
    font-size: 1rem;
    min-width: 0;
    max-width: 100%;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding: 16px 12px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1rem; }
  .footer-text { font-size: 0.84rem; }
  .cta-btn { font-size: 0.98rem; padding: 9px 16px; }
  .footer-nav {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.96rem;
  }
}

/* ===============
   VARIOUS: Lists
   =============== */
ul li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background: #D6A07E;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 10px;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-left: 14px;
}

/* ===============
   CONTENT & TEXT SECTION
   =============== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.05rem;
  color: #26335B;
}
.text-section ul li::before {
  background: #26335B;
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #d5daec;
  border-radius: 4px;
}
::-webkit-scrollbar-track {
  background: #f7f7f7;
}

/* ===========================
   COOKIE BANNER & MODAL
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  min-width: 100vw;
  background: #26335B;
  color: #fff;
  padding: 20px;
  box-shadow: 0 -2px 36px 0 rgba(38,51,91,0.17);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  z-index: 4000;
  transition: transform 0.26s cubic-bezier(.57,.11,.38,.93), opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.06rem;
}
.cookie-btn {
  margin-left: 8px;
  margin-right: 8px;
  background: #D6A07E;
  color: #fff;
  padding: 8px 23px;
  border-radius: 20px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
  border: none;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #fff;
  color: #D6A07E;
  box-shadow: 0 2px 16px 0 rgba(214,160,126,0.17);
}
.cookie-banner .cookie-btn:last-child {
  background: #26335B;
  color: #D6A07E;
  border: 1.5px solid #D6A07E;
}
.cookie-banner .cookie-btn:last-child:hover, .cookie-banner .cookie-btn:last-child:focus {
  background: #D6A07E;
  color: #fff;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4100;
  background: rgba(38,51,91,0.58);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s cubic-bezier(.55,.17,.45,.71);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 28px 28px 28px;
  border-radius: 1.5em;
  box-shadow: 0 14px 64px 0 rgba(38,51,91,0.16);
  min-width: 320px;
  min-height: 180px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 21px;
  color: #26335B;
  font-size: 1rem;
  position: relative;
}
.cookie-modal-content h2 {
  color: #26335B;
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-weight: 500;
  color: #26335B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #D6A07E;
}
.cookie-category[data-essential="true"] label {
  color: #aaa;
  font-style: italic;
  opacity: 0.74;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 9px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 17px;
  top: 12px;
  background: #efefef;
  color: #26335B;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #D6A07E;
  color: #fff;
}

/* Hide banner/modal on small screens adjustments */
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 7px;
  }
  .cookie-btn { margin: 4px 4px 4px 0; width: 100%; max-width: 280px; }
  .cookie-modal-content { padding: 23px 6px 15px 9px; }
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.card, .testimonial-card, .cta-btn, .cookie-btn {
  transition: box-shadow 0.2s, transform 0.15s, background 0.2s, color 0.18s;
}
.card:active, .testimonial-card:active, .cta-btn:active {
  transform: scale(0.98);
}

/* ===============
   VISUAL HIERARCHY
   =============== */
section {
  background: transparent;
  margin-bottom: 60px;
  padding: 0;
}
.container + section {
  margin-top: 0;
}

/* Spacing and gaps between sections */
section + section {
  margin-top: 0;
}
.container > .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > ul {
  margin-left: 0;
}

/* ===============
   UTILITY CLASSES
   =============== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* ===============
   PRINT
   =============== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; }
}

/* ===============
   FONT IMPORTS (for font-display swap on web)
   =============== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

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