/* 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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4EEE8;
  color: #333857;
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
a {
  color: #333857;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FEBE56;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* TYPOGRAPHY */
:root {
  --primary: #333857;
  --secondary: #F4EEE8;
  --accent: #FEBE56;
  --shadow: rgba(51, 56, 87, 0.06);
  --radius: 10px;
}

body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: var(--primary);
}
h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
p, .subheadline, .brand-tagline {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.subheadline, .brand-tagline {
  font-size: 1.22rem;
  color: var(--primary);
  margin-bottom: 18px;
  font-style: italic;
  opacity: 0.80;
}
strong {
  font-weight: bold;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 18px rgba(51,56,87,0.12);
  transform: translateY(-2px);
}
.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 {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card p {
  font-size: 1.09em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(51,56,87,0.13);
  transform: translateY(-1px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX UTILS */
.flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 6px var(--shadow);
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  height: 72px;
  min-height: 60px;
  padding: 0 20px;
  font-size: 1.04em;
  letter-spacing: 0.01em;
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color 0.18s;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: none;
}
.main-nav a:focus, .main-nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.main-nav img {
  display: block;
  height: 40px;
  margin-right: 12px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2em;
  background: none;
  color: var(--primary);
  padding: 4px 12px;
  border: none;
  position: absolute;
  top: 11px;
  right: 16px;
  z-index: 222;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--accent);
  background: #eee;
  border-radius: var(--radius);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.88,-0.01,.29,1.14);
  padding: 28px 32px 32px 16px;
  visibility: hidden;
  box-shadow: 0 6px 22px 0 rgba(51, 56, 87, 0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1em;
  color: var(--primary);
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10002;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25em;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
  padding: 12px 0 10px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.22s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--accent);
  background: #F7F2ED;
  border-radius: var(--radius);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
    font-size: 0.96em;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    font-size: 0.92em;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 540px) {
  .mobile-menu {
    padding: 18px 8px 28px 8px;
  }
}

/* BUTTONS & CTA */
.cta-button, button, input[type=submit], input[type=button] {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 12px 34px;
  font-size: 1.11em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 0 2px 8px var(--shadow);
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  text-align: center;
  display: inline-block;
}
.cta-button:focus, .cta-button:hover, button:focus, button:hover, input[type=submit]:hover, input[type=button]:hover {
  background: #FFD485;
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px rgba(51,56,87,0.09);
}

/* INPUTS */
input[type=text], input[type=email], input[type=password], textarea {
  font-size: 1em;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  border-radius: var(--radius);
  border: 1.2px solid #dadada;
  padding: 10px 12px;
  background: #fff;
  margin-bottom: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.14s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 22px 0 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 10px var(--shadow);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1em;
  border-bottom: 1.5px solid transparent;
  padding: 8px 0 6px 0;
  transition: border-bottom 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
}
.footer-contact {
  padding: 10px 0 16px 0;
  text-align: center;
  font-size: 0.97em;
  color: #564e47;
  opacity: 0.93;
  max-width: 600px;
  margin: 0 auto;
}

/* SECTIONS & ELEMENT SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}
.card + .card {
  margin-left: 24px;
}
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 9px;
}

/* ICONS IN LISTS */
ul li img, ol li img {
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
  height: 22px;
  width: 22px;
}
/* Callout/Highlight label support */
strong[role="highlight"] {
  background: var(--accent);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 18px;
}

/* TABLES (generally for privacy/gdpr) */
table {
  border-collapse: collapse;
  margin-bottom: 32px;
  width: 100%;
}
th, td {
  border: 1px solid #eee;
  padding: 10px 18px;
  text-align: left;
}
th {
  background: #f3f1ed;
}

/* RESPONSIVE FLEX BEHAVIOR */
@media (max-width: 991px) {
  .container {
    max-width: 97vw;
  }
  .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.44rem;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section, section {
    padding: 26px 5px;
  }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start !important;
  }
  .card-container {
    gap: 14px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 1.59rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .card, .testimonial-card {
    padding: 16px 8px;
    min-width: 0;
  }
}

/* TESTIMONIALS ACCESSIBILITY: STRONG COLOR CONTRAST */
.testimonial-card {
  color: #23233a;
  background: #fff;
  border: 1.2px solid #f4e9d9;
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--primary);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px var(--shadow);
  color: #333857;
  padding: 18px 24px 18px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1.07em;
  z-index: 12000;
  gap: 18px;
  border-radius: 18px 18px 0 0;
  transition: transform 0.3s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-consent-banner p {
  max-width: 600px;
  margin-bottom: 0;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 0;
  align-items: center;
}
.cookie-consent-actions button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-size: 0.97em;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  padding: 9px 22px;
  min-width: 96px;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.19s, color 0.19s, transform 0.13s;
}
.cookie-consent-actions button:focus, .cookie-consent-actions button:hover {
  background: #FFD485;
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
}
.cookie-consent-actions .cookie-settings-btn {
  background: #eee6db;
  color: var(--primary);
  border: 1px solid #e9dbc7;
  box-shadow: none;
}
.cookie-consent-actions .cookie-settings-btn:hover { background: #ffeccd; }

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 13px;
    padding: 13px 7vw 14px 7vw;
  }
  .cookie-consent-actions {
    gap: 10px;
    justify-content: flex-end;
    width: 100%;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(51, 56, 87, 0.12);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.2s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px 0 rgba(51,56,87,0.19);
  padding: 36px 34px 24px 34px;
  min-width: 295px;
  max-width: 96vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0 7px 8px;
  border-bottom: 1px solid #efefef;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category label {
  font-weight: 600;
  font-size: 1.09em;
}
.cookie-modal-category input[type=checkbox][disabled] {
  accent-color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 13px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.03em;
  font-weight: 600;
  border: none;
  padding: 9px 22px;
  transition: background 0.16s;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-modal-actions .secondary {
  background: #eee6db;
  color: var(--primary);
  border: 1px solid #e9dbc7;
  box-shadow: none;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6em;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: var(--accent);
}
@media (max-width: 540px) {
  .cookie-modal {
    width: 95vw;
    max-width: 99vw;
    padding: 13vw 6vw 8vw 6vw;
  }
}

/* ANIMATIONS */
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.cookie-consent-banner, .cookie-modal {
  animation: fadein 440ms cubic-bezier(.51,1.55,.29,1);
}
.mobile-menu {
  will-change: transform, visibility;
}

/* MISC */
hr {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 32px 0;
}
::selection {
  background: #ffe6b5;
  color: var(--primary);
}

/* SPECIAL UTILS */
.hide {
  display: none !important;
}
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: #000;
  background: #ffc;
  z-index: 30;
}
.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  padding: 10px 18px;
  font-size: 1.09em;
}
/* Hide scrollbars for modal and side nav when open */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* PRINT SUPPORT */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section, .section { padding: 0 !important; }
  .container { max-width: 100vw; padding: 0 !important; }
}

/* END OF ELEGANT CLASSIC STYLES */
