:root {
  --primary-color: #0056B3; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --bg-light-variant: #f9f9f9;
  --bg-dark-variant: #004a9e; /* Slightly lighter than primary for subtle contrast */
  --border-color: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with shared body background */
.page-index {
  color: var(--text-color-dark-bg); /* Default text color for dark body background */
  background-color: transparent; /* Assuming shared.css defines body background, this section will float on top */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Video Section */
.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  /* Fixed header offset */
  padding-top: var(--header-offset, 120px);
  background-color: var(--bg-dark-variant); /* Slightly lighter dark blue for video background */
  box-sizing: border-box;
}

.page-index__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-index__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.page-index__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index__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.25);
  box-sizing: border-box;
}

.page-index__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 interfering with click event on the link */
  max-width: 100%; /* Ensure responsiveness */
  display: block;
}

.page-index__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.5);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index__video-link:hover .page-index__video-overlay {
  opacity: 1;
}

.page-index__video-click-hint {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  background: rgba(0, 123, 255, 0.8); /* Using a slightly brighter blue for contrast */
  border-radius: 5px;
  white-space: nowrap;
}

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

.page-index__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color); /* Gold button for CTA */
  color: var(--text-color-light-bg); /* Dark text on gold 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 4px 12px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__play-now-button:hover {
  background: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-index__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* H1 Title + Activity Promotion Buttons */
.page-index__title-section {
  background: var(--primary-color); /* Deep Blue background */
  color: var(--text-color-dark-bg); /* White text */
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-index__title-container {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-index__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--text-color-dark-bg); /* Ensure white text on dark blue */
}

.page-index__title-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0e0e0; /* Slightly off-white for body text on dark background */
}

.page-index__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-index__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);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index__btn-primary {
  background: var(--secondary-color); /* Gold button */
  color: var(--text-color-light-bg); /* Dark text on gold */
  border: 2px solid transparent;
}

.page-index__btn-primary:hover {
  background: #e6c200; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index__btn-secondary {
  background: transparent;
  color: var(--secondary-color); /* Gold text */
  border: 2px solid var(--secondary-color); /* Gold border */
}

.page-index__btn-secondary:hover {
  background: var(--secondary-color); /* Gold background */
  color: var(--text-color-light-bg); /* Dark text */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Brand Introduction */
.page-index__brand-section {
  padding: 80px 20px;
  background-color: var(--bg-light-variant); /* Light grey background */
  color: var(--text-color-light-bg); /* Dark text */  box-sizing: border-box;
}

.page-index__brand-container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-index__brand-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color); /* Primary color for section title */
}

.page-index__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  box-sizing: border-box;
}

.page-index__brand-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.page-index__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index__brand-item-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index__brand-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
}

/* FAQ Section */
.page-index__faq-section {
  padding: 80px 20px;
  background-color: var(--primary-color); /* Primary blue background for FAQ */
  color: var(--text-color-dark-bg); /* White text */
  box-sizing: border-box;
}

.page-index__faq-container {
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-index__faq-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary-color); /* Gold for FAQ title */
}

.page-index__faq-list {
  box-sizing: border-box;
}

.page-index__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff; /* White background for question */
  color: var(--text-color-light-bg); /* Dark text for question */
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.page-index__faq-question:hover {
  background: var(--bg-light-variant);
  border-color: #d0d0d0;
}

.page-index__faq-question:active {
  background: #eeeeee;
}

.page-index__faq-question-title {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary-color); /* Primary color for question text */
  pointer-events: none;
}

.page-index__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index__faq-item.active .page-index__faq-toggle {
  color: var(--secondary-color); /* Gold for active toggle */
  transform: rotate(45deg); /* Rotate for 'x' effect, or keep as '-' */
}

.page-index__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 15px;
  opacity: 0;
  background: #f9f9f9; /* Light grey background for answer */
  color: var(--text-color-light-bg); /* Dark text for answer */
  box-sizing: border-box;
}