.page-help-center {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--site-secondary, #FFFFFF); /* Ensure body background is light */
}

.page-help-center__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
  overflow: hidden;
}

.page-help-center__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-help-center__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-help-center__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
  color: #FFFFFF;
}

.page-help-center__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-help-center__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-help-center__introduction-section,
.page-help-center__faq-section,
.page-help-center__security-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-help-center__video-section,
.page-help-center__support-categories,
.page-help-center__contact-us-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-help-center__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-help-center__section-title {
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-help-center__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-help-center__text-block a {
  color: #EA7C07; /* Login color for links */
  text-decoration: underline;
}

.page-help-center__text-block a:hover {
  color: #FF9933;
}

.page-help-center .highlight {
  font-weight: bold;
  color: inherit;
}

.page-help-center__btn-primary,
.page-help-center__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-help-center__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-help-center__btn-primary:hover {
  background-color: #FF9933;
  border-color: #FF9933;
}

.page-help-center__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-help-center__btn-secondary:hover {
  background-color: #E0F7FA;
  border-color: #26A9E0;
}

/* Video Section */
.page-help-center__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #000000;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page-help-center__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-help-center__video-caption {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  color: #FFFFFF;
  opacity: 0.8;
}

.page-help-center__video-cta {
  margin-top: 20px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.page-help-center__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-help-center__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f0f0f0;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-help-center__faq-question:hover {
  background-color: #e5e5e5;
}

.page-help-center__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-help-center__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-help-center__faq-item.active .page-help-center__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 20px;
}

.page-help-center__faq-item.active .page-help-center__faq-toggle {
  transform: rotate(45deg);
}

.page-help-center__faq-answer p {
  margin-bottom: 10px;
}

.page-help-center__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-help-center__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-help-center__faq-answer a:hover {
  color: #1a7bb0;
}

.page-help-center__image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-help-center__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Support Categories */
.page-help-center__categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-help-center__card {
  background-color: #FFFFFF;
  color: #333333;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px; /* Ensure cards have some height */
}

.page-help-center__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-help-center__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-help-center__card-title a:hover {
  text-decoration: underline;
}

.page-help-center__card-description {
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-help-center__card .page-help-center__btn-secondary {
  margin-top: auto;
  width: 100%;
}

/* Security Section */
.page-help-center__security-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-help-center__security-content .page-help-center__text-block {
  flex: 1;
}

.page-help-center__security-content .page-help-center__image-wrapper {
  flex: 1;
  margin-top: 0;
}

/* Contact Us Section */
.page-help-center__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.page-help-center__contact-methods .page-help-center__card {
  min-height: 200px;
}

.page-help-center__contact-methods .page-help-center__card-title {
  color: #26A9E0;
}

.page-help-center__contact-methods .page-help-center__card-description {
  color: #555555;
}

.page-help-center__contact-image-wrapper {
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-help-center__final-cta {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-help-center__hero-title {
    font-size: 2.5em;
  }

  .page-help-center__hero-description {
    font-size: 1.1em;
  }

  .page-help-center__section-title {
    font-size: 2em;
  }

  .page-help-center__security-content {
    flex-direction: column;
    text-align: center;
  }

  .page-help-center__security-content .page-help-center__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-help-center {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-help-center__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-help-center__hero-title {
    font-size: 2em;
  }

  .page-help-center__hero-description {
    font-size: 1em;
  }

  .page-help-center__introduction-section,
  .page-help-center__faq-section,
  .page-help-center__security-section,
  .page-help-center__video-section,
  .page-help-center__support-categories,
  .page-help-center__contact-us-section {
    padding: 40px 15px;
  }

  .page-help-center__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-help-center__text-block {
    font-size: 1em;
  }

  .page-help-center img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-help-center__section,
  .page-help-center__card,
  .page-help-center__container,
  .page-help-center__video-section,
  .page-help-center__video-container,
  .page-help-center__video-wrapper,
  .page-help-center__cta-button,
  .page-help-center__btn-primary,
  .page-help-center__btn-secondary,
  .page-help-center a[class*="button"],
  .page-help-center a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-help-center__video-wrapper {
    padding-bottom: 75% !important; /* Adjust aspect ratio for mobile if needed, e.g., 4:3 */
  }

  .page-help-center video,
  .page-help-center__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-help-center__cta-button,
  .page-help-center__btn-primary,
  .page-help-center__btn-secondary,
  .page-help-center a[class*="button"],
  .page-help-center a[class*="btn"] {
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }

  .page-help-center__categories-grid,
  .page-help-center__contact-methods {
    grid-template-columns: 1fr;
  }

  .page-help-center__card {
    margin-bottom: 15px;
    padding: 20px;
  }

  .page-help-center__security-content {
    flex-direction: column;
  }

  .page-help-center__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

  .page-help-center__faq-answer {
    padding: 0 15px;
  }

  .page-help-center__faq-item.active .page-help-center__faq-answer {
    padding: 12px 15px;
  }

  .page-help-center__hero-section .page-help-center__btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-help-center__hero-title {
    font-size: 1.8em;
  }

  .page-help-center__section-title {
    font-size: 1.6em;
  }
}