/* style/resources-vz99-login-faq.css */
.page-resources-vz99-login-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--primary-color); /* Inherited from shared.css, which is #1A202C */
}

.page-resources-vz99-login-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-vz99-login-faq__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-resources-vz99-login-faq__light-bg {
  background-color: #f8f9fa; /* Lighter background for contrast sections */
  color: #1A202C; /* Dark text for light background */
}

/* Hero Section */
.page-resources-vz99-login-faq__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  box-sizing: border-box;
}

.page-resources-vz99-login-faq__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
}

.page-resources-vz99-login-faq__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-vz99-login-faq__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-vz99-login-faq__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
}

.page-resources-vz99-login-faq__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-resources-vz99-login-faq__intro-section,
.page-resources-vz99-login-faq__faq-section,
.page-resources-vz99-login-faq__related-info-section,
.page-resources-vz99-login-faq__video-section,
.page-resources-vz99-login-faq__other-faq-section,
.page-resources-vz99-login-faq__conclusion-section {
  padding: 60px 0;
}

.page-resources-vz99-login-faq__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  text-align: center;
  color: #FFD700; /* Auxiliary color for section titles on dark bg */
}

.page-resources-vz99-login-faq__light-bg .page-resources-vz99-login-faq__section-title {
  color: #1A202C; /* Primary color for section titles on light bg */
}

.page-resources-vz99-login-faq__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-vz99-login-faq__text-block a {
  color: #FFD700; /* Link color */
  text-decoration: underline;
}

.page-resources-vz99-login-faq__text-block a:hover {
  color: #e6c200; /* Darker gold on hover */
}

/* Buttons */
.page-resources-vz99-login-faq__btn-primary,
.page-resources-vz99-login-faq__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-vz99-login-faq__btn-primary {
  background-color: #FFD700;
  color: #1A202C; /* Dark text on gold background */
  border: 2px solid #FFD700;
}

.page-resources-vz99-login-faq__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-vz99-login-faq__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-vz99-login-faq__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* FAQ Section */
.page-resources-vz99-login-faq__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-vz99-login-faq__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #1A202C; /* Dark text on light background */
}

.page-resources-vz99-login-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #FFD700; /* Gold background for question */
  color: #1A202C; /* Dark text for question */
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-resources-vz99-login-faq__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #1A202C; /* Ensure dark text for question title */
}

.page-resources-vz99-login-faq__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #1A202C; /* Ensure dark text for toggle */
}

.page-resources-vz99-login-faq__faq-item.active .page-resources-vz99-login-faq__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-vz99-login-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #333333; /* Dark text for answer content */
}

.page-resources-vz99-login-faq__faq-item.active .page-resources-vz99-login-faq__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 25px;
}

.page-resources-vz99-login-faq__faq-answer p {
  margin-bottom: 15px;
  font-size: 1em;
  color: #333333; /* Ensure dark text for answer paragraphs */
}

.page-resources-vz99-login-faq__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-resources-vz99-login-faq__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #1A202C;
  border-radius: 10px;
}

.page-resources-vz99-login-faq__cta-text {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 25px;
}

/* Content Grid */
.page-resources-vz99-login-faq__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-resources-vz99-login-faq__content-block {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark bg */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-vz99-login-faq__light-bg .page-resources-vz99-login-faq__content-block {
  background-color: #ffffff;
  color: #1A202C;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-vz99-login-faq__content-block-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-resources-vz99-login-faq__light-bg .page-resources-vz99-login-faq__content-block-title {
  color: #1A202C;
}

.page-resources-vz99-login-faq__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum height */
}

/* Video Section */
.page-resources-vz99-login-faq__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-vz99-login-faq__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

.page-resources-vz99-login-faq__video-caption {
  text-align: center;
  font-style: italic;
  margin-top: 15px;
  font-size: 1.1em;
  color: #ffffff;
}

/* Conclusion Section */
.page-resources-vz99-login-faq__conclusion-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-vz99-login-faq__hero-title {
    font-size: 2.8em;
  }
  .page-resources-vz99-login-faq__section-title {
    font-size: 2em;
  }
  .page-resources-vz99-login-faq__content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-vz99-login-faq {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-vz99-login-faq__hero-section {
    height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-vz99-login-faq__hero-title {
    font-size: 2em;
  }

  .page-resources-vz99-login-faq__hero-description {
    font-size: 1em;
  }

  .page-resources-vz99-login-faq__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}