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

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

.page-support__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main titles */
  line-height: 1.2;
}

.page-support__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  width: 100%;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  padding-bottom: 0;
  margin-top: 0;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  width: 100%;
  height: 550px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.page-support__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-support__hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__hero-title {
  font-size: 52px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Gold for hero title */
  line-height: 1.2;
}

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

.page-support__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Ensure button adapts to width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #CC0000;
}

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

.page-support__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn-secondary:hover {
  background-color: #FFD700;
  color: #CC0000;
}

/* Channels Section */
.page-support__channels-section {
  padding: 80px 0;
}

.page-support__dark-section {
  background-color: #1a1a1a; /* Dark background for sections with light text */
  color: #ffffff;
}

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

.page-support__channel-card {
  background-color: #2c2c2c; /* Slightly lighter dark for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__channel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support__channel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-support__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-support__card-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-support__btn-link {
  display: inline-block;
  background-color: #CC0000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.page-support__btn-link:hover {
  background-color: #FFD700;
  color: #CC0000;
}

/* Guides Section */
.page-support__guides-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

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

.page-support__guide-item {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-support__guide-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-support__guide-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-support__guide-description {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-support__btn-text {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__btn-text:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* Policies Section */
.page-support__policies-section {
  padding: 80px 0;
}

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

.page-support__policy-card {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__policy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.page-support__faq-list {
  margin-top: 40px;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2c2c2c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #CC0000; /* Brand red for question background */
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-support__faq-question:hover {
  background: #b30000; /* Darker red on hover */
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  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: 32px;
  height: 32px;
  transform: rotate(0deg);
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg); /* Rotate for minus sign effect */
  color: #FFD700;
}

.page-support__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 25px;
  opacity: 0;
  color: #e0e0e0;
  background-color: #2c2c2c; /* Card background for answer */
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important; /* Sufficiently large for content */
  padding: 20px 25px !important;
  opacity: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact CTA Section */
.page-support__contact-cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-support__contact-cta-section .page-support__section-title {
  color: #FFD700;
}

.page-support__contact-cta-section .page-support__section-intro {
  color: #ffffff;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 44px;
  }
  .page-support__hero-description {
    font-size: 18px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
  .page-support__section-intro {
    font-size: 16px;
  }
  .page-support__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__hero-container {
    height: 400px;
  }
  .page-support__hero-overlay {
    padding: 15px;
  }
  .page-support__hero-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .page-support__hero-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-support__section-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .page-support__channels-section,
  .page-support__guides-section,
  .page-support__policies-section,
  .page-support__faq-section,
  .page-support__contact-cta-section {
    padding: 50px 0;
  }
  .page-support__channel-grid,
  .page-support__guide-grid,
  .page-support__policy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-support__channel-card,
  .page-support__guide-item,
  .page-support__policy-card {
    padding: 25px;
  }
  .page-support__channel-card img,
  .page-support__guide-item img {
    
  }
  .page-support__card-title,
  .page-support__guide-title {
    font-size: 20px;
  }
  .page-support__card-description,
  .page-support__guide-description {
    font-size: 14px;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 16px;
  }
  .page-support__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  .page-support__faq-answer p {
    font-size: 14px;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  /* Mobile image specific rules for content images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__channels-section,
  .page-support__guides-section,
  .page-support__policies-section,
  .page-support__faq-section,
  .page-support__contact-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-container {
    height: 350px;
  }
  .page-support__hero-title {
    font-size: 28px;
  }
  .page-support__hero-description {
    font-size: 14px;
  }
  .page-support__section-title {
    font-size: 24px;
  }
  .page-support__channel-card img,
  .page-support__guide-item img {
    
  }
  .page-support__faq-question h3 {
    font-size: 15px;
  }
}