/* ===================================================
   CSS RESET & NORMALIZATION (MOBILE-FIRST)
=================================================== */
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;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body { line-height: 1.5; font-synthesis: none; text-rendering: optimizeLegibility; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
table { border-collapse: collapse; border-spacing: 0; }
button, input, textarea { font-family: inherit; font-size: inherit; background: none; border: none; outline: none; }
:focus { outline: 2px solid #CBB26A; outline-offset: 2px; transition: outline 0.2s; }

/* ===================================================
   BRAND & LUXURY PREMIUM VARIABLES
=================================================== */
:root {
  --primary: #1B1F23;
  --secondary: #CBB26A;
  --accent: #F0F1ED;
  --gold: #CBB26A;
  --dark: #1B1F23;
  --light: #F0F1ED;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Roboto', Arial, sans-serif;
  --border-radius: 14px;
  --card-radius: 18px;
  --shadow-premium: 0 4px 20px rgba(27,31,35,0.08), 0 0.5px 3px rgba(200, 170, 80, 0.10);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

@media (max-width: 767px) {
  :root {
    --section-space: 28px;
    --gap: 16px;
    --hero-pad: 18px 0;
  }
}
@media (min-width: 768px) {
  :root {
    --section-space: 60px;
    --gap: 24px;
    --hero-pad: 40px 0 56px;
  }
}

body {
  font-family: var(--body-font);
  background: var(--accent);
  color: var(--primary);
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  position: relative;
}

/* ===================================================
   TYPOGRAPHY & TEXT HIERARCHY
=================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.18; margin-bottom: 20px; }
h2 { font-size: 2rem;  line-height: 1.22; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.1rem; }
p, li, span, td, th {
  font-family: var(--body-font); font-size: 1rem; color: var(--primary); line-height: 1.7; }
strong { font-weight: 700; color: var(--dark); }
em { font-style: italic; color: var(--primary); }
.category {
  display: inline-block;
  background: var(--light);
  color: var(--secondary);
  font-family: var(--heading-font);
  font-size: 0.95em;
  border-radius: 20px;
  padding: 2px 14px;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ===== VISUAL SEPARATORS ===== */
hr {
  border: none;
  border-top: 1px solid #d3ccba;
  margin: 24px 0;
}

/* ===================================================
   CONTAINER & SPACING LAYOUTS (Flexbox Only)
=================================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 767px) {
  .section { margin-bottom: 32px; padding: 20px 10px; }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .content-wrapper { gap: 26px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--light);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-premium);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.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; gap: 22px; align-items: flex-start; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Features Grid Home */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
}
@media (max-width: 900px) {
  .features-grid { gap: 18px; }
}
.feature {
  flex: 1 1 210px;
  min-width: 190px;
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-premium);
  padding: 26px 21px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  transition: box-shadow 0.23s;
}
.feature img {
  height: 36px; width: 36px;
  margin-bottom: 8px;
  filter: grayscale(0.2) contrast(1.1);
}
.feature:hover, .feature:focus {
  box-shadow: 0 6px 36px rgba(27,31,35,0.15), 0 1.5px 7px rgba(200, 170, 80, 0.12);
}

/* ===== Service List ===== */
.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 16px;
}
.service-list li {
  position: relative;
  padding-left: 13px;
}
.service-list li::before {
  content: '\25CF';
  color: var(--secondary);
  font-size: 0.85em;
  position: absolute;
  left: 0; top: 7px;
}

/* ===== Service Details & Blocks (services.html) ===== */
.service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.service-block {
  flex: 1 1 260px;
  min-width: 210px;
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-premium);
  padding: 25px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 6px solid var(--gold);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-block:hover {
  box-shadow: 0 7px 24px rgba(203,178,106,0.10), 0 4px 12px rgba(27,31,35,0.08);
  border-left: 6px solid #D9C074;
}
.service-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.01em;
  letter-spacing: 0.01em;
  margin-top: 9px;
  font-family: var(--heading-font);
}

/* ===================================================
   HERO SECTIONS & ACCENTED AREA
=================================================== */
.hero {
  background: linear-gradient(120deg, #f3f3f0 50%, #ebe6d7 100%);
  padding: var(--hero-pad);
  min-height: 320px;
  display: flex; align-items: flex-end; margin-bottom: 32px;
}
.hero .container { width: 100%; }
.hero .content-wrapper {
  max-width: 740px;
}
.hero h1 {
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 2.3rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.15rem;
  max-width: 680px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero { min-height: 220px; padding: 18px 0 32px; }
  .hero h1 { font-size: 1.45rem; }
  .hero .content-wrapper { max-width: 99%; }
}

/* ===================================================
   NAVIGATION (DESKTOP & MOBILE)
=================================================== */
header {
  width: 100%;
  background: var(--light);
  box-shadow: 0 2px 17px rgba(27,31,35,0.05), 0 0.5px 2.5px rgba(203,178,106,0.08);
  position: sticky; top: 0; left: 0;
  z-index: 50;
}
header .container {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
header img {
  height: 38px;
  margin-right: 24px;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 20px;
}
.main-nav a {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gold);
  color: var(--dark);
}

.cta {
  background: transparent;
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1.07rem;
  padding: 10px 24px 10px 20px;
  border: 2px solid var(--gold);
  border-radius: 99px;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  transition: color .2s, background .2s, box-shadow .2s, border-color .2s;
  box-shadow: none;
  position: relative;
  margin-left: 16px;
}
.cta.primary, .cta.primary:visited {
  background: var(--gold);
  color: var(--primary);
  border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(203,178,106,0.10);
}
.cta.primary:hover, .cta.primary:focus {
  background: #eedba0;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(203,178,106,0.15);
  border-color: #bda14f;
}
.cta:hover, .cta:focus {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(203,178,106,0.11);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  background: none;
  color: var(--gold);
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 5px 14px;
  margin-left: 14px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--secondary);
}
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}
@media (max-width: 991px) {
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle { display: inline-flex; }
}

/* ===== MOBILE SLIDE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 97vw; max-width: 340px;
  height: 100vh;
  background: var(--primary);
  color: var(--gold);
  box-shadow: -8px 0 35px rgba(27,31,35,0.20);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.73,0.06,0.29,0.9), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  color: var(--gold);
  font-size: 2.3rem;
  margin: 22px 0 12px 14px;
  border: 2px solid transparent;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 9px;
  transition: background .2s, color .2s, border-color .2s;
  z-index: 2222;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 22px;
  align-items: flex-start;
  margin-top: 6px;
}
.mobile-nav a {
  color: var(--gold);
  font-size: 1.18em;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 0 5px 6px;
  border-radius: 7px;
  width: 100%;
  transition: background .21s, color .21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary);
}

/* Menu Overlay BG when open (optional fade) */
body.mobile-menu-active::after {
  content: '';
  display: block;
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,31,35,0.38);
  animation: fadeInOverlay 0.35s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; } to { opacity: 1; }
}

/* ===================================================
   FOOTER & SOCIALS
=================================================== */
footer {
  background: var(--primary);
  color: var(--gold);
  padding: 50px 0 30px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 1rem;
  opacity: 0.85;
  transition: color .18s, opacity .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ffe38b;
  text-decoration: underline;
  opacity: 1;
}
.contact p, .contact a {
  color: var(--gold);
  font-size: 0.96em;
  opacity: .88;
  margin-bottom: 6px;
}
.socials {
  display: flex;
  gap: 18px;
  align-items: center;
}
.socials a img {
  height: 28px;
  transition: filter .18s, transform .18s;
  filter: grayscale(0.2) contrast(1.22);
}
.socials a:hover img { filter: brightness(1.15) drop-shadow(0 0 7px #cbb26a40); transform: scale(1.07); }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

/* ===================================================
   CARD ELEMENTS & BLOG
=================================================== */
.blog-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.blog-articles article {
  background: var(--light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-premium);
  flex: 1 1 270px;
  min-width: 210px;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow .22s;
}
.blog-articles article:hover, .blog-articles article:focus {
  box-shadow: 0 8px 36px rgba(203,178,106,0.12), 0 3px 12px rgba(27,31,35,0.14);
}
.featured-articles {
  background: #ece8da;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 17px 16px 13px;
  margin-top: 24px;
  font-size: 0.96em;
}
.featured-articles h4 {
  color: var(--primary);
  margin-bottom: 9px;
}
.featured-articles ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===================================================
   TABLES (services.html)
=================================================== */
table {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  background: var(--light);
  margin-bottom: 24px;
}
thead th {
  font-family: var(--heading-font);
  background: #ece7da;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.06em;
  padding: 12px 14px;
  text-align: left;
}
tbody td {
  font-size: 1em;
  padding: 11px 14px;
  border-top: 1.5px solid #efe8d5;
}
tr:last-child td {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* ===================================================
   TESTIMONIAL CARDS & REFERENCES
=================================================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fbfaf7;
  border-radius: var(--border-radius);
  box-shadow: 0 2.5px 14px rgba(27,31,35,0.07), 0 0.5px 2.5px rgba(203,178,106,0.10);
  border-left: 5px solid var(--gold);
  font-size: 1.08em;
  color: #222;
  transition: box-shadow .21s, border-color .21s, background .20s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 36px rgba(203,178,106,0.14), 0 4px 10px rgba(27,31,35,0.18);
  background: #f9f6ed;
  border-color: #eccf77;
}
.testimonial-card h2,
.testimonial-card h3 {
  font-size: 1.21em;
  color: var(--primary);
  margin-bottom: 6px;
  margin-top: 0;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.03em;
}
.testimonial-card span {
  font-size: 0.97em;
  color: var(--primary);
}
.partner-brands {
  margin-top: 28px;
  margin-bottom: 12px;
}
.partner-brands ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.partner-brands li {
  background: #ECEBE8;
  color: var(--primary);
  border-radius: 7px;
  padding: 6px 13px 6px 11px;
  font-size: 0.98em;
  letter-spacing: 0.02em;
}

/* ===================================================
   ACCESSIBILITY & SELECTED ELEMENTS
=================================================== */
a, button {
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s, transform .18s;
  cursor: pointer;
}
::-webkit-input-placeholder { color: #a5a5a5; }
::-moz-placeholder { color: #a5a5a5; }
:-ms-input-placeholder { color: #a5a5a5; }
::placeholder { color: #a5a5a5; }

/* Focus States */
a:focus, button:focus, .cta:focus, input:focus, textarea:focus {
  box-shadow: 0 0 0 2px var(--gold), 0 0 0 6px #ecdca4ad;
  outline: none !important;
  border-color: var(--gold);
  z-index: 49;
}

/* ===================================================
   RESPONSIVE DESIGN
=================================================== */
@media (max-width: 991px) {
  .footer-nav,
  .contact,
  .socials {
    margin-bottom: 22px;
  }
  .container { padding: 0 11px; }
}
@media (max-width: 660px) {
  h1    { font-size: 1.22rem; }
  h2    { font-size: 1.05rem; }
  .service-block, .feature, .card {
    padding: 16px 9px;
    font-size: 0.98em;
  }
  .blog-articles { gap: 13px; }
  table th, table td { padding: 8px 6px; font-size: .94em; }
}

/* ===================================================
   COOKIE CONSENT BANNER
=================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 16px 20px 16px;
  z-index: 2300;
  box-shadow: 0 -6px 32px rgba(27,31,35,0.12);
  animation: slideUpCookie 0.43s;
}
@keyframes slideUpCookie {
  from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 1.04em;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 99px;
  padding: 7px 20px;
  font-family: var(--heading-font);
  font-size: 1em;
  font-weight: 600;
  margin: 0;
  box-shadow: none;
  transition: background .18s, color .18s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  font-weight: 700;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #efd880;
  color: var(--primary);
}
.cookie-banner .cookie-btn.reject {
  border-color: #947b32;
  color: var(--gold);
}
.cookie-banner .cookie-btn.reject:hover {
  background: #23282d;
  color: #e5c767;
}
.cookie-banner .cookie-btn.settings {
  color: #ffe391;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #333538;
  color: var(--gold);
}

/* ==== Cookie Modal ==== */
.cookie-modal {
  position: fixed;
  z-index: 2500;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: var(--light);
  color: var(--primary);
  padding: 32px 28px 24px;
  border-radius: 22px;
  box-shadow: 0 7px 38px rgba(27,31,35,0.22), 0 2px 20px #cbb26a60;
  min-width: 300px;
  width: 90vw; max-width: 410px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  font-family: var(--heading-font);
  color: var(--primary);
  margin-bottom: 17px;
  font-weight: 700;
}
.cookie-modal .modal-close {
  position: absolute; right: 22px; top: 19px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.45rem;
  padding: 3px 9px;
  border-radius: 7px;
  transition: background .15s;
  cursor: pointer;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #eee7ce;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 42px; height: 26px;
  background: #ddd6c0;
  border-radius: 13px;
  position: relative;
  outline: none;
  transition: background .18s;
  border: none;
  cursor: pointer;
}
.cookie-category .cookie-toggle:checked {
  background: var(--gold);
}
.cookie-category .cookie-toggle::before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  height: 20px; width: 20px;
  background: var(--light);
  border-radius: 50%;
  box-shadow: 0 1.5px 8px #cbb26a19;
  transition: transform .18s;
}
.cookie-category .cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-category .cookie-lock {
  color: #baaa6a;
  font-size: 1.25em;
  margin-left: 3px;
}
.cookie-modal .category-name { font-weight: 700; font-size: 1.01em; }
.cookie-modal .category-desc { font-size: .98em; opacity: .8; margin-top: 4px; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 29px;
}
.cookie-modal .cookie-modal-actions .cookie-btn {
  background: var(--primary);
  color: var(--gold);
  border: none;
  padding: 7px 22px;
  border-radius: 99px;
  font-size: 1em;
  font-family: var(--heading-font);
  font-weight: 700;
  transition: background .2s, color .2s;
}
.cookie-modal .cookie-modal-actions .cookie-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* ===== Modal Overlay ===== */
.cookie-modal-overlay {
  content: '';
  display: none;
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(27, 31, 35, 0.31);
  z-index: 2499;
  opacity: 0;
  transition: opacity .19s;
}
.cookie-modal.open + .cookie-modal-overlay {
  display: block;
  opacity: 1;
}

/* ===================================================
   UTILITY CLASSES & SELECTED
=================================================== */
.gold { color: var(--gold) !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: 18px !important; }
.mt-4 { margin-top: 36px !important; }
.mb-2 { margin-bottom: 18px !important; }

/* ========== PRINT ========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}

/* End of style.css (Luxury Premium for Oldtimer Wertanlage) */
