:root {
  --eye-dark-deep: #0D1117;
  --eye-dark-surface: #161B22;
  --eye-dark-card: #21262D;
  --eye-accent-glow: #00F2FE;
  --eye-accent-violet: #7000FF;
  --eye-text-bright: #F0F6FC;
  --eye-text-muted: #8B949E;
  --eye-card-border: #30363D;
  --eye-gradient-main: linear-gradient(135deg, #00F2FE 0%, #7000FF 100%);
  --eye-gradient-overlay: linear-gradient(180deg, rgba(13, 17, 23, 0.85) 0%, rgba(13, 17, 23, 0.95) 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

@keyframes vis-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--eye-dark-deep);
  color: var(--eye-text-bright);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Scroll Progress Bar */
.vis-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--eye-gradient-main);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  animation: vis-progress auto linear;
  animation-timeline: scroll(root);
}

@keyframes vis-progress {
  to { transform: scaleX(1); }
}

/* Header & Navigation Styles */
.vis-navigation-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--eye-dark-surface);
  border-bottom: 1px solid var(--eye-card-border);
  padding: 1rem 2rem;
}

.vis-navigation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vis-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--eye-text-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.vis-brand-icon {
  width: 32px;
  height: 32px;
  fill: var(--eye-accent-glow);
}

.vis-navigation-list-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vis-navigation-link {
  color: var(--eye-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.vis-navigation-link:hover,
.vis-navigation-link.vis-active {
  color: var(--eye-accent-glow);
}

/* Mobile Menu Toggle (CSS Only) */
.vis-menu-checkbox {
  display: none;
}

.vis-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1000;
}

.vis-menu-trigger span {
  width: 25px;
  height: 3px;
  background-color: var(--eye-text-bright);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hero Section */
.vis-hero-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vis-hero-dark-mask {
  position: absolute;
  inset: 0;
  background: var(--eye-gradient-overlay);
  z-index: 1;
}

.vis-hero-content-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: vis-fade-in 1s ease-out;
}

.vis-hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--eye-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vis-hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--eye-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Standard Buttons */
.vis-action-button-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--eye-dark-deep);
  background: var(--eye-gradient-main);
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  font-size: 0.9rem;
}

.vis-action-button-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

/* Stats Floating Bar */
.vis-stat-floating-grid {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: -60px auto 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vis-stat-floating-card {
  background-color: var(--eye-dark-surface);
  border: 1px solid var(--eye-card-border);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.vis-stat-floating-card:hover {
  transform: translateY(-5px);
}

.vis-stat-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--eye-accent-glow);
  margin-bottom: 0.5rem;
  display: block;
}

.vis-stat-card-label {
  font-size: 0.95rem;
  color: var(--eye-text-muted);
}

/* Light Content Zigzag Sections */
.vis-zigzag-outer-section {
  padding: 10dvh 1.5rem;
  background-color: #ffffff;
  color: #1A1A2A;
}

.vis-zigzag-item-row {
  max-width: 1100px;
  margin: 0 auto 6rem auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.vis-zigzag-item-row:last-child {
  margin-bottom: 0;
}

.vis-zigzag-item-row:nth-child(even) {
  flex-direction: row-reverse;
}

.vis-zigzag-graphics-container {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.vis-zigzag-picture {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.vis-zigzag-item-row:nth-child(odd) .vis-zigzag-picture {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.vis-zigzag-item-row:nth-child(even) .vis-zigzag-picture {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.vis-zigzag-textual-panel {
  flex: 1;
}

.vis-zigzag-section-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(112, 0, 255, 0.1);
  color: var(--eye-accent-violet);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vis-zigzag-item-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.vis-zigzag-item-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4A5A;
  margin-bottom: 1.5rem;
}

/* Features Grid Section */
.vis-perks-outer-panel {
  padding: 10dvh 1.5rem;
  background-color: var(--eye-dark-deep);
  border-top: 1px solid var(--eye-card-border);
}

.vis-perks-central-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vis-perks-main-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vis-perks-subheading {
  color: var(--eye-text-muted);
}

.vis-perks-elements-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.vis-perks-single-card {
  background-color: var(--eye-dark-surface);
  border-left: 4px solid var(--eye-accent-glow);
  border-top: 1px solid var(--eye-card-border);
  border-right: 1px solid var(--eye-card-border);
  border-bottom: 1px solid var(--eye-card-border);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vis-perks-single-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.15);
}

.vis-perks-card-icon {
  width: 48px;
  height: 48px;
  fill: var(--eye-accent-glow);
  margin-bottom: 1.5rem;
}

.vis-perks-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vis-perks-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--eye-text-muted);
}

/* How It Works Timeline Section */
.vis-timeline-outer-wrapper {
  padding: 10dvh 1.5rem;
  background-color: var(--eye-dark-surface);
  border-top: 1px solid var(--eye-card-border);
}

.vis-timeline-inner-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.vis-timeline-vertical-bar {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--eye-gradient-main);
  transform: translateX(-50%);
}

.vis-timeline-node-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.vis-timeline-node-row:last-child {
  margin-bottom: 0;
}

.vis-timeline-node-row:nth-child(even) {
  flex-direction: row-reverse;
}

.vis-timeline-content-block {
  width: 45%;
  background: var(--eye-dark-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--eye-card-border);
}

.vis-timeline-node-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--eye-gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--eye-dark-deep);
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.vis-timeline-step-caption {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--eye-accent-glow);
}

.vis-timeline-step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--eye-text-muted);
}

/* Call To Action Strip */
.vis-cta-strip-panel {
  position: relative;
  padding: 12dvh 1.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.vis-cta-overlay-mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 23, 0.85);
  z-index: 1;
}

.vis-cta-text-wrap {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.vis-cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.vis-cta-strip-paragraph {
  font-size: 1.1rem;
  color: var(--eye-text-muted);
  margin-bottom: 2.5rem;
}

/* Expert Page Custom Layout */
.vis-expert-intro-panel {
  padding: 10dvh 1.5rem;
  background-color: #ffffff;
  color: #1A1A2A;
}

.vis-expert-grid-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.vis-expert-media-wrapper {
  flex: 1;
}

.vis-expert-portrait {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  object-fit: cover;
  height: 500px;
}

.vis-expert-textual-part {
  flex: 1;
}

.vis-expert-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.vis-expert-paragraphs {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4A5A;
  margin-bottom: 1.5rem;
}

.vis-expert-quote-box {
  border-left: 4px solid var(--eye-accent-violet);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #1A1A2A;
  font-weight: 500;
}

/* Reserve Page Custom Layout */
.vis-booking-system-grid {
  max-width: 1100px;
  margin: 4dvh auto 10dvh auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.vis-booking-info-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vis-booking-guide-card {
  background-color: var(--eye-dark-surface);
  border: 1px solid var(--eye-card-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.vis-booking-guide-card:hover {
  transform: translateY(-4px);
}

.vis-booking-card-icon {
  width: 48px;
  height: 48px;
  fill: var(--eye-accent-glow);
  margin-bottom: 1.5rem;
}

.vis-booking-guide-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vis-booking-guide-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--eye-text-muted);
  margin-bottom: 1.5rem;
}

.vis-booking-numbered-steps {
  list-style: none;
}

.vis-booking-numbered-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--eye-text-bright);
}

.vis-booking-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--eye-gradient-main);
  color: var(--eye-dark-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Interactive Form Wrapper */
.vis-interactive-form-container {
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--eye-dark-surface);
  border: 1px solid var(--eye-card-border);
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.vis-form-main-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.vis-form-input-element-wrap {
  margin-bottom: 1.5rem;
}

.vis-form-label-text {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--eye-text-muted);
  letter-spacing: 1px;
}

.vis-form-textual-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--eye-dark-deep);
  border: 1px solid var(--eye-card-border);
  border-radius: 8px;
  color: var(--eye-text-bright);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vis-form-textual-input:focus {
  outline: none;
  border-color: var(--eye-accent-glow);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.vis-form-agreement-lbl {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--eye-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.vis-form-agreement-lbl a {
  color: var(--eye-accent-glow);
  text-decoration: underline;
}

.vis-form-submit-trigger {
  width: 100%;
  padding: 1.1rem;
  background: var(--eye-gradient-main);
  border: none;
  border-radius: 8px;
  color: var(--eye-dark-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
  margin-top: 1rem;
}

.vis-form-submit-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}

.vis-contact-email-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--eye-text-muted);
}

.vis-contact-email-cta a {
  color: var(--eye-accent-glow);
  text-decoration: none;
  font-weight: 600;
}

/* Accordion FAQ Layout */
.vis-faq-container-section {
  max-width: 800px;
  margin: 6dvh auto 10dvh auto;
  padding: 0 1.5rem;
}

.vis-faq-main-header {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.vis-faq-list-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-faq-box-card {
  background-color: var(--eye-dark-surface);
  border: 1px solid var(--eye-card-border);
  border-radius: 12px;
  padding: 2rem;
}

.vis-faq-box-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--eye-accent-glow);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.vis-faq-box-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--eye-text-muted);
}

/* Simple Document Container (Privacy/Terms) */
.vis-document-flow-container {
  max-width: 800px;
  margin: 6dvh auto 12dvh auto;
  padding: 0 1.5rem;
  min-height: 100vh;
}

.vis-document-main-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.vis-document-content-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem 0;
  color: var(--eye-accent-glow);
}

.vis-document-content-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--eye-text-muted);
  margin-bottom: 1.5rem;
}

/* Footer layout */
.vis-base-footer {
  margin-top: auto;
  background-color: #090D12;
  border-top: 1px solid var(--eye-card-border);
  padding: 4rem 2rem 2rem 2rem;
}

.vis-base-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vis-base-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.vis-footer-brand-side {
  max-width: 350px;
}

.vis-footer-brand-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--eye-text-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1rem;
}

.vis-footer-brand-desc {
  font-size: 0.85rem;
  color: var(--eye-text-muted);
  line-height: 1.6;
}

.vis-footer-links-side {
  display: flex;
  gap: 4rem;
}

.vis-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-footer-group-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--eye-accent-glow);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.vis-footer-nav-link {
  color: var(--eye-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.vis-footer-nav-link:hover {
  color: var(--eye-accent-glow);
}

.vis-footer-disclaimer-box {
  border-top: 1px solid var(--eye-card-border);
  padding-top: 2rem;
  text-align: center;
}

.vis-footer-disclaimer-text {
  font-size: 0.75rem;
  color: var(--eye-text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.vis-footer-copyright-info {
  font-size: 0.75rem;
  color: var(--eye-text-muted);
}

/* Cookie Consent Dialog styling */
.vis-cookies-banner-dialog {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--eye-dark-surface);
  border-top: 2px solid var(--eye-accent-glow);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  z-index: 10000;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vis-cookies-banner-dialog.vis-revealed {
  transform: translateY(0);
}

.vis-cookie-dialog-text {
  font-size: 0.9rem;
  color: var(--eye-text-bright);
  line-height: 1.5;
  max-width: 800px;
}

.vis-cookie-dialog-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vis-cookie-accept-btn {
  padding: 0.75rem 1.5rem;
  background: var(--eye-gradient-main);
  border: none;
  border-radius: 8px;
  color: var(--eye-dark-deep);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.8rem;
  transition: transform 0.2s;
}

.vis-cookie-decline-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--eye-card-border);
  border-radius: 8px;
  color: var(--eye-text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}

.vis-cookie-decline-btn:hover {
  border-color: var(--eye-text-bright);
  color: var(--eye-text-bright);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .vis-zigzag-item-row {
    flex-direction: column !important;
    gap: 2rem;
  }
  .vis-zigzag-picture {
    height: 300px;
    clip-path: none !important;
  }
  .vis-expert-grid-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  .vis-expert-portrait {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .vis-menu-trigger {
    display: flex;
  }

  .vis-navigation-list-wrapper {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: var(--eye-dark-surface);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998;
  }

  .vis-menu-checkbox:checked ~ .vis-navigation-list-wrapper {
    transform: translateX(0);
  }

  .vis-menu-checkbox:checked ~ .vis-menu-trigger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .vis-menu-checkbox:checked ~ .vis-menu-trigger span:nth-child(2) {
    opacity: 0;
  }

  .vis-menu-checkbox:checked ~ .vis-menu-trigger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .vis-timeline-vertical-bar {
    left: 20px;
  }

  .vis-timeline-node-row {
    flex-direction: row !important;
    justify-content: flex-start;
    padding-left: 50px;
  }

  .vis-timeline-content-block {
    width: 100%;
  }

  .vis-timeline-node-number {
    left: 20px;
    transform: translateX(-50%);
  }

  .vis-cookies-banner-dialog {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    text-align: center;
  }

  .vis-cookie-dialog-buttons {
    justify-content: center;
  }
}