/* style/resources-789p-introduction.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-color-dark: #000;
  --background-color-medium: #1a1a1a;
  --background-color-card: #2a2a2a;
  --border-color: #e0e0e0;
}

.page-resources-789p-introduction {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light); /* Body background is dark #000, so main text is light */
  background-color: var(--background-color-dark); /* Ensure consistency if body bg is overridden */
}

.page-resources-789p-introduction h1,
.page-resources-789p-introduction h2,
.page-resources-789p-introduction h3,
.page-resources-789p-introduction h4,
.page-resources-789p-introduction h5,
.page-resources-789p-introduction h6 {
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-resources-789p-introduction p {
  margin-bottom: 1em;
}

.page-resources-789p-introduction strong {
  color: var(--primary-color);
}

/* Video Section */
.page-resources-789p-introduction__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, var(--background-color-dark) 0%, var(--secondary-color) 100%);
  box-sizing: border-box;
}

.page-resources-789p-introduction__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page-resources-789p-introduction__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-789p-introduction__video-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-resources-789p-introduction__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background-color: #1a1a1a; /* Placeholder background */
}

.page-resources-789p-introduction__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevents video controls from blocking click event on parent <a> */
}

.page-resources-789p-introduction__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-789p-introduction__video-link:hover .page-resources-789p-introduction__video-overlay {
  opacity: 1;
}

.page-resources-789p-introduction__video-click-hint {
  color: var(--text-color-light);
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8); /* Using primary color with alpha */
  border-radius: 50px;
  white-space: nowrap;
}

.page-resources-789p-introduction__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  box-sizing: border-box;
}

.page-resources-789p-introduction__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--background-color-dark); /* Dark text on gold button for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-resources-789p-introduction__play-now-button:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-789p-introduction__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Title Section */
.page-resources-789p-introduction__title-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
  box-sizing: border-box;
}

.page-resources-789p-introduction__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-789p-introduction__main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-resources-789p-introduction__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-resources-789p-introduction__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-789p-introduction__cta-button {
  display: inline-block;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  word-wrap: break-word;
}

.page-resources-789p-introduction__btn-primary {
  background: var(--primary-color);
  color: var(--background-color-dark);
  border: 2px solid transparent;
}

.page-resources-789p-introduction__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-789p-introduction__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-color-light);
  border: 2px solid var(--secondary-color);
}

.page-resources-789p-introduction__btn-secondary:hover {
  background: #6a0000; /* Darker red */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Brand Section */
.page-resources-789p-introduction__brand-section {
  padding: 80px 20px;
  background-color: var(--background-color-medium); /* Darker background for contrast */
  color: var(--text-color-light);
  box-sizing: border-box;
}

.page-resources-789p-introduction__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-789p-introduction__brand-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-resources-789p-introduction__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-resources-789p-introduction__brand-item {
  background-color: var(--background-color-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #e0e0e0;
}

.page-resources-789p-introduction__brand-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-789p-introduction__brand-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

.page-resources-789p-introduction__brand-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  margin-left: auto; /* Center image */
  margin-right: auto; /* Center image */
}

/* FAQ Section */
.page-resources-789p-introduction__faq-section {
  padding: 80px 20px;
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
  box-sizing: border-box;
}

.page-resources-789p-introduction__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-789p-introduction__faq-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-resources-789p-introduction__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-resources-789p-introduction__faq-item {
  background-color: var(--background-color-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-resources-789p-introduction__faq-item.active {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-789p-introduction__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #3a3a3a;
  border-bottom: 1px solid #444;
  transition: background-color 0.3s ease;
}

.page-resources-789p-introduction__faq-question:hover {
  background-color: #4a4a4a;
}

.page-resources-789p-introduction__faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  flex: 1;
  pointer-events: none;
}

.page-resources-789p-introduction__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #cccccc;
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
  pointer-events: none;
}

.page-resources-789p-introduction__faq-item.active .page-resources-789p-introduction__faq-toggle {
  transform: rotate(45deg); /* Change + to X */
  color: var(--primary-color);
}

.page-resources-789p-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, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: var(--background-color-card);
  color: #cccccc;
}

.page-resources-789p-introduction__faq-item.active .page-resources-789p-introduction__faq-answer {
  max-height: 2000px !important; /* Sufficiently large */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: none;
}

/* Blog Section */
.page-resources-789p-introduction__blog-section {
  padding: 80px 20px;
  background-color: var(--background-color-medium); /* Dark background */
  color: var(--text-color-light);
  box-sizing: border-box;
}

.page-resources-789p-introduction__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-789p-introduction__blog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-resources-789p-introduction__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-789p-introduction__blog-item {
  background-color: var(--background-color-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}