/* Twilight Pulse Polska – Playful Dynamic FLEXBOX CSS STYLES */

/*************************
 * 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFFBEA;
  color: #22374A;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  position: relative;
  letter-spacing: 0.01em;
}
a {
  background-color: transparent;
  color: #665c3f;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #22374A;
}
ul, ol { list-style: none; }
img { max-width: 100%; display: block; border: 0; }
hr { display: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
  background: none; border: none; outline: none;
}
:focus { outline: 2px dashed #FFD870; outline-offset: 3px; }

/*************************
 * CUSTOM FONTS          *
 *************************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/*************************
 * COLOR VARIABLES + FALLBACKS *
 *************************/
:root {
  --color-primary: #22374A;
  --color-secondary: #665c3f;
  --color-accent: #FFD870;
  --color-bg: #FFFBEA;
  --color-card1: #FFD870;
  --color-card2: #E4FF70;
  --color-card3: #FF85C0;
  --color-card4: #6CEAE6;
  --color-card5: #B6A1FF;
  --color-white: #fff;
  --color-black: #22374A;
  --shadow-strong: 0 6px 32px rgba(34,55,74,0.11);
  --shadow-card: 0 4px 12px rgba(34,55,74,0.08);
  --shadow-fun: 0 2px 12px rgba(102,92,63,0.18);
}

/*************************
 * GENERAL CONTAINERS *
 *************************/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin: 0 auto;
}

/*************************
 * TYPOGRAPHY *
 *************************/
h1, h2, h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.8rem;
  color: var(--color-primary);
  text-shadow: 1px 6px 0 var(--color-accent), 2px 2px 0 #FFFBEA;
  margin-top: 18px;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  color: var(--color-secondary);
  text-shadow: 1px 2px 0 #FFFAE2;
  margin-top: 10px;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 7px;
}
p, li, .text-section {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-black);
  font-weight: 400;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
em, i { font-style: italic; }

/**********
 * FUN FONTS / MICRO-PLAYFUL
 **********/
.hero h1, .thank-you h1, .cta h2, .section h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--color-secondary);
  text-shadow: 2px 5px 0 var(--color-card3), 2px 2px 0 #FFFAE2;
}
.features h2, .features h3 {
  color: var(--color-card4);
}

/*************************
 * LAYOUTS (FLEXBOX ONLY) *
 *************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card1);
  border-radius: 17px;
  box-shadow: var(--shadow-fun);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
}
.card:nth-child(2n) {
  background: var(--color-card2);
}
.card:nth-child(3n) {
  background: var(--color-card3);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  padding: 20px;
  background: #FFFBEA;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  margin-bottom: 24px;
  border-left: 8px solid var(--color-card4);
  max-width: 500px;
}
.testimonial-meta {
  color: var(--color-card3);
  font-weight: bold;
  font-size: 1.07rem;
  margin-top: 4px;
}
.testimonial-meta span {
  color: #FFB811;
  font-size: 1.22em;
  margin-left: 6px;
  letter-spacing: 0.12em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card2);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-fun);
}

/*************************
 * HERO SECTION           *
 *************************/
.hero {
  background: linear-gradient(105deg, #FFE1B5 65%, #ABD6FF 100%);
  padding: 58px 0 38px 0;
  border-radius: 0 0 50px 50px/0 0 40px 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 0 var(--color-card3);
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}
.hero p {
  font-size: 1.21rem;
  margin-bottom: 16px;
  margin-top: 6px;
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/*************************
 * FEATURES / SERVICES    *
 *************************/
.features ul, .features ol, .services ul, .services ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}
.features ul li, .services ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 13px;
  background: var(--color-card2);
  box-shadow: 0 1px 8px #b6a1ff1c;
  transition: transform 0.13s, box-shadow 0.19s;
  font-weight: 500;
}
.features ul li img, .services ul li img {
  width: 26px; min-width: 26px; height: 26px; margin-right: 3px;
  filter: drop-shadow(0 1px 2px #22374a44);
  animation: bounce-in 0.6s cubic-bezier(.49,1.3,.57,1.08) both;
}
.features ul li:hover, .services ul li:hover {
  background: var(--color-card3);
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
  box-shadow: 0 7px 27px #FF85C044;
}

/*************************
 * TOUR GRID & BADGES     *
 *************************/
.tour-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.tour-grid > div {
  background: var(--color-card5);
  border-radius: 16px;
  box-shadow: 0 2px 13px #665c3f26;
  padding: 24px 17px 20px 17px;
  position: relative;
  margin-bottom: 20px;
  min-width: 255px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .18s, box-shadow .18s;
}
.tour-grid > div:hover {
  background: var(--color-card3);
  transform: translateY(-4px) scale(1.025) rotate(1.5deg);
  box-shadow: 0 8px 27px #FF85C066;
}
.badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 16px;
  background: var(--color-card4);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 1px 6px #6CEAE668;
  margin-top: 13px;
}

/*************************
 * CTA / ACTION SECTION   *
 *************************/
.cta {
  background: linear-gradient(104deg, #FF85C0 56%, #ABD6FF 115%);
  border-radius: 37px;
  margin-bottom: 0;
  min-height: 170px;
  box-shadow: 0 4px 22px #FF85C033;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: var(--color-card5);
  text-shadow: 3px 5px 0 #FFD87066;
}

/*************************
 * CTA BUTTONS
 *************************/
.cta-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 22px;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 13px 36px;
  margin-top: 16px;
  margin-bottom: 7px;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 0 #ffe;
  box-shadow: 0 3px 0 #b6a1ff77;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.17s, transform 0.17s, box-shadow 0.11s;
  position: relative;
  z-index: 1;
  animation: cta-bounce 1.2s cubic-bezier(.43,1.5,.47,.93) both;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-card4);
  color: #22374A;
  transform: translateY(-2.5px) scale(1.06) rotate(-1deg);
  box-shadow: 0 7px 27px #6CEAE644;
}

/*************************
 * HEADER / NAVIGATION    *
 *************************/
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 2px 12px #22374a11;
  padding: 0;
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 74px;
  gap: 7px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img[alt="Twilight Pulse Polska"] {
  height: 45px;
  width: auto;
  margin-right: 18px;
}
nav.main-nav {
  display: flex;
  gap: 5px;
  margin-left: 18px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #FFD870;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.14s, color 0.13s;
  font-size: 1rem;
  position: relative;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--color-card3);
  color: var(--color-primary);
  text-shadow: 2px 2px 0 #FFFBEA;
}
header .cta-primary {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.10rem;
  padding: 9px 24px;
  background: var(--color-card4);
  color: var(--color-primary);
  box-shadow: 0 1px 5px #6CEAE644;
}
header .cta-primary:hover, header .cta-primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/*************************
 * MOBILE MENU HAMBURGER  *
 *************************/
.mobile-menu-toggle {
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2.2rem;
  border-radius: 50%;
  width: 50px; height: 50px;
  border: none;
  margin-left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 131;
  box-shadow: 0 1px 6px #FFD87060;
  transition: background 0.11s, color 0.11s, transform 0.14s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-card3);
}

/*************************
 * MOBILE MENU OVERLAY *
 *************************/
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(223, 218, 251, .96);
  transform: translateX(100vw);
  transition: transform .34s cubic-bezier(.65,1.68,.18,0.7);
  z-index: 2005;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 21px 0 0;
  background: var(--color-card3);
  color: var(--color-primary);
  font-size: 2.7rem;
  border-radius: 50%;
  width: 50px; height: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px #ff85c060;
  transition: background 0.13s, color 0.13s, transform 0.14s;
  z-index: 2038;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 50px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.27rem;
  font-weight: bold;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 11px 26px;
  border-radius: 17px;
  transition: background 0.17s, color 0.16s, transform 0.09s;
  box-shadow: 0 2px 10px #FFD87033;
  margin-bottom: 2px;
  min-width: 220px;
  text-align: left;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-card3);
  color: var(--color-primary);
  transform: translateX(6px) scale(1.04);
}

/*************************
 * FOOTER *
 *************************/
footer {
  background: #22374A;
  color: #fff;
  padding: 38px 0 20px 0;
  border-radius: 37px 37px 0 0;
  box-shadow: 0 0 18px #22374a1a;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-accent);
  background: transparent;
  font-weight: 500;
  padding: 9px 17px;
  border-radius: 12px;
  transition: background 0.13s, color 0.13s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-card3);
  color: var(--color-primary);
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.97rem;
}
.footer-info img {
  width: 40px; height: auto; margin-bottom: 7px;
}

/*************************
 * LEGAL/TEXT SECTION *
 *************************/
.legal .container, .about .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.legal .content-wrapper, .about .content-wrapper, .contact .content-wrapper {
  gap: 20px;
  margin-bottom: 0;
}
.text-section {
  background: var(--color-card2);
  padding: 18px 17px;
  border-radius: 14px;
  box-shadow: 0 1px 8px #b6a1ff14;
  margin-bottom: 14px;
}
.text-section ul, .text-section ol {
  margin-left: 0;
  margin-bottom: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 22px;
}
.text-section li {
  list-style-type: disc;
  margin-bottom: 3px;
}
.text-section a { color: #665c3f; font-weight: bold; }

/*************************
 * CONTACT & MAP SECTION  *
 *************************/
.contact .text-section, .contact .map-section {
  background: var(--color-card5);
  margin-top: 0;
  border-radius: 13px;
  box-shadow: 0 1px 8px #b6a1ff22;
  color: var(--color-primary);
}
.map-section { padding: 13px 17px; font-style: italic; font-size: .97em; }

/*************************
 * THANK YOU SECTION      *
 *************************/
.thank-you {
  margin: 60px auto 0 auto;
  padding: 48px 20px;
  background: linear-gradient(85deg, #FFD870 60%, #abd6ff 100%);
  border-radius: 29px;
  box-shadow: 0 2px 13px #FFD87019;
  min-height: 250px;
}
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}

/*************************
 * RESPONSIVENESS         *
 *************************/
@media (max-width: 1024px) {
  .container { max-width: 97vw; }
  footer .container { max-width: 98vw; }
  nav.main-nav {
    gap: 7px;
    margin-left: 4px;
  }
}
@media (max-width: 950px) {
  .tour-grid, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .tour-grid > div,
  .card-container > .card {
    min-width: 130px;
    max-width: 100%;
    flex: none;
  }
  header .container {
    flex-wrap: wrap;
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 7vw; padding-right: 7vw; }
  .hero { padding: 42px 0 32px 0; border-radius: 0 0 33px 33px/0 0 23px 23px; }
  .hero h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  nav.main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  header .cta-primary { display: none; }
  .content-wrapper { padding: 0 3vw; }
  .tour-grid, .content-grid, .features ul, .services ul {
    flex-direction: column;
    gap: 18px;
  }
  .card-container { flex-direction: column; gap: 20px; }
  .testimonial-card { max-width: 99vw; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .cta {
    min-height: 100px;
    border-radius: 19px;
    padding: 32px 5vw;
  }
  .thank-you { border-radius: 21px; padding: 32px 8vw; }
  .section { padding: 27px 5vw; border-radius: 13px; }
  footer { border-radius: 21px 21px 0 0; }
  .footer-nav { gap: 8px; }
  .footer-info img { width: 30px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
  .cta-primary { font-size: 1.04rem; padding: 9px 17px; }
  .testimonial-card { padding: 16px 12px; }
  .section { padding: 16px 3vw; }
}

/*************************
 * MICRO-ANIMATIONS / EFFECTS
 *************************/
@keyframes cta-bounce {
  0% { transform: translateY(20px) scale(0.96); }
  60% { transform: translateY(-6px) scale(1.05); }
  100% { transform: translateY(0) scale(1.00); }
}
@keyframes bounce-in {
  0% { transform: scale(0.85) translateY(8px); opacity: 0; }
  80% { transform: scale(1.10) translateY(-3px); opacity: 1; }
  100% { transform: scale(1.00) translateY(0); opacity: 1; }
}

/*************************
 * COOKIE CONSENT BANNER  *
 *************************/
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #fffde9;
  border: 2px solid var(--color-card3);
  border-radius: 18px;
  box-shadow: 0 8px 28px #FFD87055;
  padding: 22px 28px 18px 28px;
  z-index: 5002;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  color: var(--color-primary);
  animation: bounce-in 1.2s cubic-bezier(.49,1.5,.17,0.9) both;
}
.cookie-banner.hide { display: none; }
.cookie-banner-buttons {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.cookie-btn {
  border: none;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 18px;
  padding: 8px 20px;
  margin-top: 0;
  box-shadow: 0 3px 11px #FFD87099;
  cursor: pointer;
  transition: background .13s, color .13s, transform .09s;
}
.cookie-btn.settings {
  background: var(--color-card3);
  color: var(--color-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-card4);
  color: var(--color-primary);
  transform: scale(1.04);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-card2);
  color: var(--color-secondary);
}

/*************************
 * COOKIE PREFERENCES MODAL *
 *************************/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,55,74, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5010;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #ffffff;
  border-radius: 21px;
  box-shadow: 0 13px 38px #FFD87070;
  padding: 40px 38px 24px 38px;
  max-width: 420px;
  width: 92vw;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  position: relative;
  animation: bounce-in 0.8s cubic-bezier(.42,1.6,.49,.88) both;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  font-size: 1.33rem;
  font-weight: 800;
  margin-bottom: 2px;
  text-align: center;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--color-card2);
  border-radius: 12px;
  padding: 8px 18px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.cookie-category.essential label { color: #999; }
.cookie-category-toggle {
  margin-left: 13px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 19px;
  background: var(--color-card3);
  color: var(--color-primary);
  font-size: 1.95rem;
  border-radius: 50%;
  width: 39px; height: 39px;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px #ff85c044;
  transition: background .11s;
  z-index: 5022;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-card4);
}
.cookie-modal-actions {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 13px;
  padding-top: 9px;
}
.cookie-modal .cookie-btn {
  font-size: 1.07rem;
  min-width: 90px;
}
@media (max-width: 540px) {
  .cookie-banner { left: 3vw; right: 3vw; padding: 16px 9vw 13px 9vw; }
  .cookie-modal { padding: 16px 6vw 9px 6vw;
    min-width: unset;
  }
}

/*************************
 * UTILITY CLASSES        *
 *************************/
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.text-center { text-align: center; }
.align-center { align-items: center; }
.flex-row { display: flex; flex-direction: row; gap: 20px; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px!important; }

/*************************
 * HIDE / SHOW CLASSES    *
 *************************/
.d-none { display: none!important; }

/*************************
 * Z-INDEX FOR OVERLAYS   *
 *************************/
.mobile-menu { z-index: 2005; }
.cookie-banner { z-index: 5002; }
.cookie-modal-overlay { z-index: 5010; }

/*************************
 * ACCESSIBILITY CLASSES  *
 *************************/
.sr-only {
  border: 0!important;
  clip: rect(0 0 0 0)!important;
  height: 1px!important;
  margin: -1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  width: 1px!important;
}
