/* style/resources-vs388-mobile-download-installation.css */
.page-resources-vs388-mobile-download-installation {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f5f5f5; /* Matching body background from shared.css */
}

.page-resources-vs388-mobile-download-installation__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); /* Ensure header offset */
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
  min-height: 500px;
}

.page-resources-vs388-mobile-download-installation__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-vs388-mobile-download-installation__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-vs388-mobile-download-installation__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-vs388-mobile-download-installation__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-vs388-mobile-download-installation__btn-primary,
.page-resources-vs388-mobile-download-installation__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-resources-vs388-mobile-download-installation__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-vs388-mobile-download-installation__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-vs388-mobile-download-installation__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-vs388-mobile-download-installation__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

.page-resources-vs388-mobile-download-installation__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-vs388-mobile-download-installation__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: brightness(0.8);
}

.page-resources-vs388-mobile-download-installation__content-area,
.page-resources-vs388-mobile-download-installation__installation-guide,
.page-resources-vs388-mobile-download-installation__account-section,
.page-resources-vs388-mobile-download-installation__login-guide,
.page-resources-vs388-mobile-download-installation__features-section,
.page-resources-vs388-mobile-download-installation__promotions-section,
.page-resources-vs388-mobile-download-installation__faq-section,
.page-resources-vs388-mobile-download-installation__conclusion-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}