* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #1A1A1A;
  padding: 0.5vw;
  max-width: 100vw;
  overflow-x: hidden;
}

.top-nav {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #2D2D2D;
  padding: 1vw 2vw;
  border-radius: 8px;
  gap: 1vw;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.5vw;
}

.nav-logo img {
  max-height: 100px;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
  font-size: 1.2vw;
  padding: 1vw 2vw;
  background-color: white;
  color: black;
  border: 1px solid #1E1E1E;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle:hover {
  background-color: #1E1E1E;
  color: white;
  transform: scale(1.05);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.nav-links {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}

.nav-links button {
  font-size: 1.2vw;
  font-weight: bold;
  padding: 1vw 2vw;
  background-color: white;
  color: black;
  border: 1px solid #1E1E1E;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}

.nav-links button:hover {
  background-color: #1E1E1E;
  color: white;
  transform: scale(1.05);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.collapsible-nav {
  display: flex;
}

.collapsible-nav.active {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.page-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  width: 100%;
  margin-top: 0;
}

.left-section {
  background-color: #1A1A1A;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 8px;
  border: 2px solid #1E1E1E;
  margin-bottom: 0;
  flex-grow: 1;
}

.title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.left-title {
  margin-top: 0.5vw;
  font-size: 4vw;
  font-weight: bold;
  color: white;
  text-align: left;
  margin-bottom: 0.5vw;
}

.availability-text {
  font-size: 1.8vw;
  margin-top: 0;
  margin-bottom: 0.5vw;
  color: white;
}

.left-image-container {
  flex-grow: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: auto;
}

.left-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vertical-buttons button {
  font-size: 1.4vw;
  font-weight: bold;
  display: block;
  margin-bottom: 1vw;
  padding: 0.75vw;
  width: 75%;
  background-color: #FFD500;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
}

.vertical-buttons button:hover {
  background-color: #D4AF37;
  color: white;
  transform: scale(1.05);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.disclaimer {
  font-size: 1vw;
  color: gray;
  margin-bottom: 0;
}

.right-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5vw;
  background-color: #2D2D2D;
  border-radius: 8px;
  color: white;
  border: 2px solid #1E1E1E;
  flex-grow: 2;
}

.features-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  gap: 0vw;
  font-size: 1.4vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.4vw;
}

.features-text span {
  word-wrap: break-word;
}

.fluid-photo-container {
  flex-grow: 1;
  max-width: 100%;
  max-height: 80%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.fluid-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.horizontal-buttons {
  margin-top: 0.5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75vw;
}

.horizontal-buttons button {
  font-size: 1.4vw;
  font-weight: bold;
  padding: 0.75vw;
  background-color: #FFD500;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
}

.horizontal-buttons button:hover {
  background-color: #D4AF37;
  color: white;
  transform: scale(1.05);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.bottom-title {
  margin-top: 1vw;
  text-align: center;
  font-size: 2.5vw;
  font-weight: bold;
  color: #D4AF37;
}

.right-bottom-section {
  background-color: #2D2D2D;
  color: white;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  border-radius: 8px;
  border: 2px solid #1E1E1E;
}

.bottom-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-bottom-section .availability-text {
  font-size: 1.8vw;
  color: white;
  margin-bottom: 1vw;
}

.right-bottom-section .vertical-buttons button {
  background-color: #FFD500;
  color: black;
}

.right-bottom-section .vertical-buttons button:hover {
  background-color: #D4AF37;
  color: white;
  transform: scale(1.05);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.right-bottom-section .left-image-container {
  flex-grow: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: auto;
}

.right-bottom-section .left-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.full-width-title {
  text-align: center;
  font-size: 2.5vw;
  color: #D4AF37;
}

.footer {
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  background-color: #2D2D2D;
  color: white;
  padding: 2vw 3vw;
  border-radius: 8px;
  margin-top: 3vw;
  gap: 2vw;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.6vw;
  font-weight: bold;
  margin-bottom: 1vw;
  color: white;
}

.footer-column p {
  font-size: 1.2vw;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .page-container {
    grid-template-columns: 1fr;
    gap: 2vw;
  }

  .top-nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-toggle {
    display: block;
    font-size: 4vw;
    padding: 2vw;
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 2vw;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links button {
    font-size: 4vw;
    padding: 2vw;
  }

  .title-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }

  .left-title {
    font-size: 8vw;
  }

  .availability-text {
    font-size: 4.5vw;
  }

  .left-image-container {
    max-width: 60%;
    justify-content: center;
    margin: 0 auto;
  }

  .left-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .vertical-buttons button {
    width: 100%;
    font-size: 4vw;
    padding: 2vw;
  }

  .features-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 4vw;
    font-size: 4vw;
    text-align: center;
  }

  .horizontal-buttons {
    grid-template-columns: 1fr;
  }

  .horizontal-buttons button {
    width: 100%;
    max-width: 400px;
    font-size: 4vw;
    padding: 2vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .bottom-title {
    font-size: 6vw;
  }

  .disclaimer {
    font-size: 3vw;
  }

  .right-bottom-section .availability-text {
    font-size: 4.5vw;
  }

  .right-bottom-section .left-image-container {
    max-width: 60%;
    justify-content: center;
    margin: 0 auto;
  }

  .right-bottom-section .left-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .footer {
    flex-direction: column;
    gap: 2vw;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-column h3 {
    font-size: 6vw;
  }

  .footer-column p {
    font-size: 4vw;
  }
}
