/* =========================================================
   CSS RESET & BASE 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; }
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #28373c;
  background: #F8F8F5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; border: none; }
a { color: #22627a; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #a3611e; }
ul, ol { list-style: none; }
strong, b { font-weight: 700; }

/* =========================================================
   TYPOGRAPHY SCALE
========================================================= */
h1, .h1 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 2.7rem; line-height: 1.1; font-weight: 700; color: #22627A; margin-bottom: 24px; letter-spacing: -1px; }
h2, .h2 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 2rem; line-height: 1.2; font-weight: 600; color: #22627A; margin-bottom: 20px; }
h3, .h3 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.25rem; line-height: 1.3; font-weight: 600; color: #90581b; margin-bottom: 14px; }
h4, .h4 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-size: 1.1rem; font-weight: 500; color: #22627A; margin-bottom: 12px; }
p, ul, ol, blockquote, .snippet { font-size: 1rem; color: #28373c; margin-bottom: 16px; }
ul, ol { margin-bottom: 16px; }
blockquote {
  margin: 24px 0 16px 0;
  padding: 16px 24px;
  background: #f7ecd6;
  border-left: 4px solid #f2b95a;
  border-radius: 12px;
  font-style: italic;
  color: #79511a;
}

.expert-quote {
  display: block;
  font-style: normal;
  margin-top: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #22627a;
}

.snippet {
  font-style: italic;
  color: #b77c13;
}

/*****************************************************
  LAYOUT CONTAINERS
*****************************************************/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  justify-content: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 1px 16px 0 rgba(224,173,98,0.10);
  display: flex;
  flex-direction: column;
}

/*****************************************************
  HEADER & NAVIGATION
*****************************************************/
header {
  background: #F8F8F5;
  box-shadow: 0 4px 14px 0 rgba(224,173,98,0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
header img {
  height: 48px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  padding: 9px 12px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #22627A;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f7ecd6;
  color: #b77c13;
}
.cta-primary {
  background: #F2B95A;
  color: #22627A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 12px 0 rgba(231,186,106,0.15);
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-left: 18px;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #22627A;
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(231,186,106,0.25);
}
.cta-secondary {
  background: #fff6e4;
  color: #22627A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid #f2b95a;
  border-radius: 22px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.16s, color .16s, border .16s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #f2b95a;
  color: #22627A;
  border-color: #22627A;
}

/* Mobile burger button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #22627a;
  cursor: pointer;
  margin-left: 14px;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #b77c13;
}

/*****************************************************
  MOBILE NAVIGATION OVERLAY
*****************************************************/
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 100vw rgba(34,98,122,0.11);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.72,.04,.37,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #22627a;
  align-self: flex-end;
  margin: 32px 32px 24px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #b77c13;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: center;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22627A;
  background: #f7ecd6;
  border-radius: 18px;
  padding: 15px 28px;
  margin: 0 auto;
  width: 80%;
  text-align: center;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 1px 10px 0 rgba(224,173,98,0.04);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f2b95a;
  color: #fff;
}

/*****************************************************
  HERO SECTION
*****************************************************/
.hero {
  background: radial-gradient(ellipse at bottom left, #f2b95a 29%, #fdf8ed 68%);
  padding-top: 44px;
  padding-bottom: 44px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 14px 38px 0 rgba(195,137,48,0.09);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 610px;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.hero h1 {
  margin-bottom: 12px;
  font-size: 2.4rem;
  color: #22627A;
}
.hero p {
  font-size: 1.22rem;
  color: #704d13;
  margin-bottom: 24px;
}

/*****************************************************
  GRIDS & FLEX ARRANGEMENTS
*****************************************************/
/* Feature grid / Angebote preview cards */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 8px;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 290px;
  background: #fff6e4;
  border-radius: 22px;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 2px 16px 0 rgba(235,188,98,0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 9px 38px 0 rgba(235,188,98,0.18);
  transform: translateY(-4px) scale(1.034);
}
.feature-grid img {
  height: 46px;
  width: 46px;
  margin-bottom: 6px;
}

/*****************************************************
  CARDS & CONTENT FLEX
*****************************************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(224,173,98,0.09);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(224,173,98,0.20);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*****************************************************
   BATCHES, ITINERARY, HIGHLIGHT ELEMENTS
*****************************************************/
.itinerary-highlight, .dest-highlight {
  background: #f2b95a;
  color: #22627A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 18px;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 4px;
}

/*****************************************************
   ABOUT US FLEX/ICON
*****************************************************/
.about-flex {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.about-icon {
  height: 72px;
  width: 72px;
}

/*****************************************************
   TESTIMONIAL CARDS/SLIDER
*****************************************************/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.testimonial-card {
  background: #fffcf8;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(224,173,98,0.12);
  padding: 20px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 410px;
  min-width: 225px;
  transition: box-shadow 0.17s, transform 0.17s;
  color: #28373c;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(235,188,98,0.16);
  transform: translateY(-2px) scale(1.017);
}
.testimonial-card p {
  color: #28373c;
  font-size: 1.11rem;
  margin-bottom: 5px;
}
.testimonial-person {
  font-size: 1rem;
  color: #b77c13;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.star-rating img { height: 22px; width: 22px; }

/*****************************************************
   CTA BANNER
*****************************************************/
.cta-banner {
  background: #22627A;
  border-radius: 32px;
  margin: 40px 0 60px 0;
  box-shadow: 0 2px 32px 0 rgba(34,98,122,0.14);
}
.cta-banner .container {
  align-items: center;
  justify-content: center;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  letter-spacing: 0.01em;
}
.cta-banner .cta-primary {
  background: #f2b95a;
  color: #22627A;
}
.cta-banner .cta-primary:hover, .cta-banner .cta-primary:focus {
  background: #fff;
  color: #22627A;
  border: 2px solid #22627A;
}

/*****************************************************
   USP/Benefit sections (from reiseangebote)
*****************************************************/
.usp-section {
  background: #fff6e4;
  border-radius: 22px;
  padding: 36px 20px;
  margin-bottom: 60px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
  margin-left: 10px;
}
.usp-icons {
  display: flex;
  gap: 22px;
  margin-bottom: 20px;
}
.usp-icons img {
  height: 38px;
  width: 38px;
}

/*****************************************************
   SPECIAL LISTS (tipps-inspiration + gallery)
*****************************************************/
.tip-list, .gallery-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.tip-list li, .gallery-list > div, .service-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(224,173,98,0.07);
  padding: 16px 18px 16px 18px;
  flex: 1 1 220px;
  min-width: 205px;
  max-width: 325px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tip-list li img { height: 21px; width: 21px; margin-right: 9px; vertical-align: middle; }

/*****************************************************
   TRUST BADGES
*****************************************************/
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.trust-badges span {
  display: flex;
  align-items: center;
  background: #fff6e4;
  border-radius: 16px;
  padding: 10px 16px 10px 10px;
  color: #b77c13;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
}
.trust-badges img {
  height: 28px;
  width: 28px;
}

/*****************************************************
   CONTACT + MAP + ADDRESS
*****************************************************/
.contact-details, .contact-info, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  color: #28373c;
  font-size: 1rem;
  line-height: 1.6;
}
.contact-details img, .contact-info img, .footer-contact img {
  height: 22px;
  width: 22px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
.opening-hours {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: #90581b;
}
.address-text {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin: 10px 0;
  color: #28373c;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
}
.map-embed img {
  height: 52px;
  width: 52px;
}

/*****************************************************
   FOOTER
*****************************************************/
footer {
  background: #22627A;
  color: #fff;
  border-radius: 32px 32px 0 0;
  padding: 36px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  gap: 22px;
}
.footer-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-menu a {
  color: #fff6e4;
  opacity: 0.85;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s, opacity 0.15s;
  border-radius: 16px;
  padding: 6px 13px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #f2b95a;
  opacity: 1;
}
.footer-contact {
  color: #f2b95a;
  font-size: 0.97rem;
  gap: 6px;
  align-items: flex-start;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.footer-brand {
  margin-top: 14px;
  color: #fff6e4;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-align: center;
  opacity: 0.84;
}

/*****************************************************
   FORMS (if any, for possible expansion)
*****************************************************/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}
input, textarea, select {
  border-radius: 14px;
  border: 1px solid #d0c0a6;
  padding: 10px 16px;
  margin-bottom: 16px;
  background: #fff;
  color: #28373c;
  outline: none;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #f2b95a;
}
button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*****************************************************
   MICRO-INTERACTIONS & TRANSITIONS
*****************************************************/
a, button, .cta-primary, .cta-secondary, .footer-menu a, .main-nav a, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.17s, transform 0.14s;
}

/*****************************************************
   COOKIE CONSENT BANNER
*****************************************************/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 16000;
  background: #fff6e4;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 18px 0 rgba(224,173,98,0.14);
  padding: 22px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 98%;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: opacity 0.3s, transform 0.22s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner-text {
  font-size: 1rem;
  color: #90581b;
  text-align: center;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-consent-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 10px 22px;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  box-shadow: 0 1px 10px 0 rgba(224,173,98,0.06);
}
.cookie-accept {
  background: #f2b95a;
  color: #22627A;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #22627a;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #90581b;
  border: 2px solid #f2b95a;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f2b95a;
  color: #22627a;
}
.cookie-settings {
  background: #fff6e4;
  color: #b77c13;
  border: 2px solid #f8f8f5;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #fff;
  color: #22627a;
}

/***********************
  COOKIE MODAL
************************/
.cookie-modal-bg {
  position: fixed;
  z-index: 16100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,98,122,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal-bg.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 10px 50px 0 rgba(224,173,98,0.20);
  min-width: 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  animation: fadeInCookieModal 0.23s cubic-bezier(.6,.07,.42,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: scale(0.90); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.34rem;
  color: #22627a;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  cursor: pointer;
}
.cookie-modal-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #f8f8f5;
  border: 1.5px solid #f2b95a;
  border-radius: 20px;
  position: relative;
  outline: none;
  transition: background 0.16s, border 0.16s;
  cursor: pointer;
}
.cookie-modal-toggle:checked {
  background: #f2b95a;
  border-color: #f2b95a;
}
.cookie-modal-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-modal-toggle:checked:before {
  left: 17px;
}
.cookie-modal .cookie-note {
  color: #90581b;
  font-size: 0.97rem;
  font-style: italic;
  margin-bottom: 10px;
}
.cookie-modal .cookie-action-row {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject,
.cookie-modal .cookie-settings {
  margin: 0;
}
.cookie-modal .cookie-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #b77c13;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #22627a;
}

/*****************************************************
   RESPONSIVE STYLES (MOBILE FIRST)
*****************************************************/
@media (max-width: 1000px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid > div, .gallery-list > div, .service-list > div {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding-left: 10px; padding-right: 10px; }
  .section { padding: 32px 6px; }
  .cta-banner, .usp-section, footer { border-radius: 18px; }
  .feature-grid {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-grid > div { min-width: 170px; }
  .tip-list, .gallery-list, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  header .container { flex-direction: row; gap: 10px; }
  .about-flex { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 768px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-menu {
    flex-direction: column;
    gap: 11px;
    align-items: center;
  }
  .cta-banner .content-wrapper { padding: 0; }
}

@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  .section { padding: 18px 2px; }
  .breadcrumb, .trust-badges { gap: 10px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .hero { padding-top: 22px; padding-bottom: 22px; }
  .cookie-consent-banner { padding: 18px 8px; font-size: 0.92rem; }
}

/*****************************************************
   UTILS: FLEX LAYOUT HELPERS
*****************************************************/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/*****************************************************
   MISC. VISUALS/DECORATIONS
*****************************************************/
::-webkit-scrollbar {
  width: 12px;
  background: #f8f8f5;
}
::-webkit-scrollbar-thumb {
  background: #f2b95a;
  border-radius: 8px;
}

/*****************************************************
   FLEXBOX FEATURE ITEM
*****************************************************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*****************************************************
  Z-INDEX LAYERING & NO ABSOLUTE ON CONTENT
*****************************************************/
/* All card/content alignments are via flex – absolutely positioned elements only for non-interactive decoration (none used here). */

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