.page-resources-how-to-access-vuabai9 {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-resources-how-to-access-vuabai9__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, #26A9E0 0%, #007bff 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-resources-how-to-access-vuabai9__hero-content {
  max-width: 900px;
  z-index: 10;
  margin-bottom: 30px;
}

.page-resources-how-to-access-vuabai9__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-how-to-access-vuabai9__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-access-vuabai9__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-how-to-access-vuabai9__btn-primary,
.page-resources-how-to-access-vuabai9__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-how-to-access-vuabai9__btn-primary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-how-to-access-vuabai9__btn-primary:hover {
  background: #d46a00;
  border-color: #d46a00;
  transform: translateY(-2px);
}

.page-resources-how-to-access-vuabai9__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-how-to-access-vuabai9__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-how-to-access-vuabai9__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-how-to-access-vuabai9__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.7); /* Adjust brightness for better text contrast, no color change */
}

.page-resources-how-to-access-vuabai9__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #ffffff; /* Light background for main content */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

.page-resources-how-to-access-vuabai9__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-resources-how-to-access-vuabai9__subsection-title {
  font-size: 1.6em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-access-vuabai9__paragraph {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-how-to-access-vuabai9__paragraph strong {
  color: #26A9E0;
}

.page-resources-how-to-access-vuabai9__image-block {
  text-align: center;
  margin: 30px 0;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-resources-how-to-access-vuabai9__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.page-resources-how-to-access-vuabai9__cta-section {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(90deg, #26A9E0 0%, #007bff 100%);
  color: #ffffff;
  border-radius: 8px;
  margin: 50px 0;
}

.page-resources-how-to-access-vuabai9__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-how-to-access-vuabai9__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-how-to-access-vuabai9__faq-section {
  background: #26A9E0;
  color: #ffffff;
  padding: 50px 30px;
  margin-top: 50px;
  border-radius: 8px;
}

.page-resources-how-to-access-vuabai9__faq-list {
  max-width: 800px;
  margin: 30px auto 0;
}

.page-resources-how-to-access-vuabai9__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
}

.page-resources-how-to-access-vuabai9__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s ease;
}

.page-resources-how-to-access-vuabai9__faq-question:hover {
  color: #f0f0f0;
}

.page-resources-how-to-access-vuabai9__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-access-vuabai9__faq-item.active .page-resources-how-to-access-vuabai9__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-access-vuabai9__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-how-to-access-vuabai9__faq-item.active .page-resources-how-to-access-vuabai9__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px;
}

.page-resources-how-to-access-vuabai9__final-cta {
  text-align: center;
  margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-how-to-access-vuabai9__hero-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-access-vuabai9__hero-description {
    font-size: 1.1em;
  }
  .page-resources-how-to-access-vuabai9__section-title {
    font-size: 2em;
  }
  .page-resources-how-to-access-vuabai9__subsection-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-access-vuabai9 {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-how-to-access-vuabai9__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-how-to-access-vuabai9__hero-title {
    font-size: 2.2em;
  }
  .page-resources-how-to-access-vuabai9__hero-description {
    font-size: 1em;
  }
  .page-resources-how-to-access-vuabai9__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-how-to-access-vuabai9__btn-primary,
  .page-resources-how-to-access-vuabai9__btn-secondary,
  .page-resources-how-to-access-vuabai9 a[class*="button"],
  .page-resources-how-to-access-vuabai9 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-how-to-access-vuabai9__content-area {
    padding: 30px 15px;
    margin-top: -40px;
  }
  .page-resources-how-to-access-vuabai9__section-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-access-vuabai9__subsection-title {
    font-size: 1.3em;
  }
  .page-resources-how-to-access-vuabai9__image-block,
  .page-resources-how-to-access-vuabai9__cta-section,
  .page-resources-how-to-access-vuabai9__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-how-to-access-vuabai9 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-how-to-access-vuabai9__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-how-to-access-vuabai9__faq-question {
    font-size: 1.1em;
  }
  .page-resources-how-to-access-vuabai9__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-access-vuabai9__hero-title {
    font-size: 1.8em;
  }
  .page-resources-how-to-access-vuabai9__hero-description {
    font-size: 0.95em;
  }
  .page-resources-how-to-access-vuabai9__cta-title {
    font-size: 2em;
  }
  .page-resources-how-to-access-vuabai9__btn-primary,
  .page-resources-how-to-access-vuabai9__btn-secondary {
    padding: 12px 20px;
  }
}