/* style/index.css */\n\n/* --- General Page Styling --- */\n.page-index {\n  font-family: 'Arial', sans-serif;\n  line-height: 1.6;\n  color: #333333; /* Default text color for light backgrounds */\n  background-color: var(--background-color, #ffffff); /* Fallback to white if var not set */\n}\n\n/* --- Video Section --- */\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); /* Ensure space for fixed header */\n  background-color: #f0f8ff; /* Light blue background for video section */\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; /* Prevent video controls from blocking click event on parent link */\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.4);\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: 20px;\n  font-weight: bold;\n  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);\n  padding: 12px 25px;\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: 18px 45px;\n  background: #EA7C07; /* Login color for CTA */\n  color: #ffffff;\n  text-decoration: none;\n  border-radius: 10px;\n  font-size: 20px;\n  font-weight: bold;\n  text-align: center;\n  transition: all 0.3s ease;\n  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);\n  border: none;\n  cursor: pointer;\n  letter-spacing: 0.5px;\n  text-transform: uppercase;\n}\n\n.page-index__play-now-button:hover {\n  background: #d66a00;\n  transform: translateY(-3px);\n  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);\n}\n\n.page-index__play-now-button:active {\n  transform: translateY(0);\n  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);\n}\n\n/* --- H1 Title Section --- */\n.page-index__title-section {\n  text-align: center;\n  padding: 80px 20px;\n  background-color: #ffffff; /* White background */\n  color: #333333;\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: 48px;\n  font-weight: 800;\n  color: #26A9E0; /* Primary color for H1 */\n  margin-bottom: 25px;\n  line-height: 1.2;\n}\n\n.page-index__title-description {\n  font-size: 18px;\n  color: #555555;\n  margin-bottom: 40px;\n  max-width: 800px;\n  margin-left: auto;\n  margin-right: auto;\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 35px;\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 10px rgba(0, 0, 0, 0.1);\n  border: none;\n  cursor: pointer;\n}\n\n.page-index__cta-button--primary {\n  background: #26A9E0; /* Primary brand color */\n  color: #ffffff;\n}\n\n.page-index__cta-button--primary:hover {\n  background: #1e87b5;\n  transform: translateY(-2px);\n  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);\n}\n\n.page-index__cta-button--secondary {\n  background: #EA7C07; /* Login color */\n  color: #ffffff;\n}\n\n.page-index__cta-button--secondary:hover {\n  background: #d66a00;\n  transform: translateY(-2px);\n  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);\n}\n\n\n/* --- Brand Section --- */\n.page-index__brand-section {\n  padding: 80px 20px;\n  background-color: #f9f9f9; /* Light gray background */\n  color: #333333;\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: 38px;\n  font-weight: 700;\n  color: #26A9E0; /* Primary color */\n  text-align: center;\n  margin-bottom: 50px;\n  position: relative;\n}\n\n.page-index__brand-title::after {\n  content: '';\n  display: block;\n  width: 80px;\n  height: 4px;\n  background-color: #EA7C07; /* Accent color */\n  margin: 15px auto 0;\n  border-radius: 2px;\n}\n\n.page-index__brand-content {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 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 20px rgba(0, 0, 0, 0.08);\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n  border-top: 5px solid #26A9E0; /* Accent border */\n}\n\n.page-index__brand-item:hover {\n  transform: translateY(-5px);\n  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);\n}\n\n.page-index__brand-item h3 {\n  font-size: 24px;\n  color: #333333;\n  margin-top: 0;\n  margin-bottom: 15px;\n  font-weight: 600;\n}\n\n.page-index__brand-item p {\n  font-size: 16px;\n  color: #555555;\n  line-height: 1.7;\n}\n\n\n/* --- FAQ Section --- */\n.page-index__faq-section {\n  padding: 80px 20px;\n  background-color: #ffffff; /* White background */\n  color: #333333;\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: 38px;\n  font-weight: 700;\n  color: #26A9E0; /* Primary color */\n  text-align: center;\n  margin-bottom: 50px;\n  position: relative;\n}\n\n.page-index__faq-main-title::after {\n  content: '';\n  display: block;\n  width: 80px;\n  height: 4px;\n  background-color: #EA7C07; /* Accent color */\n  margin: 15px auto 0;\n  border-radius: 2px;\n}\n\n.page-index__faq-list {\n  margin-top: 30px;\n}\n\n.page-index__faq-item {\n  margin-bottom: 15px;\n  border-radius: 8px;\n  overflow: hidden;\n  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n}\n\n.page-index__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 18px 25px;\n  background: #f0f8ff; /* Light blue background */\n  border: 1px solid #e0e0e0;\n  border-radius: 8px;\n  cursor: pointer;\n  user-select: none;\n  transition: background-color 0.3s ease, border-color 0.3s ease;\n  position: relative;\n}\n\n.page-index__faq-question:hover {\n  background: #e6f2ff;\n  border-color: #c0c0c0;\n}\n\n.page-index__faq-question:active {\n  background: #d9ecff;\n}\n\n.page-index__faq-question h3 {\n  margin: 0;\n  padding: 0;\n  flex: 1;\n  font-size: 18px;\n  font-weight: 600;\n  line-height: 1.5;\n  color: #333333;\n  pointer-events: none; /* Prevent h3 from blocking click event */\n}\n\n.page-index__faq-toggle {\n  font-size: 28px;\n  font-weight: bold;\n  line-height: 1;\n  color: #26A9E0; /* Primary color */\n  transition: transform 0.3s ease, color 0.3s ease;\n  flex-shrink: 0;\n  margin-left: 15px;\n  pointer-events: none; /* Prevent icon from blocking click event */\n  display: inline-flex;\n  align-items: center;\n  justify-content: center;\n  width: 30px;\n  height: 30px;\n}\n\n.page-index__faq-item.active .page-index__faq-toggle {\n  color: #EA7C07; /* Accent color when active */\n  transform: rotate(45deg); /* Plus to X effect */\n}