/* =====================
   CSS RESET & BASELINE
   ===================== */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.6;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #FAF8F3;
  color: #2B463C;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #2B463C;
  transition: color 0.2s;
}
strong { font-weight: bold; }

/* ============
  BRAND COLORS
   ============*/
:root {
  --primary: #2B463C;
  --secondary: #8CC7AA;
  --accent: #F2EDDD;
  --text: #2B463C;
  --muted: #E7E2D7;
  --error: #B32D2D;
  --shadow: rgba(43, 70, 60, 0.09);
}

/* ===========================
   TYPOGRAPHY – ELEGANT CLASSIC
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
  margin-bottom: 18px;
}
h1 { font-size: 2.25rem; line-height: 1.17; margin-bottom: 28px; font-weight: 700;}
h2 { font-size: 1.5rem;    line-height: 1.25; margin-bottom: 22px; font-weight: 600;}
h3 { font-size: 1.2rem;    line-height: 1.3;  margin-bottom: 12px; font-weight: 500;}
h4, h5, h6 { font-size: 1rem; line-height: 1.3; margin-bottom: 10px;}
p, ul, ol, li {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}

ul {
  margin-bottom: 8px;
}
li + li {
  margin-top: 12px;
}

section .content-wrapper > p, section .content-wrapper > ul {
  margin-bottom: 18px;
}

cite {
  font-style: italic;
  color: var(--primary);
  opacity: 0.84;
  font-size: 0.97rem;
}

/* =============
   CONTAINERS
   =============*/
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =============
   SPACING
   =============*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 18px -8px var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px -12px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.22s;
  padding: 24px 20px;
  flex: 1 1 250px;
}
.card:hover, .card:focus-within {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 24px -8px var(--shadow);
}
.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;
  padding: 20px;
  background: var(--accent);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px -6px var(--shadow);
  flex-direction: column;
  min-height: 110px;
  border-left: 6px solid var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  margin-bottom: 28px;
}

/* ============
   BUTTONS & CTA
   ============*/
.cta-button {
  display: inline-block;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: var(--primary);
  color: #fff;
  padding: 13px 34px;
  border-radius: 22px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px -8px var(--shadow);
  transition: background 0.22s, color 0.22s, transform 0.15s, box-shadow 0.22s;
  margin-top: 14px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 6px 24px -9px var(--shadow);
  transform: translateY(-2px) scale(1.03);
}

/* =========
   NAVIGATION
   =========*/
header {
  background: #fff;
  box-shadow: 0 2px 12px -9px var(--shadow);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 16px 0;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
  font-size: 1rem;
  padding: 6px 11px;
  transition: color 0.18s, background 0.2s, border-bottom 0.2s;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  background: var(--accent);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 8px;
  margin-left: 4px;
}

/* MOBILE NAVIGATION STYLES */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 14px;
  position: absolute;
  top: 18px;
  right: 14px;
  cursor: pointer;
  z-index: 51;
  box-shadow: 0 2px 10px -8px var(--shadow);
  transition: background 0.25s, color 0.20s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 0 3px 28px -4px var(--shadow);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  position: absolute;
  top: 16px;
  right: 20px;
  cursor: pointer;
  z-index: 101;
  padding: 6px 13px;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  margin: 68px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 25px 32px;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.15rem;
  color: var(--primary);
  padding: 12px 8px;
  border-radius: 4px;
  transition: background 0.18s, color 0.20s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* ===========
   FOOTER
   ===========*/
footer {
  background: #F2EDDD;
  padding: 38px 0 20px 0;
  color: var(--primary);
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  box-shadow: 0 -4px 22px -10px var(--shadow);
  margin-top: 52px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.footer-meta {
  text-align: center;
  font-size: 0.96rem;
  opacity: 0.8;
  margin-top: 4px;
}
.footer-meta span {
  display: block;
  margin-bottom: 3px;
}

/* ===============
   CARDS, LISTS, ICONS
   ===============*/
ul > li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  background: #fff;
  padding: 18px 19px 16px 12px;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px -6px var(--shadow);
  line-height: 1.5;
  transition: box-shadow 0.22s, background 0.20s;
}
ul > li img {
  height: 42px; width: 42px;
  min-width: 42px;
  margin-right: 9px;
  align-self: flex-start;
}
ul > li strong {
  color: var(--primary);
  font-size: 1.04rem;
  margin-right: 6px;
}
ul > li:hover, ul > li:focus-within {
  box-shadow: 0 7px 20px -12px var(--shadow);
  background: var(--accent);
}
.price {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  border-radius: 5px;
  padding: 2px 9px;
  margin-left: 10px;
  font-size: 0.97rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

/* ================
   CONTACT DETAILS
   ================*/
.contact-details {
  margin-bottom: 20px;
  padding: 18px 16px;
  background: var(--muted);
  border-radius: 14px;
  box-shadow: 0 1px 8px -8px var(--shadow);
  font-size: 1.01rem;
}
.contact-details a {
  color: var(--primary);
  text-decoration: underline;
}

/* ================
   RESPONSIVE DESIGN
   ================*/
@media (max-width: 992px) {
  .container {
    max-width: 90vw;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper, .section {
    padding-left: 0;
    padding-right: 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
  }
  .section {
    padding: 28px 7px;
  }
  ul > li {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 14px 9px 12px 9px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 510px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .cta-button {
    font-size: 1rem;
    padding: 10px 15px;
  }
}

/* ================
   HOVER & MICRO-INTERACTIONS
   ================*/
a, .cta-button, .mobile-menu-toggle, .mobile-menu-close, .footer-nav a, .main-nav a, .mobile-nav a, ul > li {
  transition: color 0.20s, background 0.20s, box-shadow 0.22s, transform 0.18s;
}
ul > li:active, .cta-button:active {
  transform: scale(0.97);
}

/* ================
   COOKIE CONSENT BANNER
   ================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  width: 100vw;
  background: var(--accent);
  box-shadow: 0 -2px 12px -6px var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: transform 0.35s cubic-bezier(.86,-0.53,.4,1.37), opacity 0.32s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  max-width: 70vw;
  color: var(--primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 0.97rem;
  padding: 9px 19px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: background 0.2s, color 0.22s, box-shadow 0.2s;
  box-shadow: 0 1px 8px -7px var(--shadow);
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 1.1px solid var(--primary);
}
.cookie-btn.cookie-settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #fff2e1;
  color: var(--primary);
}

@media (max-width: 992px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 200;
  background: rgba(43, 70, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 7px 32px -6px var(--shadow);
  max-width: 420px;
  width: 96vw;
  padding: 29px 28px 19px 28px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: stretch;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  animation: modal-fade-in 0.32s cubic-bezier(0.66,0,0,.98);
  position: relative;
}
@keyframes modal-fade-in {
  from { opacity: 0; transform: translateY(44px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0) scale(1.00); }
}
.cookie-modal-content h3 {
  margin-top: 0; margin-bottom: 12px;
  font-size: 1.23rem;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 7px;
}
.cookie-modal-content li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.01rem;
  gap: 10px;
}
.cookie-toggle {
  margin-left: auto;
  width: 45px;
  height: 25px;
  border-radius: 25px;
  background: var(--muted);
  position: relative;
  border: 1.3px solid var(--secondary);
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle[data-checked="true"] {
  background: var(--secondary);
}
.cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 21px;
  height: 21px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
  box-shadow: 0 1.5px 7px -5px var(--shadow);
}
.cookie-toggle[data-checked="true"]::after {
  left: 22px;
}
.cookie-modal-content .cookie-essential {
  opacity: 0.6;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
  color: var(--primary);
  transition: color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ACCESSIBILITY: FOCUS */
a, button, .cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  outline: none;
}
a:focus-visible, .cta-button:focus-visible, .cookie-btn:focus-visible, .mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible, .cookie-modal-close:focus-visible {
  box-shadow: 0 0 0 2.5px var(--secondary);
}

/* ======================
   A11Y: HIGH CONTRAST FOR TESTIMONIALS
   ======================*/
.testimonial-card {
  color: #2B463C;
  background: var(--accent);
  border-left: 6px solid var(--secondary);
}
.testimonial-card p {
  color: #2B463C;
}
.testimonial-card cite {
  color: var(--primary);
}

/* ===========
   CUSTOM SCROLLBAR (subtle for elegance)
   ===========*/
body::-webkit-scrollbar { width: 12px; background: #F2EDDD; }
body::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 8px; }

/* ==========================
   UTILITY CLASSES
   ==========================*/
.hide, .hidden { display: none !important; }

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