/* ===== CSS RESET & BASELINE ===== */
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 {
  box-sizing: border-box;
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #171c22;
}
body {
  min-height: 100vh;
  background: #181D23;
  color: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #C6A97D;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.77,0,.175,1);
}
a:hover, a:focus {
  color: #F5F5F5;
  text-decoration: underline;
}
strong { font-weight: 700; }
em { font-style: italic; }
ul, ol {
  margin-left: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Roboto Slab', serif;
  color: #F5F5F5;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 13px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

/* ===== BRAND COLORS & VARIABLES ===== */
:root {
  --color-primary: #20435C;
  --color-secondary: #C6A97D;
  --color-accent: #F5F5F5;
  --color-bg: #181D23;
  --color-bg-dark: #171c22;
  --color-metal: #555961;
  --color-border: #263242;
  --color-shadow: rgba(24, 29, 35, 0.38);
  --radius: 9px;
  --header-height: 62px;
  --transition: 0.22s cubic-bezier(.77,0,.175,1);
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-dark);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px -8px var(--color-shadow);
}
@media (max-width:768px) {
  .section {
    padding: 26px 8px;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===== HEADER & NAVIGATION ===== */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 12px -4px var(--color-shadow);
  position: relative;
  z-index: 30;
}
header .container {
  min-height: var(--header-height);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: #F5F5F5;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 4px;
  border-radius: 4px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #181D23;
}
.cta-primary {
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 2px 14px -7px var(--color-shadow);
  transition: background var(--transition), color var(--transition), transform .12s;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-align: center;
  outline: none;
  margin-left: 8px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #a58958;
  color: var(--color-accent);
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 6px 28px -8px var(--color-shadow);
}
.cta-secondary {
  background: transparent;
  color: var(--color-secondary);
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--color-secondary);
  border-radius: 24px;
  padding: 10px 30px;
  transition: background var(--transition), border var(--transition), color var(--transition), transform .13s;
  cursor: pointer;
  margin-top: 10px;
  text-align: center;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-secondary);
  color: #222;
  transform: translateY(-2px) scale(1.035);
  border-color: var(--color-metal);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .cta-primary {
    padding: 8px 17px;
    font-size: 0.98rem;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 102;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  border: none;
  font-size: 2rem;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .13s;
  box-shadow: 0 2px 20px -7px var(--color-shadow);
}
.mobile-menu-toggle:hover {
  background: #b09165;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(24,29,35,0.97);
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  padding-top: 22px;
  padding-bottom: 24px;
  transform: translateX(102vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.77,0,.175,1), opacity .17s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 30px;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  border: none;
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 3px 14px;
  cursor: pointer;
  transition: background .2s;
  z-index: 10003;
}
.mobile-menu-close:hover {
  background: #b09165;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-left: 22px;
  margin-top: 22px;
}
.mobile-nav a {
  color: #F5F5F5;
  font-size: 1.3rem;
  font-family: 'Merriweather', serif;
  background: transparent;
  border: none;
  padding: 7px 0;
  border-radius: 4px;
  transition: color .2s, background .2s;
  min-width: 100px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: #292f37;
}
@media (max-width:1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--color-primary);
  color: #f5f5f5;
  padding-top: 46px;
  padding-bottom: 32px;
  border-top: 1px solid #263242;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #C6A97D;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover { color: #F5F5F5; }
.contact-mini {
  font-size: 0.95rem;
  margin: 0 0 12px 0;
  color: #D5CEBF;
}
.contact-mini ul { list-style: none; }
.contact-mini li { margin-bottom: 3px; }
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}
.social-links a {
  opacity: 0.78;
  transition: opacity .18s;
}
.social-links a:hover { opacity: 1; }
.social-links img {
  width: 30px;
  height: auto;
  filter: grayscale(100%) contrast(1.15);
  transition: filter .18s;
}
.social-links a:hover img { filter: none; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 19px;
    flex-wrap: wrap;
  }
}

/* ===== FLEX LAYOUTS ===== */
.feature-grid, .feature-cards, .testimonial-slider, .testimonial-highlights, .reference-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid, .feature-cards, .testimonial-slider, .testimonial-highlights, .reference-list {
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #232931;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px -8px var(--color-shadow);
  margin-bottom: 20px;
  padding: 26px;
  color: #F5F5F5;
  position: relative;
  transition: box-shadow .18s, transform .12s;
}
.card:hover {
  box-shadow: 0 8px 40px -10px var(--color-shadow);
  transform: translateY(-2px) 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;
}
@media (max-width:768px) {
  .feature-grid, .feature-cards, .testimonial-slider, .testimonial-highlights, .reference-list, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #20252B;
  border-radius: var(--radius);
  box-shadow: 0 2px 9px -4px var(--color-shadow);
  padding: 22px 20px 18px 20px;
  min-width: 240px;
  max-width: 360px;
  flex: 1;
  margin-bottom: 0px;
  transition: box-shadow .15s;
}
.feature-item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 7px;
  filter: grayscale(65%) brightness(0.91) contrast(1.19);
}
.feature-item h3 {
  font-size: 1.07rem;
  color: var(--color-secondary);
  margin-bottom: 7px;
  letter-spacing: .015em;
}
.feature-item p {
  color: #e5e5e5;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .feature-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* ===== SERVICES LISTS ===== */
.services-list, .detailed-services-list, .benefits-list, .contact-persons-list {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list li, .detailed-services-list li,
.benefits-list li, .contact-persons-list li {
  background: #1f2329;
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius);
  color: #F5F5F5;
  padding: 20px 18px 16px 26px;
  margin-bottom: 0px;
  font-size: 1.05rem;
  box-shadow: 0 2px 7px -4px var(--color-shadow);
}
.services-list li strong, .detailed-services-list h3 {
  color: var(--color-secondary);
}
.services-list li span, .detailed-services-list strong {
  color: #666a7c;
  margin-top: 2px;
  display: inline-block;
  font-size: 0.97em;
  font-weight: 500;
}
.detailed-services-list h3 {
  margin-bottom: 4px;
  font-size: 1.17rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider, .testimonial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 0;
  background: #F5F5F5;
  color: #222;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px -9px var(--color-shadow);
  min-width: 250px;
  max-width: 400px;
  flex: 1 1 260px;
  font-family: 'Merriweather', serif;
  transition: box-shadow .16s, transform .12s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 48px -8px var(--color-shadow);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: .01em;
  color: #232931;
  margin-bottom: 3px;
}
.testimonial-meta {
  font-size: 0.95rem;
  color: #888;
}
.testimonial-meta span {
  color: var(--color-primary);
  font-weight: 600;
}
@media (max-width:1024px) {
  .testimonial-slider, .testimonial-highlights {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* ===== FAQ ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #20252B;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius);
  padding: 16px 18px 16px 24px;
  transition: box-shadow .12s;
  box-shadow: 0 2px 8px -3px var(--color-shadow);
  cursor: pointer;
  font-size: 1.04rem;
}
.faq-item h3 {
  font-family: 'Merriweather', serif;
  color: var(--color-secondary);
  font-size: 1.14rem;
  margin: 0 0 7px 0;
  pointer-events: none;
}
.faq-body {
  color: #e0e1e5;
  font-size: 1rem;
  line-height: 1.58;
  margin-bottom: 0;
}
.faq-item.open {
  background: #272f36;
  box-shadow: 0 7px 24px -9px var(--color-shadow);
}

/* ===== REFERENCE VEHICLES ===== */
.reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.reference-item {
  background: #1f2329;
  border-radius: var(--radius);
  box-shadow: 0 2px 9px -4px var(--color-shadow);
  padding: 22px 18px 18px 22px;
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 270px;
}
.reference-item h3 {
  font-size:1.14rem;
  color: var(--color-secondary);
  margin-bottom: 7px;
}
.reference-item p {
  font-size: 1.01rem;
  color: #e5e5e5;
}
@media (max-width:800px) {
  .reference-list {
    flex-direction: column;
    gap: 18px;
  }
  .reference-item {
    min-width: 0;
    max-width: 100%;
  }
}

/* ===== INFOS/DETAILS GRIDS ===== */
.infographic-values, .key-automobile-highlights, .statistic-highlights, .available-services-info {
  background: #22282e;
  border-radius: var(--radius);
  padding: 20px 15px 16px 26px;
  color: #D5CEBF;
  box-shadow: 0 1px 8px -4px var(--color-shadow);
  margin: 16px 0 8px 0;
  font-size: 1.01rem;
}
.downloadable-guides {
  margin: 22px 0 0 0;
}
.downloadable-guides h4 {
  color: var(--color-secondary);
  font-size: 1.11rem;
  margin-bottom: 9px;
}
.downloadable-guides ul {
  list-style: none;
}
.downloadable-guides li a {
  color: var(--color-primary);
  text-decoration: underline;
  font-size: 1.04rem;
}
.downloadable-guides li a:hover { color: var(--color-secondary); }

/* ===== ADDRESS & MAP SECTION ===== */
.address-map {
  display: flex;
  align-items: center;
  gap: 20px;
  font-style: italic;
  color: #D5CEBF;
  margin-top: 18px;
}
.address-map img {
  filter: grayscale(70%) brightness(1.2);
}
@media(max-width:600px){
.address-map{flex-direction:column;align-items:flex-start;gap:7px;}
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10050;
  background: #232931;
  color: #F5F5F5;
  box-shadow: 0 0 18px -4px var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 26px;
  font-size: 1.04rem;
  transition: transform .29s, opacity .21s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn {
  margin-left: 12px;
  margin-right: 7px;
  background: var(--color-secondary);
  color: var(--color-bg-dark);
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 7px 20px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-banner .cookie-btn:hover {
  background: #b09165;
  color: #F5F5F5;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  transition: background .13s, color .13s;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--color-secondary);
  color: #232931;
}
@media (max-width: 690px) {
  .cookie-banner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    font-size:.99rem;
    padding: 13px 9px 13px 10px;
  }
  .cookie-banner .cookie-btn {
    padding: 7px 14px;
    font-size: .98rem;
    margin: 4px 3px 0 0;
  }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(24,29,35,0.78);
  z-index: 10099;
  display:flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #232931;
  border-radius: var(--radius);
  box-shadow: 0 6px 48px -8px var(--color-shadow);
  padding: 36px 30px 30px 30px;
  max-width: 418px;
  width: 90vw;
  color: #F5F5F5;
  font-size: 1.02rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalFadeIn .33s cubic-bezier(.53,.21,.56,1);
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  font-size: 1.08rem;
  color: #F5F5F5;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: var(--color-secondary);
  border-radius: 13px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal .cookie-toggle:checked {
  background: #987f58;
}
.cookie-modal .cookie-toggle:before {
  content: "";
  display: block;
  width: 19px; height: 19px;
  background: #181D23;
  border-radius: 100%;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: left .17s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 18px;
  background: #e6d5b4;
}
.cookie-modal .cookie-btns {
  margin-top: 19px;
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 20px;
  background: none;
  border: none;
  color: #C6A97D;
  font-size: 2rem;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal .modal-close:hover {
  color: #F5F5F5;
}
@keyframes modalFadeIn {
  from {transform: scale(.93) translateY(30px); opacity: 0;}
  to {transform: scale(1) translateY(0); opacity: 1;}
}

/* ===== TYPOGRAPHY ENHANCEMENTS & BRAND ===== */
body, p, a, button, input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #F5F5F5;
}
h1,h2,h3,h4,h5,h6,.display {
  font-family: 'Merriweather', 'Roboto Slab', serif;
  color: #F5F5F5;
  font-weight: 700;
}
h1.display {
  font-size: 3rem;
}
.section h2 {
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  color: var(--color-secondary);
  font-size: 1.23rem;
}

/* ===== BUTTONS & INTERACTIVES ===== */
button, .btn, .cta-primary, .cta-secondary {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: .025em;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background .16s, color .18s, box-shadow .15s, border .18s, transform .13s;
  user-select: none;
}
.btn:active,
.cta-primary:active,
.cta-secondary:active {
  transform: scale(0.97);
}

/* ===== CARDS ===== */
.card {
  background: #232931;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px -8px var(--color-shadow);
  transition: box-shadow .17s, border .17s, transform .11s;
  margin-bottom: 20px;
}
.card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 7px 44px -10px var(--color-shadow);
  transform: translateY(-3px) scale(1.016);
}

/* ===== SECTION SPACING (MANDATORY) ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width:768px){
.section{padding:26px 8px;margin-bottom:40px;}
.text-image-section{flex-direction:column;gap:18px;align-items:stretch;}
}

/* ===== FORMS (for future use) ===== */
input, select, textarea {
  background: #24292e;
  border: 1px solid #333943;
  border-radius: 7px;
  padding: 10px 12px;
  color: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border .14s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-secondary);
}
label {
  font-size: 1rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
  display: inline-block;
  font-family: 'Merriweather', serif;
}

/* ===== MISCELLANEOUS ENHANCEMENTS ===== */
ul, ol { margin-bottom: 16px; }
.text-section {
  margin-bottom: 16px;
}
.text-section ul {
  list-style-type: disc;
  padding-left: 21px;
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 4px; font-size: 1.04rem;
}
/* quick-contact-link */
.quick-contact-link{
  margin-top:20px;
}
.quick-contact-link .cta-secondary{
  margin-top:8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.08rem; }
  .container { padding-left: 5px; padding-right: 5px; }
  .section { margin-bottom: 22px; padding: 14px 3px; }
  .feature-item, .reference-item { padding: 13px 10px 10px 10px; }
}

/* ===== SELECTION =====*/
::selection {
  background: #C6A97D;
  color: #181D23;
}

/* ===== SCROLLBAR STYLING ===== */
body::-webkit-scrollbar { width: 10px; background: #232931; }
body::-webkit-scrollbar-thumb { background: #C6A97D; border-radius: 10px; }

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