/* =======================================================
   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 { line-height: 1.15; scroll-behavior: smooth; }
body { background: #FAF3EA; color: #291C12; }
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { background: none; border: none; cursor: pointer; }

/* =======================================================
   VINTAGE RETRO THEME VARIABLES & UTILITIES
   ======================================================= */
:root {
  --primary: #1A237E;
  --secondary: #1976D2;
  --accent: #F5F5F5;
  --vintage-bg: #FAF3EA;
  --vintage-cream: #FFF7E1;
  --vintage-brown: #6D4C41;
  --vintage-orange: #DB8743;
  --vintage-yellow: #FFE082;
  --vintage-red: #CA3B24;
  --vintage-green: #718355;
  --vintage-blue: #59637B;
  --card-border: #DFD0C1;
  --card-shadow: 0 3px 20px 0 rgba(41,28,18,0.08);
  --border-radius: 14px;
  --transition: all 0.2s cubic-bezier(.42,0,.3,1);
}

/* RETRO FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;600&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #291C12;
  background: var(--vintage-bg);
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
}
h1 { font-size: 2.2rem; margin-bottom: 24px; font-weight: 700; }
h2 { font-size: 1.5rem; margin-bottom: 18px; font-weight: 700; }
h3 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 600; color: var(--vintage-brown); }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }

p, ul, ol, li, .text-section p {
  font-family: 'Roboto', Arial, sans-serif;
  color: #38271F;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
strong { color: var(--vintage-brown); font-weight: 700; }

/* =======================================================
   SPACING & FLEX PATTERNS
   ======================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--border-radius);
}

.card-container, .feature-grid, .service-list, .team-member-list, .faq-list, .post-preview-list, .contact-infos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .testimonial-card, .text-section {
  margin-bottom: 20px;
  position: relative;
}
.text-section {
  background: var(--vintage-cream);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 8px 0 rgba(176,163,135,0.07);
  border: 1.5px solid var(--card-border);
  padding: 22px 20px;
  transition: var(--transition);
}
.text-section:hover {
  box-shadow: 0 6px 24px 0 rgba(192,152,110,0.15);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #FFF7E1;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 rgba(170, 93, 37,0.07);
  border: 1.5px solid var(--card-border);
  margin-bottom: 20px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 0 rgba(218, 135, 67,0.13);
  border-color: var(--vintage-orange);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card {
  background: #FFF7E1;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--card-border);
  transition: var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(218, 135, 67,0.12);
  border-color: var(--vintage-orange);
}
.rating-overview {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  margin-bottom: 10px;
  background: var(--vintage-yellow);
  border-radius: 10px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #38271F;
  box-shadow: 0 1px 8px 0 rgba(255,208,0,0.11);
}

/* Patterned backgrounds for classic retro feel (only to headline/hero sections) */
.hero, .cta {
  background: repeating-linear-gradient(135deg, #FFF7E1 0 29px, #FFE082 29px 58px);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 44px 0 rgba(229,191,95,0.08);
}

.trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-bottom: 0;
}
.trust ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--vintage-brown);
  background: #FFF7E1;
  border-radius: 9px;
  box-shadow: 0 2px 10px 0 rgba(250,195,105,0.07);
  padding: 12px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.trust ul img { width: 22px; height: 22px; filter: sepia(0.6) hue-rotate(-14deg) saturate(1.7); }

.section:last-child { margin-bottom: 0; }

/* Utility classes */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }

/* =======================================================
   NAVIGATION STYLES
   ======================================================= */
header {
  background: #FFF7E1;
  border-bottom: 2.5px solid var(--card-border);
  box-shadow: 0 6px 24px 0 rgba(170,93,37,0.05);
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
}
header img[alt="BriskTokens Rechtshilfe"] {
  width: 167px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.main-nav a {
  color: var(--primary);
  opacity: 0.97;
  padding: 8px 12px;
  border-radius: 7px;
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vintage-yellow);
  color: var(--vintage-red);
  box-shadow: 0 3px 14px 0 rgba(218, 135, 67, 0.09);
}

.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  background: var(--vintage-red);
  color: #FFF7E1;
  padding: 14px 32px;
  font-size: 1.06rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 3px 10px 0 rgba(202,59,36,0.13);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.05em;
  margin-left: 18px;
  display: inline-block;
  text-align: center;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--vintage-orange);
  color: var(--primary);
  box-shadow: 0 5px 20px 0 rgba(218, 135, 67,0.28);
}

/* Mobile burger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--vintage-brown);
  color: #fff;
  border-radius: 7px;
  padding: 9px 18px;
  font-size: 1.6rem;
  position: relative;
  z-index: 52;
  margin-left: 18px;
  transition: var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--vintage-orange);
  color: var(--vintage-brown);
}

/* Mobile nav panel */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF7E1;
  box-shadow: 0 0 80px 0 rgba(41,28,18,.13);
  z-index: 101;
  padding: 0 0 0 0;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(.37,1.48,.36,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--vintage-red);
  background: var(--vintage-yellow);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 30px 0 10px 22px;
  align-self: flex-start;
  box-shadow: 0 2px 10px 0 rgba(218, 135, 67, 0.11);
  transition: var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vintage-orange);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 0 0 48px;
  width: 100vw;
  height: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}
.mobile-nav a {
  color: var(--vintage-brown);
  padding: 10px 0;
  border-radius: 5px;
  font-weight: 700;
  transition: var(--transition);
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vintage-red);
  background: var(--vintage-yellow);
}

/* HIDE desktop nav on small screens */
@media (max-width: 992px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: #23180c;
  color: #FFF7E1;
  margin-top: 60px;
  border-top: 6px double #db8743;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  padding: 48px 18px 44px 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 170px;
}
.footer-nav a {
  color: #db8743;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 1px dashed #ffe082;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vintage-yellow);
  letter-spacing: 0.062em;
}
.contact-summary img {
  margin-bottom: 10px;
  width: 60px; height: 60px;
  border-radius: 12px;
  box-shadow: 0 2px 13px 0 rgba(229,191,95,0.16);
}
.contact-summary p, .contact-summary a {
  font-size: .97rem;
  color: #FFE082;
  line-height: 1.6;
  word-break: break-word;
}
.contact-summary a { color: #db8743; text-decoration: underline dotted; }
.contact-summary a:hover { color: #FFB300; }
.social-media-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.social-media-links img {
  width: 36px; height: 36px;
  border-radius: 30%;
  filter: sepia(.48) hue-rotate(-11deg) saturate(2.3);
  transition: filter .17s;
}
.social-media-links img:hover {
  filter: none;
}

/* =======================================================
   COMPONENTS: CARDS, FEATURES, NEWSLETTER
   ======================================================= */
.feature-grid, .service-list, .team-member-list, .faq-list, .post-preview-list, .contact-infos {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.feature-grid > div, .service-list > div, .faq-list > div, .team-member-list > div, .post-preview-list > div, .contact-infos > div {
  flex: 1 1 320px;
  min-width: 230px;
  background: #FFF7E1;
  border-radius: var(--border-radius);
  padding: 20px 18px;
  border: 1.5px solid var(--card-border);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.feature-grid > div:hover, .service-list > div:hover, .faq-list > div:hover, .team-member-list > div:hover, .post-preview-list > div:hover, .contact-infos > div:hover {
  border-color: var(--vintage-orange);
  box-shadow: 0 12px 40px 0 rgba(218, 135, 67,0.14);
  z-index: 2;
}
.feature-grid img, .contact-infos img, .team-member-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.legal-expertise {
  margin-top: 28px;
  padding: 18px 0 0 0;
}
.legal-expertise h3 {
  color: var(--vintage-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.legal-expertise ul {
  list-style: square inside;
  font-size: 1rem;
}
.credentials-highlight {
  background: var(--vintage-yellow);
  border-radius: 9px;
  margin-top: 32px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px 0 rgba(255,208,0,0.09);
}
.credentials-highlight h3 {
  color: var(--vintage-red);
  margin-bottom: 10px;
}

.newsletter-benefits ul {
  list-style: disc inside;
  font-size: 1rem;
}

.article-categories {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 16px;
  font-size: 1rem;
  color: var(--vintage-blue);
  letter-spacing: 0.08em;
}
.article-categories span {
  background: var(--vintage-yellow);
  color: var(--vintage-brown);
  border-radius: 6px;
  padding: 2px 12px;
}

/* Links */
a {
  color: var(--primary);
  text-underline-position: under;
  position: relative;
}
a:focus, a:hover {
  color: var(--vintage-red);
  text-decoration: underline wavy 2px var(--vintage-orange);
}

/* Lists */
ul, ol {
  margin: 0 0 20px 0;
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 9px;
  font-size: 1rem;
}
ol {
  list-style: decimal inside;
}

/* Inputs/Forms */
input, textarea, select {
  border-radius: 6px;
  border: 1.5px solid var(--card-border);
  padding: 9px 14px;
  font-size: 1rem;
  background: #FFF7E1;
  transition: border-color .16s;
  margin-bottom: 15px;
  width: 100%;
  font-family: 'Roboto', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--vintage-orange);
}

/* =======================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 4000;
  background: #FFF7E1;
  box-shadow: 0 -1px 32px 0 rgba(218, 135, 67, 0.16);
  border-top: 4px solid var(--vintage-orange);
  padding: 24px 16px 19px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.4,1.33,.5,1.01);
}
@keyframes cookieBannerSlideIn {
  0% { transform: translateY(90px); opacity: 0; }
  60% { transform: translateY(-8px); opacity: .6; }
  75% { transform: translateY(5px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #38271F;
  font-size: 1rem;
  margin: 0 0 0 0;
  flex: 1 1 auto;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
}
.cookie-banner button, .cookie-modal button {
  background: var(--vintage-orange);
  color: var(--vintage-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 10px 20px;
  margin-right: 0;
  margin-bottom: 0;
  transition: var(--transition);
  box-shadow: 0 2px 12px 0 rgba(218, 135, 67,0.11);
}
.cookie-banner button:hover, .cookie-modal button:hover {
  background: var(--vintage-red);
  color: #FFF7E1;
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary);
  color: #FFF7E1;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--vintage-brown);
  color: var(--vintage-yellow);
}
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0; top: 0;
  background: rgba(40,27,18, 0.66);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.27s ease;
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF7E1;
  border-radius: 16px;
  box-shadow: 0 7px 48px 0 rgba(218, 135, 67,0.22);
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  border: 3px solid var(--vintage-orange);
}
.cookie-modal-content h2 {
  color: var(--vintage-brown);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--vintage-orange);
  width: 20px; height: 20px;
}
.cookie-modal-content .modal-btn-row {
  display: flex; gap: 14px; margin-top: 12px;
}
.cookie-modal-close {
  position: absolute; right: 22px; top: 18px;
  font-size: 1.7rem;
  color: var(--vintage-red);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-modal-close:hover { background: var(--vintage-yellow); }
.cookie-modal-content label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--vintage-brown);
}
.cookie-category .cookie-essential {
  color: var(--vintage-green);
  font-size: 1.08rem;
  font-weight: 700;
}

/* =======================================================
   RESPONSIVE DESIGN: MOBILE-FIRST UP TO DESKTOP
   ======================================================= */
@media (max-width: 992px) {
  .container { max-width: 100vw; padding: 0 8px; }
  header .container {
    flex-direction: row;
    gap: 7px;
    padding: 14px 5px;
  }
  .content-wrapper, .feature-grid, .service-list, .team-member-list, .faq-list, .post-preview-list, .contact-infos {
    gap: 20px;
  }
  .card, .testimonial-card, .text-section {
    padding: 15px 13px;
    margin-bottom: 16px;
  }
  .section, section {
    padding: 32px 7px;
    margin-bottom: 40px;
  }
  footer .container {
    flex-direction: column;
    gap: 32px;
    padding: 30px 8px 26px 8px;
    align-items: flex-start;
  }
  .footer-nav {
    min-width: 116px;
  }
  header img[alt="BriskTokens Rechtshilfe"] {
    width: 124px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 2px; }
  header .container { flex-direction: row; gap: 5px; }
  .content-wrapper { gap: 15px; }
  h1 { font-size: 1.28rem; margin-bottom: 19px; }
  h2 { font-size: 1.13rem; margin-bottom: 13px; }
  h3 { font-size: 1rem; }
  .section, section { margin-bottom: 33px; padding: 16px 2px; }
  .feature-grid, .service-list, .team-member-list, .faq-list, .post-preview-list, .contact-infos {
    flex-direction: column;
    gap: 12px;
  }
  .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 13px !important;
  }
  .card, .testimonial-card, .text-section {
    margin-bottom: 12px;
    padding: 9px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 13px 3px 11px 6px; }
}

/* ensure minimum margin between cards/sections */
.feature-grid > *, .service-list > *, .team-member-list > *, .faq-list > *, .post-preview-list > *, .contact-infos > * {
  margin-bottom: 20px;
}
.content-grid > *, .text-image-section > * {
  margin-bottom: 0;
}

/* =======================================================
   HOVER EFFECTS, SHADOWS, RETRO TRANSITIONS
   ======================================================= */
.card, .testimonial-card, .text-section, .feature-grid > div, .service-list > div, .team-member-list > div, .faq-list > div, .post-preview-list > div {
  transition: box-shadow .16s cubic-bezier(.57,1.26,.76,0.98), border-color .2s cubic-bezier(.59,1.07,0.33,1.01);
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(218, 135, 67,0.19);
  border-color: var(--vintage-orange);
  z-index: 2;
}
.btn-primary {
  transition: background-color .18s, color .14s, box-shadow .18s, outline-color .14s;
}
.btn-primary:active {
  outline: 2px dotted var(--vintage-red);
}

/* Micro-interactions: underline on link hover */
a {
  position: relative;
  transition: color 0.17s;
}
a:hover:after,
a:focus:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: var(--vintage-orange);
  border-radius: 2px;
  transition: background .13s;
}

/* Visual indicators for selected/clicked nav */
.main-nav a.active, .mobile-nav a.active {
  color: var(--vintage-red) !important;
  background: var(--vintage-yellow);
  font-weight: bold;
}

/* =======================================================
   MODAL/BANNER Z-INDEX SAFETY
   ======================================================= */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 400;
}

/* =======================================================
   SPECIAL RETRO/NOSTALGIC ELEMENTS
   ======================================================= */
.hero h1, .cta h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.13em;
  color: var(--vintage-red);
  text-shadow: 0 2px 0 #ffe082, 0 3px 2px #db874352;
  border-bottom: 3px dotted var(--vintage-orange);
  padding-bottom: 9px;
  margin-bottom: 18px;
}
.hero p, .cta p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--primary);
}
.btn-primary {
  box-shadow: 0 3px 0 0 #ffe082, 0 5px 20px 0 rgba(218, 135, 67,0.11);
  border-bottom: 3px solid var(--vintage-brown);
  letter-spacing: 0.13em;
}

/* Patterned lines under headlines (classic style) */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  height: 4px;
  width: 42px;
  background: var(--vintage-orange);
  border-radius: 3px;
  margin-top: 6px;
}

/* FAQ retro icon */
.faq-list .text-section h2::before {
  content: '\2753'; /* Unicode for question mark bubble */
  font-size: 1.25em;
  color: var(--vintage-orange);
  margin-right: 12px;
}

/* =======================================================
   PRINT STYLES FOR RETRO BUSINESS LOOK
   ======================================================= */
@media print {
  body, .container, .section, section { background: #fff !important; color: #291C12 !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  a:after, h2:after, h3:after { display: none !important; }
}

/* =================== END OF CSS =================== */
