.page-support {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-support__section {
  padding: 60px 0;
}

.page-support__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FF8C1A; /* Main color */
  line-height: 1.2;
}

.page-support__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding as per rule */
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow, but not overlap text on image */
  background: linear-gradient(180deg, rgba(13, 14, 18, 0.8) 0%, #0D0E12 100%); /* Gradient to blend with background */
  border-radius: 10px;
  padding-top: 120px; /* Extra padding to push text below image effectively */
}

.page-support__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-support__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

/* Contact Methods Section */
.page-support__contact-methods {
  background-color: #0D0E12; /* Background */
}

.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-support__contact-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.2);
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-support__contact-title {
  font-size: 24px;
  font-weight: 700;
  color: #FF8C1A;
  margin-bottom: 10px;
}

.page-support__contact-text {
  font-size: 16px;
  line-height: 1.6;
  color: #FFF3E6;
  margin-bottom: 25px;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #17191F; /* Card BG */
}

.page-support__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-support__faq-item {
  background-color: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #FFF3E6;
  cursor: pointer;
  background-color: #17191F; /* Card BG */
  list-style: none; /* For details/summary */
}

.page-support__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-support__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-support__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #FF8C1A;
  transition: transform 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #FFF3E6;
  background-color: #0D0E12;
}

/* Guides & Resources Section */
.page-support__guides-resources {
  background-color: #0D0E12; /* Background */
}

.page-support__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-support__guide-card {
  display: block;
  text-decoration: none;
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.2);
}

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-support__guide-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #FF8C1A;
  padding: 20px 20px 10px 20px;
  line-height: 1.4;
}

.page-support__guide-excerpt {
  font-size: 15px;
  color: #FFF3E6;
  padding: 0 20px 15px 20px;
  line-height: 1.6;
}

.page-support__read-more {
  display: block;
  padding: 10px 20px 20px 20px;
  color: #FFA53A;
  font-weight: 600;
  text-align: right;
}

/* Commitment Section (Dark) */
.page-support__commitment-section {
  background-color: #FF8C1A; /* Main color */
  color: #ffffff;
}

.page-support__commitment-section .page-support__section-title {
  color: #FFF3E6;
}

.page-support__commitment-section .page-support__section-description {
  color: #FFF3E6;
}

.page-support__commitment-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
}

.page-support__commitment-item {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-support__commitment-item::before {
  content: '✓';
  color: #FFF3E6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-support__cta-button--inverted {
  background: #0D0E12; /* Background color for inverted button */
  color: #FF8C1A;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #A84F0C;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button--inverted:hover {
  background: #17191F;
  color: #FFB04D;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* --- Responsive Styles --- */

/* Tablet specific styles (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__hero-content {
    margin-top: -80px;
    padding-top: 100px;
  }
  .page-support__main-title {
    font-size: 3rem;
  }
  .page-support__contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-support__guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile specific styles (max-width: 768px) */
@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__container {
    padding: 0 15px;
  }

  .page-support__section {
    padding: 40px 0;
  }

  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-support__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* HERO 主图区域 */
  .page-support__hero-section {
    padding-top: 10px !important; /* Small top padding as per rule */
    padding-bottom: 20px;
  }

  .page-support__hero-image {
    max-height: 300px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__hero-content {
    margin-top: -50px; /* Adjust for smaller screens */
    padding-top: 80px; /* Adjust padding to ensure text is below image */
    border-radius: 8px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__main-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .page-support__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 通用图片与容器 */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__card,
  .page-support__section,
  .page-support__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Contact Grid */
  .page-support__contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__contact-item {
    padding: 25px;
  }

  .page-support__contact-icon {
    width: 80px;
    height: 80px;
  }

  .page-support__contact-title {
    font-size: 20px;
  }

  .page-support__contact-text {
    font-size: 15px;
  }

  .page-support__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Section */
  .page-support__faq-list {
    margin-top: 30px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-support__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 15px;
  }

  /* Guides Grid */
  .page-support__guides-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__guide-image {
    height: 180px;
  }

  .page-support__guide-card h3 {
    font-size: 18px;
    padding: 15px 15px 8px 15px;
  }

  .page-support__guide-excerpt {
    font-size: 14px;
    padding: 0 15px 10px 15px;
  }

  .page-support__read-more {
    padding: 8px 15px 15px 15px;
  }

  /* Commitment Section */
  .page-support__commitment-list {
    margin-top: 30px;
  }

  .page-support__commitment-item {
    font-size: 16px;
    padding-left: 25px;
  }

  .page-support__commitment-item::before {
    left: 0;
  }

  .page-support__cta-button--inverted {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}