:root {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --accent-color: #E53935; /* For emphasis if needed */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #F5F5F5;
  --border-color: #e0e0e0;
}

.page-resources-99vz-introduction {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light body background */
  background-color: var(--background-light); /* Inherited from shared, but for clarity */
  padding-top: var(--header-offset, 120px);
}

.page-resources-99vz-introduction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-99vz-introduction__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color); /* Dark background for hero */
  color: var(--text-color-light); /* Light text on dark background */
  overflow: hidden;
}

.page-resources-99vz-introduction__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-99vz-introduction__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-99vz-introduction__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-resources-99vz-introduction__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-99vz-introduction__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-resources-99vz-introduction__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-99vz-introduction__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-99vz-introduction__cta-button:hover {
  background: #e0b800;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-resources-99vz-introduction__section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-resources-99vz-introduction__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-resources-99vz-introduction__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-99vz-introduction__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-99vz-introduction__sub-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-resources-99vz-introduction__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-resources-99vz-introduction__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-color-dark);
}

.page-resources-99vz-introduction__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-99vz-introduction__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-resources-99vz-introduction__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* CTA Wrapper for conclusion section */
.page-resources-99vz-introduction__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Styles */
.page-resources-99vz-introduction__faq-section {
  background-color: #f0f0f0;
}

.page-resources-99vz-introduction__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-99vz-introduction__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: var(--text-color-dark);
}