.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #1a1a2e, so light text */
  background-color: transparent; /* Body background is from shared.css */
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #017439; /* Brand color for hero */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-support__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-support__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

.page-support__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #017439;
}

.page-support__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Dark section specific styles */
.page-support__dark-section {
  background-color: #1a1a2e; /* Body background color */
  color: #ffffff;
  padding: 80px 0;
}

.page-support__dark-section .page-support__section-title {
  color: #FFFFFF;
}

.page-support__dark-section .page-support__section-description {
  color: #f0f0f0;
}

.page-support__channels-section, 
.page-support__faq-section,
.page-support__issues-section,
.page-support__tips-section,
.page-support__commitment-section,
.page-support__cta-bottom {
  padding: 80px 0;
}

.page-support__channels-grid,
.page-support__issues-grid,
.page-support__tips-grid,
.page-support__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__channel-card,
.page-support__issue-card,
.page-support__tip-card,
.page-support__commitment-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-support__channel-icon,
.page-support__tip-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-support__channel-title,
.page-support__issue-title,
.page-support__tip-title,
.page-support__commitment-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-support__channel-text,
.page-support__tip-text,
.page-support__commitment-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-support__channel-contact {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFFF00; /* Highlight contact info */
}

.page-support__phone-link,
.page-support__email-link,
.page-support__link-inline {
  color: #FFFF00; /* Highlight links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__phone-link:hover,
.page-support__email-link:hover,
.page-support__link-inline:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-support__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-support__btn-secondary:hover {
  background-color: #FFFF00;
  color: #017439;
}

.page-support__cta-bottom {
  text-align: center;
  background-color: #017439; /* Brand color */
  color: #ffffff;
  padding: 80px 20px;
}

.page-support__cta-bottom .page-support__section-title {
  color: #ffffff;
}

.page-support__cta-bottom .page-support__section-description {
  color: #f0f0f0;
}

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

/* FAQ Section */
.page-support__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter on dark background */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-support__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #FFFFFF;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFFF00;
  transition: transform 0.3s ease;
}

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

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

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px 20px 20px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__issue-list {
  list-style: disc;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-support__issue-list li {
  margin-bottom: 8px;
}

/* Video Section */
.page-support__video-section {
  padding: 80px 0;
  text-align: center;
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-support__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block; /* Ensure it's a block element for max-width to work */
  cursor: pointer;
}

.page-support__video-cta {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__intro-description,
  .page-support__section-description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__intro-description,
  .page-support__section-description,
  .page-support p,
  .page-support li {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-support__container,
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__issues-section,
  .page-support__tips-section,
  .page-support__commitment-section,
  .page-support__cta-bottom,
  .page-support__video-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support__channels-grid,
  .page-support__issues-grid,
  .page-support__tips-grid,
  .page-support__commitment-grid {
    grid-template-columns: 1fr;
  }

  .page-support__channel-card,
  .page-support__issue-card,
  .page-support__tip-card,
  .page-support__commitment-item {
    padding: 20px;
  }

  .page-support__cta-button,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    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;
  }

  .page-support__cta-buttons-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-image-wrapper,
  .page-support__channel-icon,
  .page-support__tip-icon,
  .page-support__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-support video,
  .page-support__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__video-wrapper {
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__hero-content {
    margin-bottom: 20px;
  }
  .page-support__hero-section {
    min-height: 350px;
  }
  .page-support__channels-section,
  .page-support__faq-section,
  .page-support__issues-section,
  .page-support__tips-section,
  .page-support__commitment-section,
  .page-support__cta-bottom,
  .page-support__video-section {
    padding: 50px 0;
  }
}