/* ===== 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F7FF;
  color: #1D2341;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== VARIABLES & BRAND COLORS ===== */
:root {
  --primary: #205FA8;
  --primary-dark: #16457b;
  --secondary: #F7F7FF;
  --secondary-alt: #FFFFFF;
  --accent: #FABC32;
  --accent-dark: #CA8B00;
  --text-primary: #1D2341;
  --text-secondary: #444b64;
  --shadow: 0 4px 18px rgba(28,42,89,0.09);
  --border-radius: 18px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--border-radius);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(28,42,89,0.17);
  transform: translateY(-4px) scale(1.015);
}

.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: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 24px 28px;
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(28,42,89,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary-alt);
  border-radius: var(--border-radius);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(26,60,115,0.06);
  transition: background 0.22s, box-shadow 0.2s;
}
.feature-item:hover {
  background: #F5F8FE;
  box-shadow: 0 6px 16px rgba(32,95,168,0.11);
}

/* =====================================
      TYPOGRAPHY (Modern Bold Aesthetic)
===================================== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 22px;
  line-height: 1.17;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
h1,h2,h3 {
  text-shadow: 0 2px 8px rgba(32,95,168,0.08);
}
p, li, span, ol, ul {
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 400;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}

ul, ol {
  margin-left: 0;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
/* Remove dot for some special icon lists */
.company-contact-details ul li:before,
.footer-contact span:before {
  display: none;
}

/* =====================================
      HEADER & NAVIGATION
===================================== */
header {
  background: var(--primary);
  box-shadow: 0 3px 16px rgba(32,95,168,0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: #fff;
  padding: 8px 0;
  position: relative;
  transition: color 0.18s;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent);
}
.cta-header {
  margin-left: 26px;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  box-shadow: 0 2px 10px rgba(250,188,50,0.13);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.17s;
}
.cta-header:hover,
.cta-header:focus {
  background: var(--accent-dark);
  color: #fff !important;
  transform: scale(1.04);
}

/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 101;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  padding: 12px 18px;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: background 0.21s;
}
.mobile-menu-toggle:active {
  background: var(--primary-dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(32,95,168,0.98);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px 28px 28px 28px;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.61, -0.18, 0.39, 1.28);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 20px;
  border-radius: 50%;
  line-height: 1;
  padding: 6px 16px 6px 12px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(250,188,50,0.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 16px 0 8px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  transition: color 0.18s, background 0.15s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(250,188,50,0.13);
}

@media (max-width: 1100px) {
  header .container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
@media (max-width: 860px) {
  header nav, .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================================
      HERO SECTION
===================================== */
.hero {
  background: linear-gradient(92deg, #205FA8 82%, #FABC32 100%);
  color: #fff;
  padding: 68px 0 54px 0;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
  box-shadow: 0 12px 48px rgba(32,95,168,0.13);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.hero .content-wrapper {
  max-width: 760px;
  text-align: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 0 5px 44px rgba(32,95,168,0.12);
}
.hero p {
  font-size: 1.19rem;
  color: #F7F7FF;
  margin-bottom: 30px;
}
.cta-main {
  display: inline-block;
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 14px 36px;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(250,188,50,0.13);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.23s;
}
.cta-main:hover, .cta-main:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
}

/* =====================================
      FEATURES SECTION
===================================== */
.features {
  background: #fff;
}
.features .content-wrapper {
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature-item h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

/* =====================================
      OFFER/ SERVICES / USP
===================================== */
.services .offer-grid,
.services .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.offer-teaser, .service-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 16px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.offer-teaser:hover, .service-item:hover {
  box-shadow: 0 8px 32px rgba(32,95,168,0.14);
  transform: translateY(-3px);
}
.cta-section {
  display: inline-block;
  margin-top: 22px;
  background: var(--primary);
  color: #fff;
  padding: 13px 36px;
  border-radius: 30px;
  font-size: 1.09rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(32,95,168,0.09);
  transition: background 0.18s, transform 0.19s;
}
.cta-section:hover, .cta-section:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.04);
}

/* =====================================
      TESTIMONIALS & REVIEW CARDS
===================================== */
.testimonials .testimonial-card {
  color: var(--text-primary);
  background: #fff;
}
.testimonial-card p {
  font-size: 1.14rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
}
.testimonial-rating img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 3px rgba(250,188,50,0.10));
}
.testimonial-author {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* =====================================
      TIMELINES, BADGES, ICONS
===================================== */
.history-timeline,
.trusted-by,
.upcoming-tours-overview,
.booking-tips,
.verification-process,
.review-policy,
.invite-to-review,
.privacy-policy-summary,
.user-rights,
.contact-for-privacy,
.gdpr-overview,
.data-processing-info,
.user-consent,
.cookies-intro,
.types-of-cookies,
.manage-cookies-instructions,
.terms-overview,
.user-obligations,
.legal-information {
  margin-bottom: 28px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(32,95,168,0.04);
  padding: 22px 18px 17px 18px;
}

.usp-icons, .trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.usp-icons img, .trust-badges img {
  width: 32px;
  height: 32px;
}
.usp-icons span, .trust-badges span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-dark);
  margin-right: 20px;
}

/* =====================================
      CONTACT PAGE SPECIAL BLOCKS
===================================== */
.company-contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.company-contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #F7F7FF;
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.07rem;
}
.company-contact-details li img {
  width: 26px;
  height: 26px;
}
.contact-map {
  margin-top: 18px;
  min-height: 120px;
}

.support-channels ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.business-hours {
  background: #F5F8FE;
  border-radius: 9px;
  padding: 12px 15px;
  margin: 18px 0;
  color: var(--primary);
  font-weight: 600;
}

/* =====================================
      FOOTER
===================================== */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding-top: 38px;
  padding-bottom: 22px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 7px rgba(255,255,255,0.11));
  transition: transform 0.13s;
  cursor: pointer;
}
.footer-social img:hover {
  transform: scale(1.11) rotate(-6deg);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-bottom: -2px;
}
.footer-legal {
  font-size: 0.97rem;
  color: #e2e8f6;
  margin-top: 10px;
}

/* =====================================
      RESPONSIVE DESIGN
===================================== */
@media (max-width: 1100px) {
  .feature-grid, .offer-grid, .service-categories {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .offer-grid, .service-categories {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 34px;
    padding: 22px 6px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 32px;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 2.05rem;
  }
  .services .offer-grid, .services .service-categories, .feature-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 14px;
  }
  .card, .testimonial-card, .feature-item, .offer-teaser, .service-item {
    padding: 16px 10px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .about .container, .features .container, .services .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  footer .container {
    gap: 12px;
    padding: 0 5px;
  }
  .footer-social {
    gap: 13px;
  }
}
@media (max-width: 520px) {
  .hero {
    padding-top: 28px;
    padding-bottom: 14px;
  }
  .hero h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .feature-item img,
  .usp-icons img,
  .trust-badges img {
    width: 26px;
    height: 26px;
  }
}

/* =====================================
      COOKIE BANNER & MODAL
===================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2999;
  background: #fff;
  border-top: 5px solid var(--primary);
  box-shadow: 0 -4px 36px rgba(32,95,168,0.13);
  padding: 23px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: transform 0.35s, opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-settings-btn,
.cookie-banner .cookie-accept-btn,
.cookie-banner .cookie-decline-btn {
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 22px;
  border: none;
  outline: none;
  padding: 10px 28px;
  margin: 0 2px;
  background: var(--primary);
  color: #fff;
  transition: background 0.16s, color 0.15s, transform 0.18s;
}
.cookie-banner .cookie-accept-btn {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-accept-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}
.cookie-banner .cookie-decline-btn {
  background: #eeeef7;
  color: var(--primary);
}
.cookie-banner .cookie-decline-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3999;
  left: 0; top: 0; right:0; bottom: 0;
  background: rgba(32,95,168,0.3);
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 34px 24px 26px 24px;
  max-width: 420px;
  width: 92vw;
  box-shadow: 0 8px 48px rgba(32,95,168,0.18);
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: cookie-pop 0.42s cubic-bezier(.81,-0.13,.22,1.18);
}
@keyframes cookie-pop {
  0% {transform: scale(0.8) translateY(110px); opacity:0.3;}
  80% {transform: scale(1.04) translateY(-6px); opacity:1;}
  100% {transform: scale(1) translateY(0);opacity:1;}
}
.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-left: 8px;
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 50%;
  transition: background 0.14s;
}
.cookie-modal-close:hover {
  background: #f5f8fe;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-size: 1.07rem;
  color: var(--text-primary);
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.cookie-category.essential label {
  font-weight: bold;
  color: var(--primary-dark);
}
.cookie-category.essential [type="checkbox"] {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .cookie-save-btn {
  background: var(--accent);
  color: var(--primary);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 700;
  padding: 8px 23px;
  border: none;
  margin-right: 6px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .cookie-save-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}
.cookie-modal .cookie-cancel-btn {
  background: #eeeeff;
  color: var(--primary);
  font-weight: 500;
  border-radius: 20px;
  font-size: 1rem;
  padding: 8px 19px;
  border: none;
  transition: background 0.12s;
}
.cookie-modal .cookie-cancel-btn:hover {
  background: #fabc32;
  color: var(--primary);
}
@media (max-width: 450px) {
  .cookie-modal {
    padding: 18px 6px 16px 6px;
  }
}

/* =====================================
      ANIMATIONS / MICRO-INTERACTIONS
===================================== */
.card, .feature-item, .testimonial-card, .offer-teaser, .service-item {
  transition: box-shadow 0.19s, transform 0.19s, background 0.17s;
}
.cta-main, .cta-header, .cta-section {
  transition: background 0.18s, color 0.16s, transform 0.17s;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  transition: transform 0.26s, background 0.15s, opacity 0.24s;
}

/* -------------------------------------
  UTILITIES & GENERAL
------------------------------------- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.rounded { border-radius: var(--border-radius); }
.shadow { box-shadow: var(--shadow); }
.mt-24 { margin-top: 24px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mr-8 { margin-right: 8px !important; }

/* =====================================
      A11Y: FOCUS STYLES
===================================== */
a:focus, button:focus, .cta-header:focus, .cta-main:focus, .cta-section:focus {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

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