/* style/support.css */
/* 页面完整样式代码 - 注意：所有选择器必须使用BEM命名规则（双下划线__连接） */

/* Base Styles */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, assuming dark */
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-support__section {
  padding: 80px 0;
  text-align: center;
}

.page-support__dark-bg {
  background-color: #26A9E0; /* Primary brand color for dark sections */
  color: #ffffff;
}

.page-support__light-bg {
  background-color: #ffffff; /* Auxiliary color for light sections */
  color: #333333;
}

.page-support__main-heading {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-support__section-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherits from parent section */
  line-height: 1.3;
}

.page-support__section-intro-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit; /* Inherits from parent section */
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  padding: 120px 0 80px; /* Adjust padding-top to accommodate header offset */
  padding-top: var(--header-offset, 120px); /* Use CSS variable for dynamic header offset */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
}

.page-support__hero-section .page-support__container {
  position: relative;
  z-index: 2;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  max-width: 100%; /* For button responsiveness */
  box-sizing: border-box; /* For button responsiveness */
  white-space: normal; /* For button responsiveness */
  word-wrap: break-word; /* For button responsiveness */
}

.page-support__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-support__btn-primary:hover {
  background-color: #d46f06;
  border-color: #d46f06;
}

.page-support__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b7;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

/* Introduction Section */
.page-support__introduction-section .page-support__section-heading,
.page-support__introduction-section .page-support__section-intro-text {
  color: #ffffff;
}
.page-support__introduction-section {
  background-color: var(--dark-bg-1);
  padding-top: 60px;
  padding-bottom: 60px;
}
.page-support__introduction-section p {
  color: #f0f0f0;
  text-align: left;
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1em;
}