
    /* General styling for the page */
.page-99vc {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll from fixed buttons */
  padding-top: 10px; /* Small padding for the first section, relying on body padding for header offset */
}

/* Hero Section */
.page-99vc__hero-section {
  position: relative;
  background-color: #2a2a2a;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}

.page-99vc__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-99vc__hero-title {
  font-size: 2.5em;
  color: #ffd700; /* Gold */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-99vc__hero-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-99vc__hero-image-container {
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-99vc__hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

/* Floating Buttons */
.page-99vc__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-99vc__register-btn,
.page-99vc__login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: #1a1a1a; /* Dark text for contrast */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  min-width: 120px;
}

.page-99vc__register-btn {
  background-color: #00ff00; /* Bright green */
}

.page-99vc__login-btn {
  background-color: #ffd700; /* Gold */
}

.page-99vc__register-btn:hover,
.page-99vc__login-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* General Section Styling */
.page-99vc__section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-99vc__section:nth-of-type(even) {
  background-color: #222222;
}

.page-99vc__section:nth-of-type(odd) {
  background-color: #1a1a1a;
}

.page-99vc__section-title {
  font-size: 2em;
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-99vc__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #00ff00;
  border-radius: 2px;
}

.page-99vc__text-content {
  font-size: 1em;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Product Showcase */
.page-99vc__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-99vc__product-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-99vc__product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-99vc__product-image {
  width: 100%;
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-99vc__product-name {
  font-size: 1.4em;
  color: #ffd700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-99vc__product-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px;
}

/* Promotions */
.page-99vc__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-99vc__promotion-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-99vc__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-99vc__promotion-image {
  width: 100%;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-99vc__promotion-title {
  font-size: 1.5em;
  color: #00ff00;
  padding: 20px 15px 10px;
}

.page-99vc__promotion-text {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px;
}

/* Advantages */
.page-99vc__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-99vc__advantage-item {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box; /* Required for list items */
}

.page-99vc__advantage-item:hover {
  transform: translateY(-5px);
  background-color: #333333;
}

.page-99vc__advantage-icon {
  width: 100px; /* Min size 200x200px, but scaled down visually */
  height: 100px; /* Min size 200x200px, but scaled down visually */
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-99vc__advantage-title {
  font-size: 1.3em;
  color: #ffd700;
  margin-bottom: 10px;
}

.page-99vc__advantage-text {
  font-size: 0.9em;
  color: #cccccc;
}

/* How-to Guide */
.page-99vc__guide-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.page-99vc__guide-step {
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box; /* Required for list items */
}

.page-99vc__guide-step-title {
  font-size: 1.4em;
  color: #00ff00;
  margin-bottom: 15px;
}

.page-99vc__guide-step-text {
  font-size: 1em;
  color: #cccccc;
}

/* FAQ Section */
.page-99vc__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-99vc__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box; /* Required for list items */
}

.page-99vc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #333333;
  color: #ffd700;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-99vc__faq-question:hover {
  background-color: #3d3d3d;
}

.page-99vc__faq-title {
  margin: 0;
  font-size: 1.1em;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #ffd700; /* Ensure good contrast */
}

.page-99vc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  pointer-events: none; /* Prevent span from blocking click event */
  transition: transform 0.3s ease;
  color: #00ff00; /* Ensure good contrast */
}

.page-99vc__faq-item.active .page-99vc__faq-toggle {
  transform: rotate(45deg); /* Plus to X */
}

.page-99vc__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  background-color: #2a2a2a;
  color: #cccccc;
}

.page-99vc__faq-item.active .page-99vc__faq-answer {
  max-height: 2000px !important; /* Sufficiently large value */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-99vc__faq-text {
  margin: 0;
  font-size: 0.95em;
  word-wrap: break-word; /* Ensure text wraps */
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Contact Section */
.page-99vc__contact-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

.page-99vc__contact-item {
  background-color: #2a2a2a;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #cccccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box; /* Required for list items */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-99vc__hero-title {
    font-size: 1.8em;
  }

  .page-99vc__hero-description {
    font-size: 1em;
  }

  .page-99vc__section-title {
    font-size: 1.6em;
  }

  .page-99vc__section {
    padding: 30px 15px;
  }

  .page-99vc__floating-buttons {
    flex-direction: row;
    width: calc(100% - 40px);
    bottom: 15px;
    left: 20px;
    right: 20px;
    justify-content: space-around;
  }

  .page-99vc__register-btn,
  .page-99vc__login-btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.95em;
    min-width: unset;
  }

  /* List items mobile responsiveness */
  .page-99vc__advantage-list,
  .page-99vc__guide-steps,
  .page-99vc__product-grid,
  .page-99vc__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-99vc__advantage-item,
  .page-99vc__guide-step,
  .page-99vc__product-item,
  .page-99vc__promotion-card,
  .page-99vc__faq-item,
  .page-99vc__contact-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 15px !important; /* Adjust padding for smaller screens */
  }

  .page-99vc__product-image,
  .page-99vc__promotion-image,
  .page-99vc__advantage-icon {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-99vc__faq-question {
    padding: 15px 20px;
  }

  .page-99vc__faq-answer {
    padding: 0 20px;
  }

  .page-99vc__faq-item.active .page-99vc__faq-answer {
    padding: 15px 20px !important;
  }

  .page-99vc__faq-text {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-99vc__floating-buttons {
    gap: 5px;
  }
  .page-99vc__register-btn,
  .page-99vc__login-btn {
    padding: 8px 10px;
    font-size: 0.85em;
  }
  .page-99vc__hero-title {
    font-size: 1.6em;
  }
  .page-99vc__section-title {
    font-size: 1.4em;
  }
}
  