/* --- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f4f6f8;
  color: #21232A;
}

/* --- LUXURY PREMIUM BRAND VARIABLES (with fallbacks) --- */
:root {
  --brand-primary: #20436D;
  --brand-secondary: #29A79A;
  --brand-accent: #F4F6F8;
  --brand-gold: #C8A86B;
  --brand-dark: #14171C;
  --brand-light: #FFFFFF;
  --brand-gray: #E1E4EA;
  --brand-shadow: rgba(32, 43, 62, 0.10);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- BASE TYPOGRAPHY --- */
body {
  font-family: var(--font-body, 'Open Sans', Arial, Helvetica, sans-serif);
  font-size: 16px;
  background: var(--brand-accent, #f4f6f8);
  color: var(--brand-dark, #14171C);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  font-weight: 700;
  color: var(--brand-primary, #20436D);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

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

p {
  font-size: 1.07rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--brand-dark, #20232a);
}
strong, b {
  font-weight: 700;
}
a {
  color: var(--brand-secondary, #29A79A);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--brand-gold, #C8A86B);
}

ul, ol {
  margin-bottom: 20px;
  margin-left: 24px;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* --- CONTAINER AND GRID LAYOUTS (FLEX ONLY) --- */
.container {
  width: 100%;
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- SECTION SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-light, #fff);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 var(--brand-shadow, rgba(32,43,62,0.10));
}
@media (max-width: 920px) {
  .section { padding: 36px 8px; }
}

/* --- HERO SECTION --- */
.hero {
  background: var(--brand-primary, #20436D);
  background-image: linear-gradient(to right bottom, #263a5c 20%, #20436d 80%);
  color: var(--brand-light, #fff);
  padding: 60px 0 46px 0;
  margin-bottom: 0;
}
.hero .container {
  padding-top: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 25px;
}
.hero h1 {
  color: var(--brand-gold, #C8A86B);
  text-shadow: 0 2px 6px rgba(20,20,20,0.07);
}
.hero p {
  color: #e8e9ec;
}
.hero .primary-btn {
  margin-top: 12px;
}

/* --- BUTTONS --- */
.primary-btn,
button.primary-btn {
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px -3px var(--brand-shadow, rgba(32,43,62,0.11));
  transition: background 0.20s, box-shadow 0.20s, color 0.10s;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px #fff6;
}
.primary-btn:hover,
button.primary-btn:hover,
.primary-btn:focus {
  background: var(--brand-primary, #20436D);
  color: var(--brand-light, #fff);
  box-shadow: 0 6px 14px -2px var(--brand-gold, #C8A86B), 0 3px 16px -2px rgba(32,43,62,0.10);
  outline: none;
}

/* --- NAVIGATION --- */
header {
  background: var(--brand-light, #fff);
  box-shadow: 0 4px 28px 0 var(--brand-shadow, rgba(32,43,62,0.09));
  z-index: 20;
  position: relative;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0;
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
}
header nav a {
  font-size: 1.05rem;
  color: var(--brand-primary, #20436D);
  font-weight: 500;
  border-radius: 14px;
  padding: 7px 14px;
  transition: background 0.17s, color 0.15s;
  position: relative;
}
header nav a.primary-btn {
  margin-left: auto;
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
  font-weight: 700;
  border-radius: 24px;
  padding: 10px 32px;
}
header nav a:hover, header nav a:focus {
  background: var(--brand-accent, #f4f6f8);
  color: var(--brand-gold, #C8A86B);
}

/* Logo sizing */
header nav img {
  height: 34px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 14px;
  background: var(--brand-gold, #C8A86B);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  color: var(--brand-primary, #20436D);
  z-index: 1012;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 var(--brand-shadow, rgba(32,43,62,0.08));
  transition: background 0.18s, color 0.12s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-primary, #20436D);
  color: var(--brand-light, #fff);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: var(--brand-light, #fff);
  box-shadow: -6px 0 40px 0 var(--brand-shadow, rgba(32,43,62,0.18));
  z-index: 2000;
  transition: transform 0.32s cubic-bezier(.69,.05,.38,.93);
  transform: translateX(0);
  opacity: 0.99;
  padding: 28px 0 0 0;
}
.mobile-menu.active {
  transform: translateX(-100vw);
  left: 0;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--brand-primary, #20436D);
  padding: 10px 20px;
  cursor: pointer;
  align-self: flex-end;
  z-index: 2010;
  border-radius: 50%;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--brand-gray, #e1e4ea);
  color: var(--brand-gold, #C8A86B);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100vw;
}
.mobile-nav a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 38px;
  font-size: 1.16rem;
  color: var(--brand-primary, #20436D);
  border-bottom: 1px solid var(--brand-gray,#e1e4ea);
  background: none;
  transition: background 0.16s, color 0.16s;
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent, #f4f6f8);
  color: var(--brand-gold, #C8A86B);
  outline: none;
}

@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1000px) {
  .mobile-menu {
    left: 100vw;
    transform: translateX(0);
    opacity: 1;
    padding-top: 22px;
    transition: left 0.15s, transform 0.32s cubic-bezier(.69,.05,.38,.93);
  }
  .mobile-menu.active {
    left: 0;
    transform: translateX(0);
    opacity: 1;
  }
}

/* --- MAIN & STRUCTURE LAYOUTS --- */
main {
  min-height: 56vh;
}
.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;
}

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 20px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Used for cards: testimonials, features, services, team, blogs */
.card-container, .feature-grid, .service-grid, .team-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-grid > div, .service-grid > div, .team-grid > div, .blog-list > article {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-light, #fff);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 var(--brand-shadow, rgba(32,43,62,0.09));
  padding: 30px 22px;
  flex: 1 1 288px;
  max-width: 32.7%;
  min-width: 240px;
  transition: box-shadow 0.21s, transform 0.14s;
  border: 1.7px solid var(--brand-gold, #C8A86B);
}
.card:hover, .feature-grid > div:hover, .service-grid > div:hover, .team-grid > div:hover, .blog-list > article:hover {
  box-shadow: 0 8px 36px -8px var(--brand-gold, #C8A86B), 0 8px 24px -6px var(--brand-shadow, rgba(32,43,62,0.13));
  transform: translateY(-6px) scale(1.03);
  z-index: 2;
}

@media (max-width: 900px) {
  .feature-grid > div, .service-grid > div, .team-grid > div, .blog-list > article { max-width: 48.7%; flex: 1 1 46%; }
}
@media (max-width: 600px) {
  .feature-grid, .service-grid, .team-grid, .blog-list { flex-direction: column; gap: 18px; }
  .feature-grid > div, .service-grid > div, .team-grid > div, .blog-list > article { max-width: 100%; flex: 1 1 100%; }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-accent, #f4f6f8);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--brand-shadow, rgba(32,43,62,0.08));
  margin-bottom: 20px;
  border-left: 5px solid var(--brand-gold, #C8A86B);
  color: var(--brand-dark, #1C2128);
  font-size: 1.02rem;
}
.testimonial-card blockquote {
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  font-size: 1.12rem;
  color: var(--brand-primary, #20436D);
  line-height: 1.6;
  margin-bottom: 9px;
  quotes: "\201E" "\201C" "\201A" "\2018";
}
.testimonial-card p {
  margin-bottom: 0;
  color: var(--brand-dark, #1C2128);
}

/* --- TEXT SECTIONS --- */
.text-section {
  background: var(--brand-light, #fff);
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 var(--brand-shadow, rgba(32,43,62,0.08));
}

/* --- MAP IN CONTACT --- */
.map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.map img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}
.map span {
  font-size: 1.02rem;
  color: var(--brand-primary, #20436D);
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary, #20436D);
  color: var(--brand-light, #fff);
  margin-top: 62px;
  padding: 32px 0 18px 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
footer nav a {
  color: var(--brand-gold, #C8A86B);
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.11s;
  background: none;
}
footer nav a:hover,footer nav a:focus {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
}
.company-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1.01rem;
}
.company-details p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 3px 0;
  color: var(--brand-accent, #F4F6F8);
}
.company-details img {
  width: 18px; height: 18px; border-radius: 4px;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #ccd6e4;
  font-size: 0.95rem;
  margin-top: 14px;
}
@media (max-width: 820px) {
  footer .content-wrapper { padding-left:0; padding-right:0;}
}

/* --- BLOG LIST --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-list article {
  background: var(--brand-light, #fff);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--brand-shadow, rgba(32,43,62,0.08));
  padding: 28px;
  flex: 1 1 290px;
  margin-bottom: 20px;
  border: 1px solid var(--brand-gray, #e1e4ea);
  transition: box-shadow 0.19s, transform 0.13s;
}
.blog-list a {
  color: var(--brand-primary, #20436D);
  font-weight: 700;
}
.blog-list article:hover {
  box-shadow: 0 8px 32px -8px var(--brand-gold, #c8a86b), 0 12px 28px -10px var(--brand-shadow, rgba(32,43,62,0.10));
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 40px;
}
.categories-filter span {
  color: var(--brand-gold, #C8A86B);
  font-weight: 700;
}
.categories-filter a {
  color: var(--brand-primary, #20436D);
  padding: 2px 9px;
  border-radius: 8px;
  transition: background 0.17s, color 0.10s;
  font-weight: 500;
}
.categories-filter a:hover {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-light, #fff);
}

/* --- FORM, INPUTS, ETC. (If needed) --- */
input, textarea, select {
  font-family: var(--font-body, 'Open Sans', Arial, Helvetica, sans-serif);
  font-size: 1.01rem;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--brand-gray, #E1E4EA);
  background: #fff;
  color: #222;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-gold, #C8A86B);
}
label {
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--brand-primary, #20436D);
  font-weight: 500;
  display: block;
}

/* --- ANIMATIONS --- */
.primary-btn, .card, .testimonial-card, .feature-grid > div, .service-grid > div, .team-grid > div, .blog-list > article {
  transition: box-shadow 0.23s, transform 0.13s;
}

/* Subtle fade-in for sections */
.section, .hero, .content-wrapper, .testimonial-card, .card, .feature-grid > div, .service-grid > div, .team-grid > div, .blog-list > article {
  animation: fadein 0.9s cubic-bezier(.24,0,.41,1.1);
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-light, #fff);
  box-shadow: 0 -4px 46px -18px var(--brand-shadow, rgba(32,43,62,0.14));
  border-top: 3px solid var(--brand-gold, #C8A86B);
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 32px 18px;
  justify-content: space-between;
  font-size: 1.01rem;
  transition: transform 0.32s, opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner button {
  border: none;
  background: var(--brand-gray, #e1e4ea);
  color: var(--brand-primary, #20436D);
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  font-weight: 600;
  border-radius: 16px;
  padding: 9px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 1px;
  box-shadow: 0 1px 8px -3px var(--brand-gold, #C8A86B);
  transition: background 0.17s, color 0.12s;
}
.cookie-banner button.accept {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: var(--brand-primary, #20436D);
  color: var(--brand-light, #fff);
}
.cookie-banner button.reject {
  background: var(--brand-primary, #20436D);
  color: var(--brand-light, #fff);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
}
.cookie-banner button.settings {
  background: var(--brand-gray, #E1E4EA);
  color: var(--brand-primary, #20436D);
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: var(--brand-gold,#C8A86B);
  color: var(--brand-primary, #20436D);
}

@media (max-width: 900px) {
  .cookie-banner { flex-direction: column; gap: 18px; align-items: flex-start; }
  .cookie-banner .cookie-buttons { width: 100%; gap: 8px; }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,43,62,0.26);
  backdrop-filter: blur(2.9px);
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.active {
  display: flex;
}
.cookie-modal {
  background: var(--brand-light, #fff);
  color: var(--brand-primary, #20436D);
  max-width: 420px;
  width: 96vw;
  padding: 34px 24px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 16px 72px -22px var(--brand-shadow, rgba(32,43,62,0.21));
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: var(--font-body, 'Open Sans', Arial, Helvetica, sans-serif);
  animation: fadein 0.39s cubic-bezier(.24,0,.41,1.1);
  position: relative;
  z-index: 999;
}
.cookie-modal h3 {
  color: var(--brand-primary, #20436D);
  font-size: 1.26rem;
  margin-bottom: 11px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.06rem;
}
.cookie-modal .category input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.cookie-modal .category label {
  margin: 0;
}
.cookie-modal .essential {
  font-weight: bold;
  color: var(--brand-gold, #C8A86B);
}
.cookie-modal button {
  background: var(--brand-primary, #20436D);
  color: var(--brand-light, #fff);
  border: none;
  border-radius: 12px;
  padding: 10px 26px;
  font-weight: 700;
  font-family: var(--font-display, 'Montserrat', Arial, Helvetica, sans-serif);
  cursor: pointer;
  transition: background 0.18s, color 0.1s;
  margin-top: 16px;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  color: var(--brand-gold, #C8A86B);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-light, #fff);
}

/* --- UTILITIES --- */
.d-none {
  display: none !important;
}

/* --- RESPONSIVE: GENERAL --- */
@media (max-width: 660px) {
  .container, .section { padding-left: 8px; padding-right: 8px; }
  .section { padding: 24px 4px; border-radius: 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 28px 0; border-radius: 0; }
}

/* --- VISUAL LUXURY DETAILS --- */
.section, .testimonial-card, .card, .blog-list article, .feature-grid > div {
  position: relative;
  border-top: 2px solid var(--brand-gold, #C8A86B);
  border-radius: 18px;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--brand-gold, #C8A86B);
  border-radius: 8px 8px 0 0;
  opacity: 0.31;
}
@media (max-width:920px) {
  .section { padding: 28px 3px; }
}

/* --- CUSTOM SCROLLBAR (LUXURY) --- */
::-webkit-scrollbar {
  width: 12px;
  background: var(--brand-accent, #F4F6F8);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-gold, #C8A86B);
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-primary, #20436D);
}

/* --- VISUAL GOLD ACCENT DOTS ON HEADINGS --- */
h2, h3 {
  position: relative;
  padding-left: 21px;
}
h2::before, h3::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand-gold, #C8A86B);
  position: absolute;
  left: 0;
  top: 5px;
  opacity: 0.89;
}
@media (max-width: 768px) {
  h2, h3 { padding-left: 15px; }
  h2::before, h3::before { width: 9px; height: 9px; top: 6px; }
}

/* --- TABLES (If used) --- */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  margin-bottom: 22px;
  border-radius: 9px;
  box-shadow: 0 1px 8px 0 var(--brand-shadow, rgba(32,43,62,0.06));
}
th, td {
  border: 1px solid var(--brand-gray, #e1e4ea);
  padding: 11px 18px;
  font-size: 1rem;
}
th {
  background: var(--brand-gold, #C8A86B);
  color: var(--brand-primary, #20436D);
}

/* --- VISUAL HIERARCHY --- */
.section > .container > .content-wrapper > h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.section > .container > .content-wrapper > h3 {
  margin-bottom: 2px;
}
.section > .container > .content-wrapper > ul {
  margin-bottom: 10px;
}

/* --- SPACING ENFORCEMENT --- */
.card, .feature-grid > div, .service-grid > div, .team-grid > div, .blog-list > article, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .service-grid, .team-grid, .blog-list, .content-grid {
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; }
.feature-item { gap: 15px; }

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px dotted var(--brand-gold, #C8A86B);
  outline-offset: 3px;
}

/* --- PRINT STYLES --- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, footer { display: none !important; }
  body { font-size: 12pt; background: #fff !important; }
  .container, .section { padding: 0 !important; margin: 0 !important; box-shadow: none !important; }
}
