/* ============================================================
   RESET & NORMALIZE (simple modern reset for best ux)
   ============================================================ */
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;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #232321;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
*:focus {
  outline: 2px solid #bfa464;
  outline-offset: 2px;
}

/* ============================================================
   FONTS (Luxury-Premium)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #265D3B;
  --color-secondary: #4472A5;
  --color-accent: #F4E7CE;
  --color-background: #fff;
  --color-surface: #f6f5f2;
  --color-gold: #bfa464;
  --color-gold-dark: #8d7536;
  --color-border: #ece8e2;
  --color-text: #232321;
  --color-muted: #777;
  --shadow-soft: 0 4px 18px 0 rgba(40,34,26,0.06);
  --radius-xl: 24px;
  --radius-l: 16px;
  --radius-m: 10px;
  --radius-s: 6px;
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --z-mobilemenu: 1000;
  --z-cookie: 1200;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.18;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.22;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.section h3 {
  margin-bottom: 12px;
}
p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
strong {
  font-weight: 600;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.1rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}

/* ============================================================
   LUXURY PREMIUM CORE COLORS & UTILITY CLASSES
   ============================================================ */
.bg-gold {
  background: var(--color-gold);
  color: #fff;
}
.text-gold {
  color: var(--color-gold);
}
.bg-accent {
  background: var(--color-accent);
  color: var(--color-primary);
}
.text-secondary {
  color: var(--color-secondary);
}
.text-muted {
  color: var(--color-muted);
}

/* Gold Underline for Luxury Effect */
.lux-underline {
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
}

/* ============================================================
   CONTAINER & SPACING
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: var(--color-background);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* Elevation for premium feel */
.elevation {
  box-shadow: 0 8px 32px 0 rgba(191, 164, 100, 0.09);
}

/* ============================================================
   HEADER & NAVIGATION (Desktop & Mobile)
   ============================================================ */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(40,34,26,.06);
  position: relative;
  z-index: 5;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 76px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 40px;
  width: auto;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  padding: 6px 2px;
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width .18s;
  margin: 2px auto 0 auto;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-gold);
}
header nav a:hover::after,
header nav a:focus::after {
  width: 100%;
}
.primary-cta {
  background: var(--color-gold);
  color: #fff;
  border-radius: var(--radius-m);
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(191, 164, 100, 0.14);
  transition: background .2s, box-shadow .2s, color .2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  letter-spacing: .03em;
  text-align: center;
  vertical-align: middle;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--color-gold-dark);
  color: #fffbcf;
  box-shadow: 0 6px 16px 0 rgba(70,60,25,0.17);
}

/* Mobile Burger Icon */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gold);
  padding: 8px 16px;
  cursor: pointer;
  display: none;
  margin-left: 8px;
  z-index: var(--z-mobilemenu);
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================================
   MOBILE SLIDE MENU / OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 340px;
  height: 100%;
  background: #fff;
  box-shadow: -6px 0 32px 0 rgba(40,34,26,0.18);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.8,0,.4,1);
  z-index: var(--z-mobilemenu);
  display: flex;
  flex-direction: column;
  padding: 22px 28px 32px 18px;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 12px;
  transition: color .2s;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-gold-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 8px 2px;
  border-radius: var(--radius-s);
  transition: color .18s, background .15s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--color-gold);
}
@media (max-width: 440px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding-right: 8px;
  }
}

/* Background overlay for mobile menu (optional, if needed)
.mobile-menu.open::before {
  content: '';
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,36,30,.18);
  z-index: -1;
}*/

/* Prevent background scroll when mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ============================================================
   HERO SECTION (premium) & HEADINGS
   ============================================================ */
.hero {
  background: linear-gradient(115deg, #fff, var(--color-accent) 75%);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 46px 0 rgba(224,205,153,0.10);
  padding: 64px 0 56px 0;
  margin-bottom: 64px;
  position: relative;
}
.hero h1 {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.13rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}
.hero .primary-cta {
  font-size: 1.1rem;
  padding: 13px 36px;
}
@media (max-width: 650px) {
  .hero {
    padding: 36px 0 28px 0;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   FLEXBOX LAYOUT PATTERNS (MANDATORY)
   ============================================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 340px;
  padding: 28px 22px 26px 22px;
  border: 1px solid var(--color-border);
}
.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) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****************************
  Features Grid/List Styling
*****************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 0 auto 0 auto;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--radius-l);
  border: 1.5px solid var(--color-accent);
  box-shadow: 0 3px 20px 0 rgba(191,164,100,.10);
  padding: 26px 18px 20px 18px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .17s, border .17s;
}
.feature-grid li img {
  height: 40px;
  margin-bottom: 8px;
  filter: grayscale(0.3) brightness(1.05) drop-shadow(0px 2px 0 #fffad1);
}
.feature-grid li h3 {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
}
.feature-grid li .highlight {
  background: var(--color-gold);
  color: #fff;
  border-radius: 15px;
  font-size: 0.97rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  padding: 3px 13px;
  margin-top: 12px;
  align-self: flex-end;
  letter-spacing: .01em;
  box-shadow: 0 1px 8px rgba(77,69,36,0.13);
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 8px 32px 0 rgba(191,164,100,.14);
  border-color: var(--color-gold);
  transform: translateY(-5px) scale(1.03);
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li {
    max-width: 100%;
    width: 100%;
  }
}

/****************************
  Feature-list & FAQs
*****************************/
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin-bottom: 8px;
}
.feature-list li {
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-surface);
  border-radius: var(--radius-m);
  padding: 14px 16px;
  font-size: .98rem;
  font-weight: 500;
  border: 1px solid var(--color-accent);
}
.feature-list li img {
  height: 30px;
  margin-right: 6px;
  filter: grayscale(.15) contrast(1.1);
}
@media (max-width: 700px) {
  .feature-list {
    flex-direction: column;
    gap: 13px;
  }
}

/******************************************
   Pricing Table (preisliste)
*******************************************/
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--color-accent);
  overflow: hidden;
  margin-bottom: 24px;
  margin-top: 12px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 16px 10px;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  border-bottom: 2px solid var(--color-gold);
}
.pricing-table td {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 500;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.price-highlights {
  margin-top: 12px;
  font-size: .98rem;
  color: var(--color-muted);
  background: var(--color-accent);
  border-radius: var(--radius-m);
  padding: 13px 19px;
  font-style: italic;
}

/******************************************
   TESTIMONIALS
*******************************************/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-m);
  border: 1.5px solid var(--color-accent);
  min-width: 260px;
  max-width: 400px;
  box-shadow: 0 6px 28px 0 rgba(127,109,73,0.07);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 14px 38px 0 rgba(191,164,100,.14);
  transform: translateY(-3px) scale(1.02);
}
.testimonial-card p {
  color: #24231d;
  font-size: 1.07rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.testimonial-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: .98rem;
  color: var(--color-gold);
  font-family: 'Montserrat',Arial,sans-serif;
  align-items: center;
  font-weight: 700;
}
.testimonial-info span:first-child {
  color: var(--color-primary);
  margin-right: 8px;
}
@media (max-width: 600px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/******************************************
   CTA Section
*******************************************/
.cta {
  background: linear-gradient(120deg, var(--color-accent) 94%, #fff 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 7px 24px 0 rgba(191,164,100,.09);
  margin-bottom: 56px;
}
.cta h2 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.cta p {
  color: var(--color-secondary);
  font-size: 1.13rem;
}
.cta .primary-cta {
  margin-top: 12px;
  font-size: 1.02rem;
}
@media (max-width: 600px) {
  .cta {
    padding: 28px 12px;
    margin-bottom: 34px;
  }
}

/******************************************
   FOOTER
*******************************************/
footer {
  background: #fff;
  border-top: 1.5px solid var(--color-border);
  padding: 34px 0 22px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
footer nav a {
  color: var(--color-primary);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: .99rem;
  border-radius: 6px;
  padding: 3px 7px;
  transition: color 0.17s, background 0.17s;
}
footer nav a:hover {
  color: #fff;
  background: var(--color-gold);
}
footer p {
  color: var(--color-muted);
  font-size: .98rem;
  margin: 0;
}
@media (min-width: 600px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

/******************************************
   CONTACT PAGE STYLES
*******************************************/
.contact-details {
  background: var(--color-surface);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  font-size: 1rem;
  margin-bottom: 17px;
  border: 1px solid var(--color-accent);
}
.contact-details p {
  margin: 0 0 7px 0;
  color: var(--color-primary);
}
.map-embed {
  margin-top: 10px;
  padding: 15px 14px;
  background: var(--color-accent);
  border-radius: var(--radius-m);
  color: var(--color-primary);
  font-size: .98rem;
}

/******************************************
   TEXT SECTION (for terms, privacy, etc.)
*******************************************/
.text-section {
  padding: 0 0 12px 0;
  color: var(--color-text);
  font-size: 1.03rem;
  line-height: 1.7;
}

/******************************************
   FAQ Section
*******************************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.faq-list li {
  background: var(--color-surface);
  border-radius: var(--radius-s);
  border-left: 4px solid var(--color-gold);
  padding: 13px 13px 13px 19px;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

/******************************************
   THANK YOU PAGE
*******************************************/
.danke {
  text-align: center;
}
.danke h2 {
  color: var(--color-gold);
}

/******************************************
   COOKIE CONSENT BANNER + MODAL
*******************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-cookie);
  background: var(--color-background);
  box-shadow: 0 -4px 28px 0 rgba(191,164,100,.14);
  border-top: 1.5px solid var(--color-gold);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  animation: slideUpCookie .54s cubic-bezier(0.4,0,0.2,1) 1;
}
@keyframes slideUpCookie {
  0% { transform: translateY(100%); opacity: .7; }
  80% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  text-align: center;
  color: var(--color-muted);
  font-size: .97rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-s);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: .97rem;
  font-weight: 700;
  padding: 8px 19px;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .18s;
  margin: 0;
}
.cookie-banner .accept {
  background: var(--color-gold);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-gold-dark);
}
.cookie-banner .reject {
  background: #ece8e2;
  color: var(--color-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e5dabf;
}
.cookie-banner .settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .settings:hover {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 18px 5vw 16px 5vw;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(68,60,43,.24);
  z-index: calc(var(--z-cookie) + 10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .28s;
  opacity: 1;
  animation: fadeCookieModal .5s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeCookieModal {
  0% { opacity: 0; }
  80% { opacity: 1; }
  100% { opacity: 1; }
}
.cookie-modal .cookie-dialog {
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: 0 12px 62px 0 rgba(191,164,100,.20);
  max-width: 390px;
  width: 94vw;
  padding: 32px 22px 21px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  position: relative;
  color: var(--color-text);
}
.cookie-modal .cookie-dialog h3 {
  color: var(--color-gold);
  font-size: 1.13rem;
  font-weight: 900;
  margin-bottom: 4px;
  font-family: 'Montserrat',Arial,sans-serif;
  letter-spacing: .02em;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
}
.cookie-modal .category label {
  font-size: .99rem;
  color: var(--color-primary);
}
.cookie-modal .category input[type='checkbox'] {
  accent-color: var(--color-gold);
  width: 18px;
  height: 18px;
}
.cookie-modal .category input[disabled] {
  accent-color: var(--color-gold-dark);
  opacity: 0.6;
}
.cookie-modal .cookie-actions {
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 10px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .18s;
  line-height: 1;
}
.cookie-modal .close-cookie-modal:hover {
  color: var(--color-gold-dark);
}

/******************************************
   OTHER / BLOCKS / GENERAL
*******************************************/
ul, ol {
  margin-bottom: 12px;
}
li {
  margin-bottom: 5px;
}
blockquote {
  border-left: 4px solid var(--color-gold);
  padding-left: 16px;
  margin: 17px 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  font-style: italic;
}
a.underline {
  border-bottom: 1.5px solid var(--color-gold);
  transition: border-color .18s;
}
a.underline:hover {
  border-bottom-color: var(--color-gold-dark);
}

@media (max-width: 650px) {
  .container {
    padding: 0 8px;
  }
}

/* Miscellaneous responsive adjustments */
@media (max-width: 540px) {
  .section {
    padding: 24px 0px;
    margin-bottom: 33px;
  }
  .feature-grid,
  .feature-list,
  .testimonials .content-wrapper {
    gap: 10px;
  }
}

/* Hide scrollbars for smoother look in overlays */
.mobile-menu, .cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  display: none;
}
