/* =====================
   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 {
  font-size: 16px;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background-color: #F3F6F9;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2B3D47;
  font-weight: 400;
}
ol, ul {
  list-style: none;
}
a, a:visited {
  text-decoration: none;
  color: #30566A;
  cursor: pointer;
  transition: color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #30566A;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
hr {
  border: none;
  height: 1px;
  background-color: #ddd;
  margin: 32px 0;
}

/* ======= BRAND TYPOGRAPHY ======= */
h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, ul, ol, blockquote {
  margin-bottom: 18px;
}
.subtitle {
  color: #5A747D;
  font-size: 1.15rem;
  margin-bottom: 24px;
  letter-spacing: 0px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
}

/* ======
   LAYOUT
  ====== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
/* Ensure spacing between sections */
section + section {
  margin-top: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(35,55,75,0.07);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(35,55,75,0.14);
  transform: translateY(-3px) scale(1.012);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-left: 5px solid #EBCC98;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(48,86,106,0.10);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 680px;
  color: #23333C;
}
.testimonial-meta {
  color: #30566A;
  font-size: 0.97rem;
  font-style: italic;
  margin-left: 8px;
}

/* ===============
   HEADER & NAV
   =============== */
header {
  background: #fff;
  border-bottom: 1.5px solid #EBCC98;
  position: relative;
  z-index: 1100;
  box-shadow: 0 2px 14px 0 rgba(48,86,106,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 0;
}
.logo,
.logo-footer {
  display: flex;
  align-items: center;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  color: #30566A;
  padding: 10px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBCC98;
  color: #1A354B;
}
.primary-btn {
  background: #30566A;
  color: #fff;
  padding: 11px 28px;
  border-radius: 22px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.12s;
  box-shadow: 0 4px 14px 0 rgba(48,86,106,0.10);
  outline: none;
  margin-left: 24px;
  border: none;
  display: inline-block;
}
.primary-btn:hover, .primary-btn:focus {
  background: #23333C;
  color: #EBCC98;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 32px 0 rgba(48,86,106,0.13);
}

/* =============================================
   MOBILE MENU BURGER NAVIGATION (Mobile-first)
   ============================================= */
.mobile-menu-toggle {
  display: flex;
  background: #30566A;
  color: #fff;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6px 12px;
  margin-left: 18px;
  transition: background 0.18s;
  z-index: 1202;
  border: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #23333C;
}
/* Hide regular nav by default on mobile */
.main-nav,
.primary-btn {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.72,.07,.4,1);
  display: flex;
  flex-direction: column;
  padding: 30px 24px 60px 24px;
  box-shadow: 0 8px 36px 0 rgba(48,86,106,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #30566A;
  background: none;
  border: none;
  margin-bottom: 18px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.15rem;
  color: #23333C;
  padding: 12px 0;
  transition: color 0.18s, background 0.18s, padding 0.17s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus{
  background: #EBCC98;
  color: #30566A;
  padding-left: 8px;
}
@media (min-width: 1024px) {
  .main-nav, .primary-btn {
    display: flex;
  }
  .main-nav {
    gap: 32px;
  }
  .mobile-menu-toggle, .mobile-menu {
    display: none;
  }
}
/* ===============
   HERO & PAGE TITLE
   =============== */
section:first-of-type {
  background-color: #F3F6F9;
  border-bottom: 1.5px solid #EBCC98;
  padding-top: 51px;
  padding-bottom: 32px;
}

/* ===============
   FEATURE LISTS
   =============== */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-list li {
  background: #fff;
  min-width: 220px;
  flex: 1 1 210px;
  padding: 22px 20px 20px 20px;
  border-radius: 13px;
  border: 1px solid #F3F6F9;
  box-shadow: 0 2px 7px 0 rgba(35,50,60,0.04);
  color: #2B3D47;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border 0.16s;
}
.feature-list li:hover {
  border: 1.5px solid #EBCC98;
  box-shadow: 0 6px 22px 0 rgba(35,55,75,0.12);
}
.feature-list img {
  margin-bottom: 4px;
  height: 34px;
  width: auto;
}

/* ===============
   SERVICE LISTS
   =============== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  background: #fff;
  border-radius: 9px;
  padding: 18px 21px;
  box-shadow: 0 1px 6px rgba(48,86,106,0.08);
  font-size: 1rem;
  color: #2B3D47;
  margin-bottom: 8px;
  transition: box-shadow 0.16s;
}
.service-list li h3 {
  font-size: 1.1rem;
  color: #30566A;
  margin-bottom: 7px;
}
.service-list li span {
  color: #917C52;
  font-weight: 500;
  font-size: 0.99em;
}

/* ===============
   MENU-LIST
   =============== */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}
.menu-list li {
  font-size: 1.08rem;
  padding: 10px 0 9px 0;
  color: #23333C;
}
.menu-highlight {
  color: #30566A;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.12rem;
  margin-top: 7px;
  font-weight: 500;
}

/* =========================
   CONTACT INFO BLOCKS
   ========================= */
.contact-info, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-info > div, .contact-details > div {
  display: flex;
  align-items: center;
  min-width: 220px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(48,86,106,0.05);
  gap: 11px;
  font-size: 1rem;
  color: #23333C;
}
.contact-info > div a, .contact-details > div a {
  color: #30566A;
  text-decoration: underline;
  font-weight: 500;
}
.cta-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}
.cta-section .primary-btn {
  margin: 0;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #fff;
  border-top: 1.5px solid #EBCC98;
  padding: 38px 0 24px 0;
  margin-top: 56px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.logo-footer {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.97rem;
  color: #30566A;
  transition: color 0.18s;
  padding-bottom: 3px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #917C52;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.97rem;
  color: #7A7B7C;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdf7;
  border-top: 1.5px solid #EBCC98;
  box-shadow: 0 -2px 14px 0 rgba(48,86,106,0.08);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 20px 20px 20px;
  width: 100%;
  transition: transform 0.32s;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner strong {
  color: #30566A;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.04rem;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #23333C;
  font-size: 0.99rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 7px;
}
.cookie-btn-accept {
  background: #30566A;
  color: #fff;
  border-radius: 19px;
  padding: 9px 18px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  margin-right: 4px;
  transition: background 0.17s, transform 0.15s;
  box-shadow: 0 2px 9px 0 rgba(35,55,75,0.07);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #23333C;
  color: #EBCC98;
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn-reject {
  background: #fff;
  color: #30566A;
  border: 1.2px solid #30566A;
  border-radius: 19px;
  padding: 9px 18px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  margin-right: 4px;
  transition: background 0.17s, color 0.17s, border 0.15s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #EBCC98;
  color: #23333C;
  border: 1.2px solid #23333C;
}
.cookie-btn-settings {
  background: #EBCC98;
  color: #30566A;
  border: none;
  border-radius: 19px;
  padding: 9px 18px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #fff2ca;
  color: #1A354B;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 32px rgba(48,86,106,0.29);
  z-index: 3300;
  min-width: 340px;
  max-width: 96vw;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalIn 0.33s cubic-bezier(.63,0,.63,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%,-35%) scale(0.86); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal.hide {
  display: none;
}
.cookie-modal h3 {
  color: #30566A;
  font-size: 1.23rem;
  margin-bottom: 11px;
}
.cookie-modal .category-group {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 19px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.05rem;
}
.cookie-modal .category label {
  color: #23333C;
}
.cookie-modal .category input[type=checkbox] {
  accent-color: #30566A;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.cookie-modal .category .essential {
  color: #917C52;
  font-weight: 500;
  font-size: 0.97em;
  margin-left: 6px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 11px;
}
.cookie-modal .modal-close {
  background: none;
  color: #30566A;
  padding: 0 8px;
  border-radius: 5px;
  font-size: 1.37rem;
  align-self: flex-end;
  margin-bottom: -17px;
  margin-right: -13px;
  position: absolute;
  top: 13px; right: 18px;
  z-index: 1;
}
.cookie-modal .modal-close:hover {
  background: #f4ead4;
}

/* ===================
   ANIMATION
   =================== */
a, .primary-btn, button, .feature-list li, .card, .service-list li {
  transition: background 0.2s, color 0.16s, box-shadow 0.18s, border 0.18s, transform 0.18s;
}

/* ===============
   UTILITY CLASSES
   =============== */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.rounded { border-radius: 14px !important; }

/* ===============
   RESPONSIVE
   =============== */
@media (max-width: 1023px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .feature-list {
    gap: 16px;
  }
  .feature-list li {
    min-width: 170px;
    font-size: .99rem;
  }
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 11px;
  }
  .main-nav, .primary-btn {
    font-size: .97rem;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .section {
    margin-bottom: 38px;
    padding: 28px 7px;
  }
  .testimonial-card {
    font-size: 0.96rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
    gap: 11px;
    max-width: 99vw;
  }
  .feature-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-list li {
    min-width: 0;
    font-size: 0.97rem;
    padding-left: 9px; padding-right: 9px;
  }
  .contact-info, .contact-details {
    flex-direction: column;
    gap: 12px; min-width: 0;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
  header .container {
    min-height: 64px;
    padding: 0 7px;
  }
  footer .container {
    gap: 11px;
    padding: 0 6px;
  }
  .logo, .logo-footer {
    max-width: 94px;
  }
}_

/* ===============
   DARKER TEXT ON TESTIMONIALS/REVIEWS
   =============== */
.testimonial-card, .testimonial-card blockquote, .testimonial-card .testimonial-meta {
  color: #23333C !important;
  background: #fff !important;
}

/* ===============
   PRINT
   =============== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
}
