/* ==== 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* ==== FONT AND GLOBAL STYLE ==== */
:root {
  --primary: #285173;
  --primary-dark: #234763;
  --secondary: #DABE8A;
  --secondary-dark: #bfa05e;
  --accent: #ffffff;
  --muted-bg: #F7F3EE;
  --border-color: #e0dec9;
  --text-color: #222226;
  --text-light: #5C5C60;
  --font-display: "Montserrat", "Georgia", serif;
  --font-body: "Roboto", "Georgia", serif;
}
html, body {
  height: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--muted-bg);
  color: var(--text-color);
  line-height: 1.666;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: common-ligatures;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
h4, h5, h6 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 7px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: var(--font-body);
  color: var(--text-light);
}
ul, ol {
  margin-bottom: 18px;
}
strong, b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary-dark);
}
.text-section {
  margin-bottom: 24px;
}
.text-section h3 {
  margin-top: 12px;
}

/* ==== CONTAINER & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 rgba(40, 81, 115, 0.04);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

/* ==== HEADER ==== */
header {
  background: var(--accent);
  box-shadow: 0 2px 24px 0 rgba(40, 81, 115, 0.03);
  position: sticky;
  z-index: 40;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 19px;
  align-items: center;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: var(--primary-dark);
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-button {
  font-family: var(--font-display);
  background: var(--secondary);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 30px;
  border-radius: 32px;
  box-shadow: 0 2px 12px 0 rgba(40,81,115,0.06);
  border: 1px solid var(--secondary-dark);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 20px 0 rgba(40,81,115,0.11);
  border-color: var(--primary-dark);
}
.cta-button-small {
  font-size: 0.98rem;
  font-family: var(--font-display);
  background: var(--primary);
  color: var(--accent);
  padding: 9px 20px;
  border-radius: 28px;
  margin-top: 5px;
  font-weight: 600;
  border: 1px solid var(--primary-dark);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.cta-button-small:hover, .cta-button-small:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary-dark);
}
button, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background 0.2s;
  z-index: 99;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary-dark);
  color: var(--primary-dark);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--accent);
  box-shadow: 0 4px 32px rgba(40,81,115,0.07);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.8,.1,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(40, 81, 115, .07);
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: var(--secondary-dark);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 80px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--primary-dark);
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 1050px) {
  .container {
    max-width: 92vw;
  }
}

@media (max-width: 900px) {
  nav.main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
  header .container {
    gap: 8px;
  }
  .cta-button{
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  nav.main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: var(--primary);
  color: var(--accent);
  padding: 64px 0 60px 0;
  display: flex;
  align-items: center;
  min-height: 280px;
  box-shadow: 0 6px 40px rgba(40, 81, 115, 0.06);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  gap: 15px;
}
.hero h1, .hero h2, .hero p {
  color: var(--accent);
  text-shadow: 0 3px 12px rgba(34,34,38,0.09);
}
.hero h1 {
  font-size: 2.6rem;
}
.hero h2 {
  font-weight: 400;
  font-size: 1.3rem;
}
.hero .cta-button {
  margin-top: 22px;
}
@media (max-width: 550px) {
  .hero {
    padding: 38px 0 32px 0;
    min-height: 170px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero h2 {
    font-size: 1rem;
  }
}

/* ==== FEATURES SECTION (e.g. .feature-grid) ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 0 0;
}
.feature-card {
  background: var(--muted-bg);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(226,201,156,0.11);
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 270px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.18s;
}
.feature-card img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
}
.feature-card h3 {
  font-size: 1.19rem;
  color: var(--primary);
}
.feature-card p {
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.feature-card:hover {
  box-shadow: 0 4px 30px 0 rgba(40,81,115, 0.09);
  border-color: var(--secondary-dark);
}

/* ==== SERVICES / TOUR LISTINGS ==== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  background: var(--accent);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(40,81,115,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 18px;
  flex: 1 1 270px;
  min-width: 210px;
  max-width: 340px;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.17s;
}
.service-item h3 {
  font-size: 1.13rem;
}
.service-item .price {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--primary);
}
.service-item .cta-button-small {
  align-self: flex-start;
}
.service-item:hover {
  box-shadow: 0 6px 30px 0 rgba(218, 190, 138, 0.13);
  border-color: var(--secondary-dark);
  z-index: 3;
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--accent);
  border: 1.6px solid var(--secondary);
  border-radius: 18px;
  padding: 26px 30px 20px;
  box-shadow: 0 2px 24px 0 rgba(40,81,115,0.06);
  color: var(--text-color) !important;
  min-width: 270px;
  max-width: 370px;
  gap: 14px;
}
.testimonial-card p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--primary-dark);
  margin-bottom: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--secondary-dark);
}
.star-rating {
  color: #FFC43A;
  font-size: 1.08rem;
  letter-spacing: 2px;
}

/* ==== CARDS, SECTION, AND LISTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(40,81,115,0.07);
  transition: box-shadow 0.16s, border-color 0.16s;
}
.card:hover {
  box-shadow: 0 6px 40px 0 rgba(40,81,115,0.12);
  border-color: var(--secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 18px 20px 18px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.highlights-list, .hidden-gems-list {
  margin: 18px 0 18px 0;
  padding-left: 1.2em;
  font-size: 1rem;
  color: var(--primary-dark);
}

/* ==== TOUR FEATURES ==== */
.tour-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tour-features li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--muted-bg);
  padding: 11px 14px;
  border-radius: 11px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
}
.tour-features li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ==== CONTACT SECTION ==== */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.address-details, .contact-details, .hours-details {
  background: var(--muted-bg);
  border-radius: 11px;
  padding: 18px 21px;
  border: 1px solid var(--border-color);
  min-width: 190px;
  flex: 1 1 220px;
}
.contact-details img, .address-details img, .hours-details img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 20px 0;
  width: 100%;
  margin-top: 62px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
footer a:hover, footer a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
  font-size: 1rem;
}
.contact-info p {
  font-size: 0.98rem;
  color: var(--secondary);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-copy {
  color: var(--accent);
  font-size: 0.92rem;
  margin-top: 16px;
}
footer img {
  height: 40px;
  margin-bottom: 12px;
}

/* ===== COOKIE BANNER & MODAL ===== */
.cookie-consent-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--accent);
  color: var(--text-color);
  box-shadow: 0 2px 40px 0 rgba(40,81,115,0.14);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px 32px 16px 22px;
  z-index: 9000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  animation: cookie-fade-in 0.7s cubic-bezier(.8,.5,.19,1.1) 1;
}
@keyframes cookie-fade-in {
  from {opacity: 0; transform: translateY(32px);}
  to {opacity: 1; transform: none;}
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: var(--text-light);
}
.cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 24px;
  padding: 9px 20px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
}
.cookie-actions .cookie-settings-btn {
  background: var(--muted-bg);
  color: var(--primary-dark);
  border-color: var(--border-color);
}
.cookie-actions .cookie-settings-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-actions .accept {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary-dark);
}
.cookie-actions .accept:hover {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-actions .reject {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1.6px solid var(--secondary-dark);
}
.cookie-actions .reject:hover {
  background: #f4ebd4;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9100;
  background: rgba(40,81,115, 0.13);
  align-items: center;
  justify-content: center;
  animation: fade-in 0.23s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 6px 48px rgba(40,81,115,0.23);
  padding: 36px 32px 24px 32px;
  min-width: 300px;
  max-width: 95vw;
  border: 1.5px solid var(--secondary);
  position: relative;
  animation: pop-in 0.27s cubic-bezier(.7,.1,.2,1.2);
}
@keyframes pop-in {
  from { transform: scale(0.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 11px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.4rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal .modal-close:hover {
  background: var(--secondary-dark);
  color: var(--primary-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.cookie-category .toggle {
  min-width: 50px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Toggle Switch (custom) */
.toggle-switch {
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #e5e1d0;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-switch.enabled {
  background: var(--secondary);
}
.toggle-switch .toggle-knob {
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  transition: left 0.2s, background 0.2s;
}
.toggle-switch.enabled .toggle-knob {
  left: 23px;
  background: var(--secondary-dark);
}
.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--secondary);
  border: 1.3px solid var(--secondary-dark);
  color: var(--primary);
  transition: background 0.2s;
}
.cookie-modal .modal-actions .cancel {
  background: var(--muted-bg);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
}
.cookie-modal .modal-actions .save {
  background: var(--primary);
  color: var(--accent);
  border: 1.2px solid var(--primary-dark);
}

/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 960px) {
  .feature-grid, .services-list, .testimonials, .content-grid, .card-container, .contact-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card, .service-item, .testimonial-card, .address-details, .contact-details, .hours-details {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 99vw;
    padding-right: 7px;
    padding-left: 7px;
  }
  .hero {
    padding: 30px 0;
  }
  .section {
    padding: 22px 7px;
    margin-bottom: 36px;
  }
  .testimonials {
    gap: 14px;
  }
}
@media (max-width: 599px) {
  .footer-nav, .contact-info {
    font-size: 0.94rem;
  }
  .footer-copy {
    font-size: 0.88rem;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 14px 8px 10px 10px;
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-actions {
    gap: 8px;
  }
  .cookie-modal {
    padding: 14px 7px 12px 7px;
  }
}

@media (max-width: 768px) {
  .text-image-section, .content-grid, .feature-grid, .services-list, .testimonials, .card-container, .contact-section {
    flex-direction: column !important;
    gap: 18px !important;
    flex-wrap: wrap;
    align-items: stretch;
  }
}
/***** For extra small screens *****/
@media (max-width: 420px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.05rem; }
  .hero h2 { font-size: .98rem; }
  .cta-button, .cta-button-small {
    font-size: .98rem;
    padding: 10px 10px;
  }
}

/* ==== MICRO INTERACTIONS ==== */
.card, .feature-card, .service-item, .testimonial-card {
  transition: box-shadow 0.16s, border-color 0.17s, transform 0.15s;
}
.card:hover, .feature-card:hover, .service-item:hover {
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.cta-button, .cta-button-small, .cookie-actions button, .cookie-modal .modal-actions button {
  transition: background 0.18s, color 0.17s, box-shadow 0.16s, border-color 0.13s, transform 0.13s;
}
.cta-button:active, .cta-button-small:active {
  transform: scale(0.97);
}
.mobile-menu {
  will-change: transform, opacity;
}
.mobile-menu.open {
  /* already transitioned above */
}
.mobile-menu-close:active,
.cookie-modal .modal-close:active {
  transform: scale(0.96) rotate(-10deg);
}

/* ==== ACCESSIBILITY & FOCUS ==== */
a:focus,
button:focus,
.main-nav a:focus,
.mobile-nav a:focus,
.cta-button:focus,
.cta-button-small:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  background: var(--secondary);
  color: var(--primary);
}

/* ==== UTILITIES & SPACING ==== */
.mt-4 { margin-top: 32px; } .mt-3 { margin-top: 24px; }
.mb-4 { margin-bottom: 32px; } .mb-3 { margin-bottom: 24px; }
.pt-4 { padding-top: 32px; } .pb-4 { padding-bottom: 32px; }
.text-center { text-align: center; }

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