/* ------------------------------------------------------------
   RESET & BASE STYLES
------------------------------------------------------------ */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FBF7F3;
  color: #27323D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
a {
  color: #23517C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C1A574;
  outline: none;
}
strong { font-weight: 600; }
em { font-style: italic; }

/* ------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #26313D;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }
.text-section h2, .text-section h3 { margin-top: 18px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.18rem; }
}

/* ------------------------------------------------------------
   FLEX LAYOUT CONTAINERS (MANDATORY RULES)
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(193,165,116,0.12);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FAFAFA;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,81,124, 0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  min-width: 260px;
}
.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;
  background: #F9F6F1;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(193,165,116,0.09);
  margin-bottom: 20px;
  flex: 1 1 340px;
  min-width: 270px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------ */
header {
  background: #FAFAFA;
  border-bottom: 1px solid #EFE7DF;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header a img {
  max-height: 46px;
  border-radius: 8px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 4px;
  color: #23517C;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav a.cta-primary {
  background: #23517C;
  color: #fff;
  padding: 10px 26px;
  border-radius: 25px;
  font-weight: 700;
  margin-left: 12px;
  box-shadow: 0 2px 10px rgba(35,81,124,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: #C1A574;
  color: #26313D;
  box-shadow: 0 4px 16px rgba(193,165,116,0.21);
}
nav a:hover, nav a:focus {
  background: #EFE7DF;
  color: #C1A574;
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: #23517C;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(35,81,124,0.10);
  margin-left: 16px;
  transition: background 0.2s;
  z-index: 104;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #C1A574;
}

@media (max-width: 1024px) {
  nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35,81,124,0.97);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.68,-0.6,.32,1.6);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin-right: 24px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2005;
}
.mobile-menu-close:focus {
  outline: 2px solid #C1A574;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 32px;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  padding: 10px 2px;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: 0.015em;
  width: fit-content;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a.cta-primary {
  background: #C1A574;
  color: #26313D;
  font-weight: bold;
  padding: 12px 36px;
  border-radius: 25px;
  margin-top: 16px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #23517C;
}

/* Overlay for menu opening */
.mobile-menu.open::before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,81,124,0.43);
  z-index: 2001;
  pointer-events: none;
}

@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* ------------------------------------------------------------
   HERO SECTION / PROMINENT CTA
------------------------------------------------------------ */
.hero {
  background: linear-gradient(135deg, #FBF7F3 0%, #F2E9DD 100%);
  padding: 48px 0 40px 0;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  position: relative;
  box-shadow: 0 4px 32px rgba(35,81,124,0.03);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 210px;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  max-width: 640px;
  text-align: left;
}
.hero h1 {
  color: #23517C;
  font-size: 2.7rem;
  font-weight: 800;
}
.hero p {
  color: #5A4B31;
  font-size: 1.18rem;
}
.hero .cta-primary {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 30px 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-bottom: 40px;
  }
  .hero h1 { font-size: 1.45rem; }
}

/* ------------------------------------------------------------
   FEATURE TILES, GRIDS & HIGHLIGHTS
------------------------------------------------------------ */
.feature-grid, .service-tiles, .service-details, .stat-grid, .testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
}
.feature-grid > div, .service-tiles > div, .service-details > div, .stat-grid > div {
  background: #FAF8F4;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(193,165,116,0.10);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 225px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid img, .service-tiles img, .service-details img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(193,165,116,0.16);
}
.stat-grid > div {
  align-items: center;
  text-align: center;
  background: #FFFDEE;
  box-shadow: 0 2px 8px rgba(193,165,116,0.07);
}
.stat-grid h3 {
  font-size: 2rem;
  color: #C1A574;
}
@media (max-width: 968px) {
  .feature-grid > div, .service-tiles > div, .service-details > div, .stat-grid > div {
    flex: 1 1 100%;
    min-width: 160px;
    max-width: 100%;
  }
  .feature-grid, .service-tiles, .service-details, .stat-grid, .testimonial-list, .testimonial-slider {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-tiles, .service-details, .stat-grid, .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-accordion > div {
  background: #F8F3E9;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(35,81,124,0.07);
  padding: 20px 24px;
  color: #27323D;
  font-size: 1rem;
}
.faq-accordion h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #23517C;
}

/* ------------------------------------------------------------
   TESTIMONIALS CARDS
------------------------------------------------------------ */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.testimonial-card {
  background: #FFF8F3;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(193,165,116,0.16);
  color: #27323D;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 30px 18px 30px;
  min-width: 280px;
  max-width: 350px;
  font-size: 1.09rem;
  line-height: 1.6;
}
.testimonial-card p {
  margin-bottom: 10px;
  color: #23517C;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #746550;
}
@media (max-width: 900px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ------------------------------------------------------------
   SERVICE LISTS
------------------------------------------------------------ */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
  align-items: center;
}
.service-list li {
  background: #F6F3EF;
  border-radius: 12px;
  padding: 12px 24px 12px 16px;
  font-size: 1.03rem;
  color: #23517C;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.13s;
  box-shadow: 0 2px 8px rgba(193,165,116,0.11);
  margin-bottom: 2px;
}
.service-list img {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #fff;
}

/* ------------------------------------------------------------
   PRICING TABLE
------------------------------------------------------------ */
.pricing-table {
  background: #FAF8F4;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(35,81,124,0.07);
  padding: 18px 12px 6px 12px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 1.01rem;
}
.pricing-table th, .pricing-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #ECE1D1;
  text-align: left;
}
.pricing-table th {
  color: #23517C;
  font-weight: bold;
  font-size: 1.06rem;
  background: #fff4e6;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ------------------------------------------------------------
   BUTTONS & CTA
------------------------------------------------------------ */
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  background: #C1A574;
  color: #26313D;
  padding: 13px 38px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 14px rgba(193,165,116,0.18);
  cursor: pointer;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #23517C;
  color: #fff;
  box-shadow: 0 4px 18px rgba(35,81,124,0.17);
  outline: none;
}

.button,
.button-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 0;
  background: #fff4e6;
  color: #23517C;
  box-shadow: 0 2px 8px rgba(193,165,116,0.12);
  transition: background 0.18s, color 0.18s;
}
.button:hover, .button-secondary:hover, .button:focus, .button-secondary:focus {
  background: #C1A574;
  color: #fff;
}
.button-secondary {
  background: #ECE8E1;
  color: #23517C;
}

/* ------------------------------------------------------------
   CTA BLOCK SECTION
------------------------------------------------------------ */
.cta {
  background: #23517C;
  color: #fff;
  padding: 44px 0;
  border-radius: 22px;
  box-shadow: 0 3px 24px rgba(35,81,124,0.08);
  margin-bottom: 60px;
  text-align: center;
}
.cta h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta .cta-primary {
  background: #fff;
  color: #23517C;
  box-shadow: 0 2px 12px rgba(255,255,255,0.11);
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #C1A574;
  color: #fff;
}

/* ------------------------------------------------------------
   FOOTER & SOCIAL ICONS
------------------------------------------------------------ */
footer {
  background: #FAFAFA;
  border-top: 1.5px solid #ECE6DC;
  padding: 34px 0 14px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #746550;
  font-size: 0.97rem;
  padding: 2px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #ECE2D7;
  color: #23517C;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}
.footer-brand span {
  color: #27323D;
  font-size: 1rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #6C5A36;
  font-size: 0.97rem;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-left: 0;
}
.footer-social a img {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px rgba(35,81,124,0.11);
  width: 32px;
  height: 32px;
  transition: background 0.15s;
  padding: 4px;
}
.footer-social a:hover img {
  background: #23517C;
}

@media (max-width: 800px) {
  footer .container {
    gap: 14px;
  }
  .footer-contact, .footer-menu, .footer-social {
    gap: 12px;
  }
}

/* ------------------------------------------------------------
   TEXT CONTENT & INFORMATIONAL BLOCKS
------------------------------------------------------------ */
.text-section {
  background: #FFF8F6;
  border-radius: 14px;
  padding: 24px 20px;
  color: #27323D;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px rgba(193,165,116,0.07);
}
.text-section h2, .text-section h3 {
  color: #23517C;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
}

/* ------------------------------------------------------------
   RESPONSIVE FLEX ADJUSTMENTS
------------------------------------------------------------ */
@media (max-width: 768px) {
  .container, .content-wrapper, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 6px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .feature-grid, .service-tiles, .service-details, .stat-grid, .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-contact, .footer-menu, .footer-social {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

/* For .text-image-section: force column alignment on small screens */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF8F2;
  color: #27323D;
  box-shadow: 0 -4px 24px rgba(193,165,116,0.23);
  padding: 20px 12px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookie-banner-slide-up 0.4s cubic-bezier(.31,1,0.62,1) both;
}
@keyframes cookie-banner-slide-up {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
  justify-content: center;
}
.cookie-banner .button, 
.cookie-banner .button-secondary, 
.cookie-banner .cta-primary {
  min-width: 120px;
  font-size: 1rem;
  padding: 10px 20px;
}

/* Cookie Preferences MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,81,124,0.60);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 42px rgba(35,81,124,0.20);
  padding: 36px 30px 28px 30px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalpop 0.21s cubic-bezier(.22,1,.36,1) both;
}
@keyframes modalpop {
  from { transform: scale(0.90); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: #23517C;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #ECE1D1;
  font-size: 1.04rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ECE1D1;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle.enabled {
  background: #C1A574;
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(35,81,124,0.12);
  transition: left 0.12s;
}
.cookie-toggle.enabled:after {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .button, .cookie-modal .button-secondary {
  min-width: 120px;
}
.cookie-modal .close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #23517C;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #C1A574;
  outline: none;
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 18px 8px 18px 8px;
  }
}

/* ------------------------------------------------------------
   SPACING UTILITIES (for consistent white space)
------------------------------------------------------------ */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ------------------------------------------------------------
   MISC: FORM STYLES (for contact, if needed)
------------------------------------------------------------ */
input, textarea, select {
  border: 1.5px solid #ECE1D1;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #26313D;
  background: #FFF9F5;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(35,81,124,0.04);
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C1A574;
  box-shadow: 0 1px 7px rgba(193,165,116,0.14);
  outline: none;
}
label {
  font-size: 1rem;
  color: #23517C;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
}

/* ------------------------------------------------------------
   MICRO-INTERACTIONS & HOVER EFFECTS
------------------------------------------------------------ */
.card, .feature-grid > div, .service-tiles > div, .service-details > div, .stat-grid > div, .testimonial-card, .faq-accordion > div, .service-list li {
  transition: box-shadow 0.18s, background 0.15s;
}
.card:hover, .feature-grid > div:hover, .service-tiles > div:hover, .service-details > div:hover, .stat-grid > div:hover, .testimonial-card:hover, .faq-accordion > div:hover {
  box-shadow: 0 6px 24px rgba(193,165,116,0.16);
  background: #FFF;
}
.service-list li:hover {
  box-shadow: 0 4px 18px rgba(35,81,124,0.12);
  background: #f2e9dd;
}

/* ------------------------------------------------------------
   PRINT FRIENDLY (minimal, keep branding colors for headings)
------------------------------------------------------------ */
@media print {
  header, nav, footer, .cta, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff !important;
  }
  h1, h2, h3 {
    color: #23517C !important;
  }
}

/* ------------------------------------------------------------
   END OF STYLE.CSS
------------------------------------------------------------ */
