/* style/index.css */\n.page-index {\n  font-family: 'Arial', sans-serif;\n  line-height: 1.6;\n  color: #ffffff; /* Default text color for dark body background */\n  background-color: #1a1a2e; /* Inherited from shared.css, but for clarity */\n}\n\n.page-index__video-section {\n  position: relative;\n  width: 100%;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  padding: 60px 20px;\n  padding-top: var(--header-offset, 120px);\n  background-color: #1a1a2e;\n}\n\n.page-index__video-container {\n  position: relative;\n  width: 100%;\n  max-width: 1200px;\n  margin: 0 auto;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n}\n\n.page-index__video-link {\n  display: block;\n  text-decoration: none;\n  position: relative;\n  width: 100%;\n  cursor: pointer;\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.page-index__video-link:hover {\n  transform: translateY(-2px);\n  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);\n}\n\n.page-index__video-wrapper {\n  position: relative;\n  width: 100%;\n  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */\n  height: 0;\n  overflow: hidden;\n  border-radius: 8px;\n  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);\n}\n\n.page-index__video {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  border: none;\n  border-radius: 8px;\n  object-fit: cover;\n  pointer-events: none; /* Prevents video controls from blocking click */\n}\n\n.page-index__video-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  background: rgba(0, 0, 0, 0.3);\n  border-radius: 8px;\n  opacity: 0;\n  transition: opacity 0.3s ease;\n  pointer-events: none;\n  z-index: 1;\n}\n\n.page-index__video-link:hover .page-index__video-overlay {\n  opacity: 1;\n}\n\n.page-index__video-click-hint {\n  color: #ffffff;\n  font-size: 18px;\n  font-weight: bold;\n  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);\n  padding: 10px 20px;\n  background: rgba(38, 169, 224, 0.8); /* Using primary color */\n  border-radius: 5px;\n  white-space: nowrap;\n}\n\n.page-index__video-cta {\n  width: 100%;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  margin-top: 30px;\n}\n\n.page-index__play-now-button {\n  display: inline-block;\n  padding: 15px 40px;\n  background: #EA7C07; /* Login color for CTA */\n  color: #ffffff;\n  text-decoration: none;\n  border-radius: 8px;\n  font-size: 18px;\n  font-weight: bold;\n  text-align: center;\n  transition: all 0.3s ease;\n  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);\n  border: none;\n  cursor: pointer;\n}\n\n.page-index__play-now-button:hover {\n  background: #c26505; /* Darker shade of login color */\n  transform: translateY(-2px);\n  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);\n}\n\n.page-index__title-section {\n  padding: 80px 20px;\n  text-align: center;\n  background: #1a1a2e;\n  color: #ffffff;\n}\n\n.page-index__title-container {\n  max-width: 900px;\n  margin: 0 auto;\n}\n\n.page-index__main-title {\n  font-size: 3.2em;\n  margin-bottom: 20px;\n  color: #26A9E0; /* Primary color for H1 */\n  line-height: 1.2;\n  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);\n}\n\n.page-index__title-description {\n  font-size: 1.2em;\n  margin-bottom: 40px;\n  max-width: 700px;\n  margin-left: auto;\n  margin-right: auto;\n  color: #f0f0f0;\n}\n\n.page-index__cta-buttons {\n  display: flex;\n  justify-content: center;\n  gap: 20px;\n  flex-wrap: wrap;\n}\n\n.page-index__cta-button {\n  display: inline-block;\n  padding: 15px 30px;\n  text-decoration: none;\n  border-radius: 8px;\n  font-size: 1.1em;\n  font-weight: bold;\n  transition: all 0.3s ease;\n  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);\n  min-width: 180px;\n  text-align: center;\n}\n\n.page-index__btn-primary {\n  background: #EA7C07; /* Login color for primary CTA */\n  color: #ffffff;\n  border: 2px solid transparent;\n}\n\n.page-index__btn-primary:hover {\n  background: #c26505;\n  transform: translateY(-2px);\n  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);\n}\n\n.page-index__btn-secondary {\n  background: #26A9E0; /* Primary color for secondary CTA */\n  color: #ffffff;\n  border: 2px solid transparent;\n}\n\n.page-index__btn-secondary:hover {\n  background: #1e87b7;\n  transform: translateY(-2px);\n  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);\n}\n\n.page-index__features-section {\n  padding: 80px 20px;\n  background: #f9f9f9; /* Light background for contrast */\n  color: #333333; /* Dark text for light background */\n  text-align: center;\n}\n\n.page-index__features-container {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.page-index__features-title {\n  font-size: 2.5em;\n  margin-bottom: 20px;\n  color: #1a1a2e;\n}\n\n.page-index__features-intro {\n  font-size: 1.1em;\n  max-width: 800px;\n  margin: 0 auto 50px;\n  line-height: 1.8;\n  color: #555555;\n}\n\n.page-index__feature-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n}\n\n.page-index__feature-item {\n  background: #ffffff;\n  padding: 30px;\n  border-radius: 10px;\n  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);\n  text-align: left;\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.page-index__feature-item:hover {\n  transform: translateY(-5px);\n  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);\n}\n\n.page-index__feature-image {\n  width: 100%;\n  height: 200px;\n  object-fit: cover;\n  border-radius: 8px;\n  margin-bottom: 20px;\n  max-width: 100%; /* Ensure responsiveness */\n  display: block;\n}\n\n.page-index__feature-heading {\n  font-size: 1.5em;\n  margin-bottom: 15px;\n  color: #26A9E0;\n}\n\n.page-index__feature-description {\n  font-size: 0.95em;\n  color: #666666;\n  line-height: 1.7;\n}\n\n.page-index__faq-section {\n  padding: 80px 20px;\n  background: #1a1a2e;\n  color: #ffffff;\n}\n\n.page-index__faq-container {\n  max-width: 900px;\n  margin: 0 auto;\n}\n\n.page-index__faq-main-title {\n  font-size: 2.5em;\n  margin-bottom: 20px;\n  text-align: center;\n  color: #26A9E0;\n}\n\n.page-index__faq-intro {\n  font-size: 1.1em;\n  text-align: center;\n  margin-bottom: 50px;\n  color: #f0f0f0;\n}\n\n.page-index__faq-list {\n  display: flex;\n  flex-direction: column;\n  gap: 15px;\n}\n\ndetails.page-index__faq-item {\n  margin-bottom: 0;\n  border-radius: 8px;\n  border: 1px solid rgba(255, 255, 255, 0.1);\n  overflow: hidden;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);\n}\n\ndetails.page-index__faq-item summary.page-index__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 18px 25px;\n  cursor: pointer;\n  user-select: none;\n  list-style: none;\n  transition: background-color 0.3s ease;\n  color: #ffffff;\n  font-size: 1.1em;\n  font-weight: 600;\n}\n\ndetails.page-index__faq-item summary.page-index__faq-question::-webkit-details-marker {\n  display: none;\n}\n\ndetails.page-index__faq-item summary.page-index__faq-question:hover {\n  background: rgba(255, 255, 255, 0.1);\n}\n\n.page-index__faq-qtext {\n  flex: 1;\n  font-size: 1em;\n  font-weight: 600;\n  line-height: 1.5;\n  text-align: left;\n  color: #ffffff;\n}\n\n.page-index__faq-toggle {\n  font-size: 24px;\n  font-weight: bold;\n  color: #26A9E0; /* Primary color for toggle icon */\n  flex-shrink: 0;\n  margin-left: 15px;\n  width: 28px;\n  text-align: center;\n}\n\ndetails.page-index__faq-item .page-index__faq-answer {\n  padding: 0 25px 20px;\n  background: rgba(0, 0, 0, 0.2);\n  border-radius: 0 0 8px 8px;\n  color: #f0f0f0;\n  font-size: 0.95em;\n  line-height: 1.7;\n}\n\n.page-index__faq-answer p {\n  margin: 0;\n}\n\n.page-index__brand-section {\n  padding: 80px 20px;\n  background: #f9f9f9; /* Light background for contrast */\n  color: #333333; /* Dark text for light background */\n  text-align: center;\n}\n\n.page-index__brand-container {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.page-index__brand-title {\n  font-size: 2.5em;\n  margin-bottom: 20px;\n  color: #1a1a2e;\n}\n\n.page-index__brand-tagline {\n  font-size: 1.2em;\n  margin-bottom: 50px;\n  color: #555555;\n}\n\n.page-index__brand-content {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));\n  gap: 30px;\n}\n\n.page-index__brand-item {\n  background: #ffffff;\n  padding: 30px;\n  border-radius: 10px;\n  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);\n  text-align: left;\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.page-index__brand-item:hover {\n  transform: translateY(-5px);\n  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);\n}\n\n.page-index__brand-subtitle {\n  font-size: 1.5em;\n  margin-bottom: 15px;\n  color: #26A9E0;\n}\n\n.page-index__brand-item p {\n  font-size: 0.95em;\n  color: #666666;\n  line-height: 1.7;\n}\n\n.page-index__brand-image {\n  width: 100%;\n  height: 300px;\n  object-fit: cover;\n  border-radius: 8px;\n  margin-top: 20px;\n  max-width: 100%; /* Ensure responsiveness */\n  display: block;\n}\n\n.page-index__blog-section {\n  padding: 80px 20px;\n  background: #1a1a2e;\n  color: #ffffff;\n}\n\n.page-index__blog-container {\n  max-width: 1200px;\n  margin: 0 auto;\n}\n\n.page-index__blog-title {\n  font-size: 2.5em;\n  margin-bottom: 20px;\n  text-align: center;\n  color: #26A9E0;\n}\n\n.page-index__blog-intro {\n  font-size: 1.1em;\n  text-align: center;\n  margin-bottom: 50px;\n  color: #f0f0f0;\n}\n\n.page-index__blog-list {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n}