/* =====================
   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;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  min-height: 100%;
}
body {
  background: #F5F5F5;
  color: #232323;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #11324D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #936600;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
/* ========================
   GLOBAL TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #11324D;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
p, blockquote {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #232323;
  font-size: 1.13rem;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #F7C873;
  padding-left: 18px;
  margin: 0 0 12px 0;
  background: #fffbe6;
}
strong {
  font-weight: bold;
}
subheadline, .subheadline {
  font-size: 1.23rem;
  color: #4a5970;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
/* =========================
   CONTAINER & SECTIONS
   ========================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px 0 rgba(17,50,77, 0.04), 0 1.5px 4px 0 rgba(17,50,77,0.04);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  background: #fff;
  border-bottom: 1.5px solid #e1e1e1;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px 20px;
  gap: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #11324D;
  font-size: 1.08rem;
  padding: 7px 11px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a.cta {
  background: #F7C873;
  color: #11324D;
  border: none;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 16px;
  margin-left: 10px;
  box-shadow: 0 2px 8px 0 rgba(247,200,115,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #fad270;
  color: #212121;
  box-shadow: 0 4px 24px 0 rgba(247,200,115,0.23);
}
header nav a:hover:not(.cta), header nav a:focus:not(.cta) {
  background: #f7f1df;
  color: #7f5c00;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #11324D;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  margin-left: 14px;
  padding: 5px 8px;
  border-radius: 4px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F7C873;
}
/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #fefaf2;
  box-shadow: 0 4px 32px rgba(17,50,77,0.11);
  z-index: 1200;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.8,.27,.43,1.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #11324D;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 26px 20px 8px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F7C873;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 34px;
}
.mobile-nav a {
  color: #11324D;
  font-size: 1.25rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 500;
  padding: 11px 0 11px 3px;
  transition: background 0.17s, color 0.17s;
  border-radius: 8px;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7C873;
  color: #11324D;
}
.mobile-nav .cta {
  background: #F7C873;
  font-weight: bold;
  color: #11324D;
  margin-top: 18px;
  border-radius: 20px;
  padding: 12px 21px;
  display: inline-block;
}
/* =====================
   MAIN CONTENT LAYOUTS 
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(17,50,77, .07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.12s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 38px rgba(17,50,77, 0.15);
  transform: translateY(-2px) scale(1.02);
}
.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;
  padding: 20px;
  background: #fcf8ee;
  border-left: 6px solid #F7C873;
  box-shadow: 0 1.5px 14px 0 rgba(17,50,77,0.06);
  border-radius: 10px;
  margin-bottom: 22px;
  transition: box-shadow 0.22s, transform 0.12s;
  max-width: 650px;
  color: #232323;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(17, 50, 77, 0.15);
  transform: translateY(-1px) scale(1.01);
}
.testimonial-card blockquote {
  background: transparent;
  padding-left: 10px;
  border-left: 3px solid #F7C873;
}
.testimonial-card span {
  color: #11324D;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-style: normal;
  font-weight: 600;
}
.feature-grid, .feature-item {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0.5px 8px rgba(17,50,77,0.05);
  padding: 22px 18px 15px 18px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  flex: 1 1 210px;
  max-width: 270px;
  transition: box-shadow 0.19s, transform 0.13s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 4px 28px 0 rgba(17,50,77, 0.12);
  transform: translateY(-1.5px) scale(1.015);
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
/* ====================
   BUTTONS & CTA LINKS
   ==================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  background: #11324D;
  color: #fff;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.07rem;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 10px 0 rgba(17,50,77,0.10);
  transition: background 0.19s, color 0.14s, box-shadow 0.20s, transform 0.09s;
  text-decoration: none;
  margin-top: 8px;
  cursor: pointer;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #F7C873;
  color: #11324D;
  box-shadow: 0 4px 18px 0 rgba(247,200,115,0.20);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}
.button, button {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.00rem;
  color: #11324D;
  background: #F7C873;
  border: none;
  border-radius: 20px;
  padding: 9px 24px;
  margin-right: 10px;
  box-shadow: 0 0.5px 6px 0 rgba(17,50,77,0.07);
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
  cursor: pointer;
}
.button:hover, .button:focus, button:hover, button:focus {
  background: #d7a823;
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(17,50,77,0.11);
}
/* ========================
   FOOTER
   ======================== */
footer {
  background: #fff;
  border-top: 1.5px solid #e1e1e1;
  padding: 38px 0 18px 0;
  margin-top: 60px;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: #11324D;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  padding: 4px 8px;
  transition: background 0.18s, color 0.18s;
  border-radius: 6px;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #f7f1df;
  color: #7f5c00;
}
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 0.98rem;
  margin-top: 6px;
  color: #11324D;
}
.contact-details img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fffbe7;
  color: #232323;
  box-shadow: 0 -2px 16px 0 rgba(17,50,77,0.13);
  padding: 24px 17px 20px 20px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s;
  border-top: 2px solid #F7C873;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-consent-banner button {
  background: #F7C873;
  color: #11324D;
  padding: 9px 20px;
  border: none;
  border-radius: 16px;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 600;
  margin-right: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(247,200,115,0.09);
  transition: background 0.17s, color 0.13s, transform 0.09s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #ffd16b;
  color: #7d6011;
  transform: scale(1.035);
}
.cookie-consent-banner button:last-child {
  background: #f3efea;
  color: #11324D;
}
.cookie-consent-banner button:last-child:hover, .cookie-consent-banner button:last-child:focus {
  background: #e9e2d2;
  color: #7d6011;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  z-index: 2600;
  background: #fffbe7;
  box-shadow: 0 6px 24px 0 rgba(17,50,77,0.24);
  border-radius: 14px;
  padding: 34px 28px 28px 28px;
  max-width: 420px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  animation: cookie-modal-in 0.35s cubic-bezier(.6,.27,.53,1.08);
}
@keyframes cookie-modal-in {
  from { transform: translate(-50%,60%) scale(0.85) rotate(-2deg); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1) rotate(0deg);   opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #11324D;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #f7e4bc;
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1.04rem;
  color: #11324D;
  flex: 1;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #F7C873;
  width: 19px; height: 19px;
}
.cookie-modal .cookie-category.cookie-essential label {
  font-weight: bold;
  color: #a68834;
}
.cookie-modal .cookie-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal button {
  background: #F7C873;
  color: #11324D;
  padding: 9px 20px;
  border: none;
  border-radius: 13px;
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 600;
  box-shadow: 0 2px 10px 0 rgba(247,200,115,0.08);
  transition: background 0.17s, color 0.13s, transform 0.07s;
  cursor: pointer;
}
.cookie-modal button.close-modal {
  background: #f3efea;
  color: #11324D;
}
.cookie-modal button.close-modal:hover, .cookie-modal button.close-modal:focus {
  background: #e9e2d2;
  color: #7d6011;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #ffd16b;
  color: #7d6011;
  transform: scale(1.029);
}
/* ===============
   MEDIA QUERIES
   =============== */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .card {
    min-width: 44vw;
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
  }
  header .container {
    flex-direction: row;
    padding: 16px 8px 13px 8px;
    gap: 2px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1.01rem;
    padding: 13px 11px;
  }
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
  .feature-grid > div {
    min-width: 97vw;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .footer-navigation {
    gap: 16px;
    font-size: 0.91rem;
  }
  .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: .98rem;
    margin-top: 12px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .card {
    padding: 20px 8px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.19rem; }
  .section { padding: 18px 3px; }
  .footer-navigation { flex-direction: column; gap: 7px; }
}
/* === Micro-interactions === */
.cta, .feature-grid > div, .card, .testimonial-card, .button, button, .mobile-menu, .cookie-consent-banner, .cookie-modal {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.13s, 0.16s, 0.19s, 0.12s;
}
/* === Scrollbar Styling for Elegant Classic Touch === */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #eae3d3;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}

/* ==============
 Utility Spacing
 ============== */
.mt-24 { margin-top: 24px; } 
.mb-24 { margin-bottom: 24px; } 
.mb-40 { margin-bottom: 40px; }

/* Hide visually (for accessible label usage, e.g. cookie banner) */
.visually-hidden {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

/* ==============
 FORM STYLES (Contact/Newsletter)
 ============== */
input[type="text"], input[type="email"], textarea {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  border: 1.2px solid #d7d7d7;
  border-radius: 8px;
  padding: 12px 10px;
  margin-bottom: 16px;
  background: #fff;
  color: #11324D;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.16s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F7C873;
  outline: none;
}

/* ========================================
 Elegant Classic Extra: Details, Muted Tones
 ======================================== */
hr {
  border: 0;
  border-top: 1px solid #f7e4bc;
  margin: 36px 0;
}

/* END */
