:root {
  --primary-purple: #9B59B6;
  --primary-purple-dark: #7D3C98;
  --primary-purple-light: #BB8FCE;
  --accent-pink: #E91E63;
  --accent-pink-dark: #C2185B;
  --accent-magenta: #E91E63;
  --neutral-gray-light: #F5F5F5;
  --neutral-gray: #CCCCCC;
  --neutral-gray-medium: #999999;
  --neutral-gray-dark: #666666;
  --neutral-gray-darker: #333333;
  --white: #FFFFFF;
  --black: #000000;
  --success-green: #28A745;
  --warning-yellow: #FFC107;
  --error-red: #DC3545;
  --bg-light-purple: #F0E5F5;
  --bg-light-pink: #FAE5ED;
  
  --primary-blue: var(--primary-purple);
  --primary-blue-dark: var(--primary-purple-dark);
  --primary-blue-light: var(--primary-purple-light);
  --netherlands-orange: var(--accent-pink);
  --netherlands-orange-dark: var(--accent-pink-dark);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-light-purple);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--neutral-gray-darker);
  background-color: var(--bg-light-purple);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
  }
}

header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  max-width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-purple);
  box-sizing: border-box;
  overflow-x: hidden;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

header h1 {
  color: var(--primary-purple-dark);
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

nav {
  display: flex;
  gap: 5px;
  align-items: center;
}

nav a {
  color: var(--neutral-gray-darker);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-purple) 0%, var(--accent-pink) 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

nav a:hover {
  color: var(--primary-purple);
  background-color: var(--neutral-gray-light);
}

nav a:hover::before {
  width: 80%;
}

nav a.active {
  color: var(--primary-purple);
  background-color: rgba(155, 89, 182, 0.1);
}

nav a.active::before {
  width: 80%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background-color: var(--primary-purple);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle::before {
  top: 12px;
}

.mobile-menu-toggle::after {
  bottom: 12px;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 3px;
  background-color: var(--primary-purple);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle:hover::before,
.mobile-menu-toggle:hover::after,
.mobile-menu-toggle:hover span {
  background-color: var(--primary-purple-dark);
  width: 32px;
}

.mobile-menu-toggle.active::before {
  transform: translateX(-50%) rotate(45deg);
  top: 18px;
}

.mobile-menu-toggle.active::after {
  transform: translateX(-50%) rotate(-45deg);
  bottom: 18px;
}

.mobile-menu-toggle.active span {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

main {
  margin-top: 80px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

section {
  padding: 60px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

section:nth-child(even) {
  background-color: var(--bg-light-pink);
}

.hero {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.85) 0%, rgba(125, 60, 152, 0.85) 100%), url('image/Explore_the_netherlands_202512161648.jpeg') center/cover no-repeat;
  color: var(--white);
  position: relative;
}

.hero h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.parks-section {
  margin-top: 0;
}

h1, h2 {
  color: var(--primary-purple-dark);
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  color: var(--neutral-gray-darker);
  font-size: 1.5rem;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

p {
  margin-bottom: 15px;
}

article {
  background-color: var(--white);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

article:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.article-content {
  display: none;
}

article.active .article-content {
  display: block;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

input, textarea {
  margin-bottom: 20px;
  padding: 12px;
  font-size: 1em;
  border: 1px solid var(--neutral-gray);
  border-radius: 4px;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 1px 3px rgba(155, 89, 182, 0.2);
}

button {
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background: var(--primary-purple-dark);
  transform: translateY(-2px);
}

button:active {
  transform: translateY(0);
}

.btn-accent {
  background: var(--accent-pink);
}

.btn-accent:hover {
  background: var(--accent-pink-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  display: block;
  box-sizing: border-box;
}

footer {
  background-color: var(--neutral-gray-darker);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-section p {
  color: var(--neutral-gray);
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--neutral-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-purple-light);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-gray);
  margin-bottom: 10px;
}

.footer-bottom a {
  color: var(--primary-purple-light);
  text-decoration: none;
  margin: 0 10px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-contact-info {
  color: var(--neutral-gray);
}

.footer-contact-info a {
  color: var(--primary-purple-light);
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-info h3 {
  color: var(--primary-purple-dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-purple-dark);
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: var(--white);
  display: table;
}

@media (max-width: 768px) {
  .table-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  table {
    min-width: 600px;
    margin: 0;
  }
}

table th {
  background-color: var(--neutral-gray-light);
  padding: 12px;
  text-align: left;
  border: 1px solid var(--neutral-gray);
  font-weight: 600;
  color: var(--neutral-gray-darker);
}

table td {
  padding: 12px;
  border: 1px solid var(--neutral-gray);
}

table tr:nth-child(even) {
  background-color: var(--neutral-gray-light);
}

@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 20px 0;
    border-top: 2px solid var(--primary-purple);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    box-sizing: border-box;
  }

  nav.active {
    display: flex;
    transform: translateX(0);
  }

  nav a {
    width: 100%;
    text-align: left;
    padding: 16px 25px;
    border-radius: 0;
    border-bottom: 1px solid var(--neutral-gray-light);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-gray-darker);
    transition: all 0.3s ease;
    position: relative;
  }

  nav a::before {
    display: none;
  }

  nav a::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-purple);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  nav a:hover,
  nav a.active {
    background-color: var(--bg-light-purple);
    color: var(--primary-purple-dark);
    padding-left: 30px;
  }

  nav a:hover::after,
  nav a.active::after {
    transform: scaleY(1);
  }

  .hero h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  h4 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  section {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .map-container {
    height: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom a {
    display: block;
    margin: 5px 0;
  }

  .card {
    padding: 20px;
  }

  .card {
    overflow: hidden;
  }

  .card img {
    width: calc(100% + 40px);
    margin: -20px -20px 15px -20px !important;
    max-width: none;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 15px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }

  img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
  }

  .card, article, .feature-item {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    padding: 60px 15px;
  }

  .hero h2, .hero p {
    padding: 0;
  }
}

.accordion {
  margin: 30px 0;
}

.accordion-item {
  background-color: var(--white);
  border: 1px solid var(--neutral-gray);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.accordion-header {
  background-color: var(--neutral-gray-light);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-weight: 600;
  color: var(--primary-purple-dark);
}

.accordion-header:hover {
  background-color: var(--primary-purple-light);
  color: var(--white);
}

.accordion-header.active {
  background-color: var(--primary-purple);
  color: var(--white);
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 20px;
}

.accordion-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.accordion-content ul {
  margin-left: 30px;
  margin-top: 10px;
  line-height: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.info-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 30px 0;
  border-radius: 8px;
}

.info-table-wrapper .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: table;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: table;
}

@media (max-width: 768px) {
  .info-table-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .info-table-wrapper .info-table,
  .info-table {
    min-width: 600px;
    margin: 0;
    display: table;
  }
}

.info-table th {
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
  color: var(--white);
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.info-table td {
  padding: 15px;
  border-bottom: 1px solid var(--neutral-gray-light);
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover {
  background-color: var(--neutral-gray-light);
}

.highlight-box {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-pink-dark) 100%);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.highlight-box h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.contact-btn-white {
  background-color: var(--white) !important;
  color: var(--primary-purple-dark) !important;
}

.contact-btn-white:hover {
  background-color: var(--primary-purple-light) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin: 30px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-purple);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-purple);
  border: 3px solid var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.timeline-year {
  color: var(--primary-purple-dark);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-purple);
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--primary-purple-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.feature-text h4 {
  color: var(--primary-purple-dark);
  margin-bottom: 8px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 30px 0;
  border-radius: 8px;
}

.comparison-table-wrapper .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: table;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: table;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .comparison-table-wrapper .comparison-table,
  .comparison-table {
    min-width: 600px;
    margin: 0;
    display: table;
  }
}

.comparison-table thead {
  display: table-header-group;
}

.comparison-table tbody {
  display: table-row-group;
}

.comparison-table tr {
  display: table-row;
}

.comparison-table th {
  background-color: var(--primary-purple-dark);
  color: var(--white);
  padding: 15px;
  text-align: center;
  font-weight: 600;
  display: table-cell;
}

.comparison-table th:first-child {
  text-align: left;
  background-color: var(--primary-purple);
}

.comparison-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid var(--neutral-gray-light);
  display: table-cell;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--primary-purple-dark);
}

.comparison-table tr:hover {
  background-color: var(--neutral-gray-light);
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 5px;
}

.badge-primary {
  background-color: var(--primary-purple-light);
  color: var(--white);
}

.badge-success {
  background-color: var(--success-green);
  color: var(--white);
}

.badge-warning {
  background-color: var(--accent-pink);
  color: var(--white);
}

#contact-form {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .info-table-wrapper,
  .comparison-table-wrapper,
  .table-wrapper {
    width: 100%;
    margin: 20px 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-table, .comparison-table, table {
    font-size: 0.8rem;
    display: table;
    min-width: 600px;
    margin: 0;
  }

  .info-table th, .info-table td,
  .comparison-table th, .comparison-table td,
  table th, table td {
    padding: 10px 8px;
    white-space: nowrap;
    min-width: 80px;
  }

  .info-table th:first-child,
  .comparison-table th:first-child,
  table th:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    min-width: 120px;
  }

  .info-table td:first-child,
  .comparison-table td:first-child,
  table td:first-child {
    position: sticky;
    left: 0;
    z-index: 5;
    background-color: var(--white);
    min-width: 120px;
  }

  .timeline {
    padding-left: 30px;
  }
}

